composer.lock 209 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847
  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": "37ef2ca7bc67a56c4e1c3e524f8005db",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  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"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  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.x"
  65. },
  66. "time": "2019-01-01T23:59:15+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "1.5.31",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/19224d92fe27ab8ef501d77d4891e7660bc023c1",
  79. "reference": "19224d92fe27ab8ef501d77d4891e7660bc023c1",
  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. "clagiordano/weblibs-configmanager": "^1.0",
  91. "danielstjules/stringy": "^3.1",
  92. "ext-curl": "*",
  93. "ext-json": "*",
  94. "ext-libxml": "*",
  95. "ext-mbstring": "*",
  96. "ext-openssl": "*",
  97. "ext-simplexml": "*",
  98. "ext-xmlwriter": "*",
  99. "guzzlehttp/guzzle": "^6.3|^7.0",
  100. "mtdowling/jmespath.php": "^2.5",
  101. "php": ">=5.5"
  102. },
  103. "require-dev": {
  104. "composer/composer": "^1.8",
  105. "drupal/coder": "^8.3",
  106. "ext-dom": "*",
  107. "ext-pcre": "*",
  108. "ext-sockets": "*",
  109. "ext-spl": "*",
  110. "league/climate": "^3.2.4",
  111. "mikey179/vfsstream": "^1.6",
  112. "monolog/monolog": "^1.24",
  113. "phpunit/phpunit": "^5.7.27|^6.1",
  114. "psr/cache": "^1.0",
  115. "symfony/dotenv": "^3.4",
  116. "symfony/var-dumper": "^3.4"
  117. },
  118. "suggest": {
  119. "ext-sockets": "To use client-side monitoring"
  120. },
  121. "type": "library",
  122. "autoload": {
  123. "psr-4": {
  124. "AlibabaCloud\\Client\\": "src"
  125. },
  126. "files": [
  127. "src/Functions.php"
  128. ]
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Alibaba Cloud SDK",
  137. "email": "sdk-team@alibabacloud.com",
  138. "homepage": "http://www.alibabacloud.com"
  139. }
  140. ],
  141. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  142. "homepage": "https://www.alibabacloud.com/",
  143. "keywords": [
  144. "alibaba",
  145. "alibabacloud",
  146. "aliyun",
  147. "client",
  148. "cloud",
  149. "library",
  150. "sdk",
  151. "tool"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  155. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  156. },
  157. "time": "2021-05-13T06:26:38+00:00"
  158. },
  159. {
  160. "name": "alibabacloud/tea",
  161. "version": "3.1.22",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/aliyun/tea-php.git",
  165. "reference": "f9c9b2c927253a1c23a5381cc655e41311be7f65"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/f9c9b2c927253a1c23a5381cc655e41311be7f65",
  170. "reference": "f9c9b2c927253a1c23a5381cc655e41311be7f65",
  171. "shasum": "",
  172. "mirrors": [
  173. {
  174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  175. "preferred": true
  176. }
  177. ]
  178. },
  179. "require": {
  180. "adbario/php-dot-notation": "^2.2",
  181. "ext-curl": "*",
  182. "ext-json": "*",
  183. "ext-libxml": "*",
  184. "ext-mbstring": "*",
  185. "ext-openssl": "*",
  186. "ext-simplexml": "*",
  187. "ext-xmlwriter": "*",
  188. "guzzlehttp/guzzle": "^6.3|^7.0",
  189. "php": ">=5.5"
  190. },
  191. "require-dev": {
  192. "phpunit/phpunit": "*",
  193. "symfony/dotenv": "^3.4",
  194. "symfony/var-dumper": "^3.4"
  195. },
  196. "suggest": {
  197. "ext-sockets": "To use client-side monitoring"
  198. },
  199. "type": "library",
  200. "autoload": {
  201. "psr-4": {
  202. "AlibabaCloud\\Tea\\": "src"
  203. }
  204. },
  205. "notification-url": "https://packagist.org/downloads/",
  206. "license": [
  207. "Apache-2.0"
  208. ],
  209. "authors": [
  210. {
  211. "name": "Alibaba Cloud SDK",
  212. "email": "sdk-team@alibabacloud.com",
  213. "homepage": "http://www.alibabacloud.com"
  214. }
  215. ],
  216. "description": "Client of Tea for PHP",
  217. "homepage": "https://www.alibabacloud.com/",
  218. "keywords": [
  219. "alibabacloud",
  220. "client",
  221. "cloud",
  222. "tea"
  223. ],
  224. "support": {
  225. "issues": "https://github.com/aliyun/tea-php/issues",
  226. "source": "https://github.com/aliyun/tea-php"
  227. },
  228. "time": "2021-05-11T06:17:44+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/tea-fileform",
  232. "version": "0.3.4",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  236. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  241. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  242. "shasum": "",
  243. "mirrors": [
  244. {
  245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  246. "preferred": true
  247. }
  248. ]
  249. },
  250. "require": {
  251. "alibabacloud/tea": "^3.0",
  252. "php": ">5.5"
  253. },
  254. "require-dev": {
  255. "phpunit/phpunit": "^4.8.35|^5.4.3"
  256. },
  257. "type": "library",
  258. "autoload": {
  259. "psr-4": {
  260. "AlibabaCloud\\Tea\\FileForm\\": "src"
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "Apache-2.0"
  266. ],
  267. "authors": [
  268. {
  269. "name": "Alibaba Cloud SDK",
  270. "email": "sdk-team@alibabacloud.com"
  271. }
  272. ],
  273. "description": "Alibaba Cloud Tea File Library for PHP",
  274. "support": {
  275. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  276. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  277. },
  278. "time": "2020-12-01T07:24:35+00:00"
  279. },
  280. {
  281. "name": "alipaysdk/easysdk",
  282. "version": "2.2.0",
  283. "source": {
  284. "type": "git",
  285. "url": "https://github.com/alipay/alipay-easysdk.git",
  286. "reference": "7a1cfa83c7e140bded957498ea072c77611e6480"
  287. },
  288. "dist": {
  289. "type": "zip",
  290. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/7a1cfa83c7e140bded957498ea072c77611e6480",
  291. "reference": "7a1cfa83c7e140bded957498ea072c77611e6480",
  292. "shasum": "",
  293. "mirrors": [
  294. {
  295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  296. "preferred": true
  297. }
  298. ]
  299. },
  300. "require": {
  301. "adbario/php-dot-notation": "^2.2",
  302. "alibabacloud/tea": "^3.1",
  303. "alibabacloud/tea-fileform": "^0.3.2",
  304. "danielstjules/stringy": "^3.1",
  305. "ext-ctype": "*",
  306. "ext-curl": "*",
  307. "ext-dom": "*",
  308. "ext-fileinfo": "*",
  309. "ext-json": "*",
  310. "ext-libxml": "*",
  311. "ext-mbstring": "*",
  312. "ext-openssl": "*",
  313. "ext-simplexml": "*",
  314. "ext-xmlwriter": "*",
  315. "guzzlehttp/guzzle": ">=6.3",
  316. "mtdowling/jmespath.php": "^2.4",
  317. "php": ">=7.0",
  318. "pimple/pimple": "^3.0",
  319. "psr/log": "^1.1",
  320. "songshenzong/support": "^2.0",
  321. "xin/container": "^2.0.1"
  322. },
  323. "require-dev": {
  324. "phpunit/phpunit": "^7.5"
  325. },
  326. "type": "library",
  327. "autoload": {
  328. "psr-4": {
  329. "Alipay\\EasySDK\\": "php/src/"
  330. }
  331. },
  332. "notification-url": "https://packagist.org/downloads/",
  333. "license": [
  334. "Apache-2.0"
  335. ],
  336. "authors": [
  337. {
  338. "name": "junying.wjy",
  339. "email": "junying.wjy@antfin.com"
  340. }
  341. ],
  342. "description": "支付宝官方 Alipay Easy SDK",
  343. "support": {
  344. "issues": "https://github.com/alipay/alipay-easysdk/issues",
  345. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.0"
  346. },
  347. "time": "2021-01-19T07:30:32+00:00"
  348. },
  349. {
  350. "name": "aliyuncs/oss-sdk-php",
  351. "version": "v2.4.2",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  355. "reference": "0c9d902c33847c07efc66c4cdf823deaea8fc2b6"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/0c9d902c33847c07efc66c4cdf823deaea8fc2b6",
  360. "reference": "0c9d902c33847c07efc66c4cdf823deaea8fc2b6",
  361. "shasum": "",
  362. "mirrors": [
  363. {
  364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  365. "preferred": true
  366. }
  367. ]
  368. },
  369. "require": {
  370. "php": ">=5.3"
  371. },
  372. "require-dev": {
  373. "phpunit/phpunit": "*",
  374. "satooshi/php-coveralls": "*"
  375. },
  376. "type": "library",
  377. "autoload": {
  378. "psr-4": {
  379. "OSS\\": "src/OSS"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Aliyuncs",
  389. "homepage": "http://www.aliyun.com"
  390. }
  391. ],
  392. "description": "Aliyun OSS SDK for PHP",
  393. "homepage": "http://www.aliyun.com/product/oss/",
  394. "support": {
  395. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  396. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.2"
  397. },
  398. "time": "2021-06-04T06:55:06+00:00"
  399. },
  400. {
  401. "name": "bacon/bacon-qr-code",
  402. "version": "2.0.4",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/Bacon/BaconQrCode.git",
  406. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  411. "reference": "f73543ac4e1def05f1a70bcd1525c8a157a1ad09",
  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. "dasprid/enum": "^1.0.3",
  422. "ext-iconv": "*",
  423. "php": "^7.1 || ^8.0"
  424. },
  425. "require-dev": {
  426. "phly/keep-a-changelog": "^1.4",
  427. "phpunit/phpunit": "^7 | ^8 | ^9",
  428. "squizlabs/php_codesniffer": "^3.4"
  429. },
  430. "suggest": {
  431. "ext-imagick": "to generate QR code images"
  432. },
  433. "type": "library",
  434. "autoload": {
  435. "psr-4": {
  436. "BaconQrCode\\": "src/"
  437. }
  438. },
  439. "notification-url": "https://packagist.org/downloads/",
  440. "license": [
  441. "BSD-2-Clause"
  442. ],
  443. "authors": [
  444. {
  445. "name": "Ben Scholzen 'DASPRiD'",
  446. "email": "mail@dasprids.de",
  447. "homepage": "https://dasprids.de/",
  448. "role": "Developer"
  449. }
  450. ],
  451. "description": "BaconQrCode is a QR code generator for PHP.",
  452. "homepage": "https://github.com/Bacon/BaconQrCode",
  453. "support": {
  454. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  455. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.4"
  456. },
  457. "time": "2021-06-18T13:26:35+00:00"
  458. },
  459. {
  460. "name": "clagiordano/weblibs-configmanager",
  461. "version": "v1.5.0",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  465. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  470. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  471. "shasum": "",
  472. "mirrors": [
  473. {
  474. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  475. "preferred": true
  476. }
  477. ]
  478. },
  479. "require": {
  480. "ext-json": "*",
  481. "php": ">=5.4",
  482. "symfony/yaml": "^2.8"
  483. },
  484. "require-dev": {
  485. "clagiordano/phpunit-result-printer": "^1",
  486. "php-coveralls/php-coveralls": "^1.1",
  487. "phpunit/phpunit": "^4.8"
  488. },
  489. "type": "library",
  490. "autoload": {
  491. "psr-4": {
  492. "clagiordano\\weblibs\\configmanager\\": "src/"
  493. }
  494. },
  495. "notification-url": "https://packagist.org/downloads/",
  496. "license": [
  497. "LGPL-3.0-or-later"
  498. ],
  499. "authors": [
  500. {
  501. "name": "Claudio Giordano",
  502. "email": "claudio.giordano@autistici.org",
  503. "role": "Developer"
  504. }
  505. ],
  506. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  507. "keywords": [
  508. "clagiordano",
  509. "configuration",
  510. "manager",
  511. "tool",
  512. "weblibs"
  513. ],
  514. "support": {
  515. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  516. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.5.0"
  517. },
  518. "time": "2021-07-12T15:27:21+00:00"
  519. },
  520. {
  521. "name": "danielstjules/stringy",
  522. "version": "3.1.0",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/danielstjules/Stringy.git",
  526. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  531. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  532. "shasum": "",
  533. "mirrors": [
  534. {
  535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  536. "preferred": true
  537. }
  538. ]
  539. },
  540. "require": {
  541. "php": ">=5.4.0",
  542. "symfony/polyfill-mbstring": "~1.1"
  543. },
  544. "require-dev": {
  545. "phpunit/phpunit": "~4.0"
  546. },
  547. "type": "library",
  548. "autoload": {
  549. "psr-4": {
  550. "Stringy\\": "src/"
  551. },
  552. "files": [
  553. "src/Create.php"
  554. ]
  555. },
  556. "notification-url": "https://packagist.org/downloads/",
  557. "license": [
  558. "MIT"
  559. ],
  560. "authors": [
  561. {
  562. "name": "Daniel St. Jules",
  563. "email": "danielst.jules@gmail.com",
  564. "homepage": "http://www.danielstjules.com"
  565. }
  566. ],
  567. "description": "A string manipulation library with multibyte support",
  568. "homepage": "https://github.com/danielstjules/Stringy",
  569. "keywords": [
  570. "UTF",
  571. "helpers",
  572. "manipulation",
  573. "methods",
  574. "multibyte",
  575. "string",
  576. "utf-8",
  577. "utility",
  578. "utils"
  579. ],
  580. "support": {
  581. "issues": "https://github.com/danielstjules/Stringy/issues",
  582. "source": "https://github.com/danielstjules/Stringy"
  583. },
  584. "time": "2017-06-12T01:10:27+00:00"
  585. },
  586. {
  587. "name": "dasprid/enum",
  588. "version": "1.0.3",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/DASPRiD/Enum.git",
  592. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  597. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  598. "shasum": "",
  599. "mirrors": [
  600. {
  601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  602. "preferred": true
  603. }
  604. ]
  605. },
  606. "require-dev": {
  607. "phpunit/phpunit": "^7 | ^8 | ^9",
  608. "squizlabs/php_codesniffer": "^3.4"
  609. },
  610. "type": "library",
  611. "autoload": {
  612. "psr-4": {
  613. "DASPRiD\\Enum\\": "src/"
  614. }
  615. },
  616. "notification-url": "https://packagist.org/downloads/",
  617. "license": [
  618. "BSD-2-Clause"
  619. ],
  620. "authors": [
  621. {
  622. "name": "Ben Scholzen 'DASPRiD'",
  623. "email": "mail@dasprids.de",
  624. "homepage": "https://dasprids.de/",
  625. "role": "Developer"
  626. }
  627. ],
  628. "description": "PHP 7.1 enum implementation",
  629. "keywords": [
  630. "enum",
  631. "map"
  632. ],
  633. "support": {
  634. "issues": "https://github.com/DASPRiD/Enum/issues",
  635. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  636. },
  637. "time": "2020-10-02T16:03:48+00:00"
  638. },
  639. {
  640. "name": "dragonmantank/cron-expression",
  641. "version": "v3.1.0",
  642. "source": {
  643. "type": "git",
  644. "url": "https://github.com/dragonmantank/cron-expression.git",
  645. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  646. },
  647. "dist": {
  648. "type": "zip",
  649. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  650. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  651. "shasum": "",
  652. "mirrors": [
  653. {
  654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  655. "preferred": true
  656. }
  657. ]
  658. },
  659. "require": {
  660. "php": "^7.2|^8.0",
  661. "webmozart/assert": "^1.7.0"
  662. },
  663. "replace": {
  664. "mtdowling/cron-expression": "^1.0"
  665. },
  666. "require-dev": {
  667. "phpstan/extension-installer": "^1.0",
  668. "phpstan/phpstan": "^0.12",
  669. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  670. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  671. },
  672. "type": "library",
  673. "autoload": {
  674. "psr-4": {
  675. "Cron\\": "src/Cron/"
  676. }
  677. },
  678. "notification-url": "https://packagist.org/downloads/",
  679. "license": [
  680. "MIT"
  681. ],
  682. "authors": [
  683. {
  684. "name": "Chris Tankersley",
  685. "email": "chris@ctankersley.com",
  686. "homepage": "https://github.com/dragonmantank"
  687. }
  688. ],
  689. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  690. "keywords": [
  691. "cron",
  692. "schedule"
  693. ],
  694. "support": {
  695. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  696. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  697. },
  698. "funding": [
  699. {
  700. "url": "https://github.com/dragonmantank",
  701. "type": "github"
  702. }
  703. ],
  704. "time": "2020-11-24T19:55:57+00:00"
  705. },
  706. {
  707. "name": "easywechat-composer/easywechat-composer",
  708. "version": "1.4.1",
  709. "source": {
  710. "type": "git",
  711. "url": "https://github.com/mingyoung/easywechat-composer.git",
  712. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  713. },
  714. "dist": {
  715. "type": "zip",
  716. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  717. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  718. "shasum": "",
  719. "mirrors": [
  720. {
  721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  722. "preferred": true
  723. }
  724. ]
  725. },
  726. "require": {
  727. "composer-plugin-api": "^1.0 || ^2.0",
  728. "php": ">=7.0"
  729. },
  730. "require-dev": {
  731. "composer/composer": "^1.0 || ^2.0",
  732. "phpunit/phpunit": "^6.5 || ^7.0"
  733. },
  734. "type": "composer-plugin",
  735. "extra": {
  736. "class": "EasyWeChatComposer\\Plugin"
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "EasyWeChatComposer\\": "src/"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "张铭阳",
  750. "email": "mingyoungcheung@gmail.com"
  751. }
  752. ],
  753. "description": "The composer plugin for EasyWeChat",
  754. "support": {
  755. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  756. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  757. },
  758. "time": "2021-07-05T04:03:22+00:00"
  759. },
  760. {
  761. "name": "ezyang/htmlpurifier",
  762. "version": "v4.13.0",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/ezyang/htmlpurifier.git",
  766. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  771. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  772. "shasum": "",
  773. "mirrors": [
  774. {
  775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  776. "preferred": true
  777. }
  778. ]
  779. },
  780. "require": {
  781. "php": ">=5.2"
  782. },
  783. "require-dev": {
  784. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  785. },
  786. "type": "library",
  787. "autoload": {
  788. "psr-0": {
  789. "HTMLPurifier": "library/"
  790. },
  791. "files": [
  792. "library/HTMLPurifier.composer.php"
  793. ],
  794. "exclude-from-classmap": [
  795. "/library/HTMLPurifier/Language/"
  796. ]
  797. },
  798. "notification-url": "https://packagist.org/downloads/",
  799. "license": [
  800. "LGPL-2.1-or-later"
  801. ],
  802. "authors": [
  803. {
  804. "name": "Edward Z. Yang",
  805. "email": "admin@htmlpurifier.org",
  806. "homepage": "http://ezyang.com"
  807. }
  808. ],
  809. "description": "Standards compliant HTML filter written in PHP",
  810. "homepage": "http://htmlpurifier.org/",
  811. "keywords": [
  812. "html"
  813. ],
  814. "support": {
  815. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  816. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  817. },
  818. "time": "2020-06-29T00:56:53+00:00"
  819. },
  820. {
  821. "name": "guzzlehttp/command",
  822. "version": "1.2.1",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/guzzle/command.git",
  826. "reference": "04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/guzzle/command/zipball/04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5",
  831. "reference": "04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5",
  832. "shasum": "",
  833. "mirrors": [
  834. {
  835. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  836. "preferred": true
  837. }
  838. ]
  839. },
  840. "require": {
  841. "guzzlehttp/guzzle": "^7.3",
  842. "guzzlehttp/promises": "^1.3",
  843. "guzzlehttp/psr7": "^1.7 || ^2.0",
  844. "php": "^7.2.5 || ^8.0"
  845. },
  846. "require-dev": {
  847. "phpunit/phpunit": "^8.5.19"
  848. },
  849. "type": "library",
  850. "extra": {
  851. "branch-alias": {
  852. "dev-master": "1.2-dev"
  853. }
  854. },
  855. "autoload": {
  856. "psr-4": {
  857. "GuzzleHttp\\Command\\": "src/"
  858. }
  859. },
  860. "notification-url": "https://packagist.org/downloads/",
  861. "license": [
  862. "MIT"
  863. ],
  864. "authors": [
  865. {
  866. "name": "Graham Campbell",
  867. "email": "hello@gjcampbell.co.uk",
  868. "homepage": "https://github.com/GrahamCampbell"
  869. },
  870. {
  871. "name": "Michael Dowling",
  872. "email": "mtdowling@gmail.com",
  873. "homepage": "https://github.com/mtdowling"
  874. },
  875. {
  876. "name": "Jeremy Lindblom",
  877. "email": "jeremeamia@gmail.com",
  878. "homepage": "https://github.com/jeremeamia"
  879. },
  880. {
  881. "name": "Tobias Nyholm",
  882. "email": "tobias.nyholm@gmail.com",
  883. "homepage": "https://github.com/Nyholm"
  884. }
  885. ],
  886. "description": "Provides the foundation for building command-based web service clients",
  887. "support": {
  888. "issues": "https://github.com/guzzle/command/issues",
  889. "source": "https://github.com/guzzle/command/tree/1.2.1"
  890. },
  891. "funding": [
  892. {
  893. "url": "https://github.com/GrahamCampbell",
  894. "type": "github"
  895. },
  896. {
  897. "url": "https://github.com/Nyholm",
  898. "type": "github"
  899. },
  900. {
  901. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/command",
  902. "type": "tidelift"
  903. }
  904. ],
  905. "time": "2021-09-05T19:12:19+00:00"
  906. },
  907. {
  908. "name": "guzzlehttp/guzzle",
  909. "version": "7.3.0",
  910. "source": {
  911. "type": "git",
  912. "url": "https://github.com/guzzle/guzzle.git",
  913. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  914. },
  915. "dist": {
  916. "type": "zip",
  917. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  918. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  919. "shasum": "",
  920. "mirrors": [
  921. {
  922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  923. "preferred": true
  924. }
  925. ]
  926. },
  927. "require": {
  928. "ext-json": "*",
  929. "guzzlehttp/promises": "^1.4",
  930. "guzzlehttp/psr7": "^1.7 || ^2.0",
  931. "php": "^7.2.5 || ^8.0",
  932. "psr/http-client": "^1.0"
  933. },
  934. "provide": {
  935. "psr/http-client-implementation": "1.0"
  936. },
  937. "require-dev": {
  938. "bamarni/composer-bin-plugin": "^1.4.1",
  939. "ext-curl": "*",
  940. "php-http/client-integration-tests": "^3.0",
  941. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  942. "psr/log": "^1.1"
  943. },
  944. "suggest": {
  945. "ext-curl": "Required for CURL handler support",
  946. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  947. "psr/log": "Required for using the Log middleware"
  948. },
  949. "type": "library",
  950. "extra": {
  951. "branch-alias": {
  952. "dev-master": "7.3-dev"
  953. }
  954. },
  955. "autoload": {
  956. "psr-4": {
  957. "GuzzleHttp\\": "src/"
  958. },
  959. "files": [
  960. "src/functions_include.php"
  961. ]
  962. },
  963. "notification-url": "https://packagist.org/downloads/",
  964. "license": [
  965. "MIT"
  966. ],
  967. "authors": [
  968. {
  969. "name": "Michael Dowling",
  970. "email": "mtdowling@gmail.com",
  971. "homepage": "https://github.com/mtdowling"
  972. },
  973. {
  974. "name": "Márk Sági-Kazár",
  975. "email": "mark.sagikazar@gmail.com",
  976. "homepage": "https://sagikazarmark.hu"
  977. }
  978. ],
  979. "description": "Guzzle is a PHP HTTP client library",
  980. "homepage": "http://guzzlephp.org/",
  981. "keywords": [
  982. "client",
  983. "curl",
  984. "framework",
  985. "http",
  986. "http client",
  987. "psr-18",
  988. "psr-7",
  989. "rest",
  990. "web service"
  991. ],
  992. "support": {
  993. "issues": "https://github.com/guzzle/guzzle/issues",
  994. "source": "https://github.com/guzzle/guzzle/tree/7.3.0"
  995. },
  996. "funding": [
  997. {
  998. "url": "https://github.com/GrahamCampbell",
  999. "type": "github"
  1000. },
  1001. {
  1002. "url": "https://github.com/Nyholm",
  1003. "type": "github"
  1004. },
  1005. {
  1006. "url": "https://github.com/alexeyshockov",
  1007. "type": "github"
  1008. },
  1009. {
  1010. "url": "https://github.com/gmponos",
  1011. "type": "github"
  1012. }
  1013. ],
  1014. "time": "2021-03-23T11:33:13+00:00"
  1015. },
  1016. {
  1017. "name": "guzzlehttp/guzzle-services",
  1018. "version": "1.3.1",
  1019. "source": {
  1020. "type": "git",
  1021. "url": "https://github.com/guzzle/guzzle-services.git",
  1022. "reference": "3731f120ce6856f4c71fff7cb2a27e263fe69f84"
  1023. },
  1024. "dist": {
  1025. "type": "zip",
  1026. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/3731f120ce6856f4c71fff7cb2a27e263fe69f84",
  1027. "reference": "3731f120ce6856f4c71fff7cb2a27e263fe69f84",
  1028. "shasum": "",
  1029. "mirrors": [
  1030. {
  1031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1032. "preferred": true
  1033. }
  1034. ]
  1035. },
  1036. "require": {
  1037. "guzzlehttp/command": "^1.2",
  1038. "guzzlehttp/guzzle": "^7.3",
  1039. "guzzlehttp/psr7": "^1.7 || ^2.0",
  1040. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  1041. "php": "^7.2.5 || ^8.0"
  1042. },
  1043. "require-dev": {
  1044. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1045. },
  1046. "suggest": {
  1047. "gimler/guzzle-description-loader": "^0.0.4"
  1048. },
  1049. "type": "library",
  1050. "extra": {
  1051. "branch-alias": {
  1052. "dev-master": "1.3-dev"
  1053. }
  1054. },
  1055. "autoload": {
  1056. "psr-4": {
  1057. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1058. }
  1059. },
  1060. "notification-url": "https://packagist.org/downloads/",
  1061. "license": [
  1062. "MIT"
  1063. ],
  1064. "authors": [
  1065. {
  1066. "name": "Graham Campbell",
  1067. "email": "hello@gjcampbell.co.uk",
  1068. "homepage": "https://github.com/GrahamCampbell"
  1069. },
  1070. {
  1071. "name": "Michael Dowling",
  1072. "email": "mtdowling@gmail.com",
  1073. "homepage": "https://github.com/mtdowling"
  1074. },
  1075. {
  1076. "name": "Stefano Kowalke",
  1077. "email": "blueduck@mail.org",
  1078. "homepage": "https://github.com/Konafets"
  1079. },
  1080. {
  1081. "name": "Tobias Nyholm",
  1082. "email": "tobias.nyholm@gmail.com",
  1083. "homepage": "https://github.com/Nyholm"
  1084. }
  1085. ],
  1086. "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.",
  1087. "support": {
  1088. "issues": "https://github.com/guzzle/guzzle-services/issues",
  1089. "source": "https://github.com/guzzle/guzzle-services/tree/1.3.1"
  1090. },
  1091. "funding": [
  1092. {
  1093. "url": "https://github.com/GrahamCampbell",
  1094. "type": "github"
  1095. },
  1096. {
  1097. "url": "https://github.com/Nyholm",
  1098. "type": "github"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle-services",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "time": "2021-10-07T13:01:35+00:00"
  1106. },
  1107. {
  1108. "name": "guzzlehttp/promises",
  1109. "version": "1.4.1",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/guzzle/promises.git",
  1113. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1118. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1119. "shasum": "",
  1120. "mirrors": [
  1121. {
  1122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1123. "preferred": true
  1124. }
  1125. ]
  1126. },
  1127. "require": {
  1128. "php": ">=5.5"
  1129. },
  1130. "require-dev": {
  1131. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1132. },
  1133. "type": "library",
  1134. "extra": {
  1135. "branch-alias": {
  1136. "dev-master": "1.4-dev"
  1137. }
  1138. },
  1139. "autoload": {
  1140. "psr-4": {
  1141. "GuzzleHttp\\Promise\\": "src/"
  1142. },
  1143. "files": [
  1144. "src/functions_include.php"
  1145. ]
  1146. },
  1147. "notification-url": "https://packagist.org/downloads/",
  1148. "license": [
  1149. "MIT"
  1150. ],
  1151. "authors": [
  1152. {
  1153. "name": "Michael Dowling",
  1154. "email": "mtdowling@gmail.com",
  1155. "homepage": "https://github.com/mtdowling"
  1156. }
  1157. ],
  1158. "description": "Guzzle promises library",
  1159. "keywords": [
  1160. "promise"
  1161. ],
  1162. "support": {
  1163. "issues": "https://github.com/guzzle/promises/issues",
  1164. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1165. },
  1166. "time": "2021-03-07T09:25:29+00:00"
  1167. },
  1168. {
  1169. "name": "guzzlehttp/psr7",
  1170. "version": "2.7.0",
  1171. "source": {
  1172. "type": "git",
  1173. "url": "https://github.com/guzzle/psr7.git",
  1174. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1175. },
  1176. "dist": {
  1177. "type": "zip",
  1178. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1179. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1180. "shasum": "",
  1181. "mirrors": [
  1182. {
  1183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1184. "preferred": true
  1185. }
  1186. ]
  1187. },
  1188. "require": {
  1189. "php": "^7.2.5 || ^8.0",
  1190. "psr/http-factory": "^1.0",
  1191. "psr/http-message": "^1.1 || ^2.0",
  1192. "ralouphie/getallheaders": "^3.0"
  1193. },
  1194. "provide": {
  1195. "psr/http-factory-implementation": "1.0",
  1196. "psr/http-message-implementation": "1.0"
  1197. },
  1198. "require-dev": {
  1199. "bamarni/composer-bin-plugin": "^1.8.2",
  1200. "http-interop/http-factory-tests": "0.9.0",
  1201. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1202. },
  1203. "suggest": {
  1204. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1205. },
  1206. "type": "library",
  1207. "extra": {
  1208. "bamarni-bin": {
  1209. "bin-links": true,
  1210. "forward-command": false
  1211. }
  1212. },
  1213. "autoload": {
  1214. "psr-4": {
  1215. "GuzzleHttp\\Psr7\\": "src/"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "MIT"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "Graham Campbell",
  1225. "email": "hello@gjcampbell.co.uk",
  1226. "homepage": "https://github.com/GrahamCampbell"
  1227. },
  1228. {
  1229. "name": "Michael Dowling",
  1230. "email": "mtdowling@gmail.com",
  1231. "homepage": "https://github.com/mtdowling"
  1232. },
  1233. {
  1234. "name": "George Mponos",
  1235. "email": "gmponos@gmail.com",
  1236. "homepage": "https://github.com/gmponos"
  1237. },
  1238. {
  1239. "name": "Tobias Nyholm",
  1240. "email": "tobias.nyholm@gmail.com",
  1241. "homepage": "https://github.com/Nyholm"
  1242. },
  1243. {
  1244. "name": "Márk Sági-Kazár",
  1245. "email": "mark.sagikazar@gmail.com",
  1246. "homepage": "https://github.com/sagikazarmark"
  1247. },
  1248. {
  1249. "name": "Tobias Schultze",
  1250. "email": "webmaster@tubo-world.de",
  1251. "homepage": "https://github.com/Tobion"
  1252. },
  1253. {
  1254. "name": "Márk Sági-Kazár",
  1255. "email": "mark.sagikazar@gmail.com",
  1256. "homepage": "https://sagikazarmark.hu"
  1257. }
  1258. ],
  1259. "description": "PSR-7 message implementation that also provides common utility methods",
  1260. "keywords": [
  1261. "http",
  1262. "message",
  1263. "psr-7",
  1264. "request",
  1265. "response",
  1266. "stream",
  1267. "uri",
  1268. "url"
  1269. ],
  1270. "support": {
  1271. "issues": "https://github.com/guzzle/psr7/issues",
  1272. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1273. },
  1274. "funding": [
  1275. {
  1276. "url": "https://github.com/GrahamCampbell",
  1277. "type": "github"
  1278. },
  1279. {
  1280. "url": "https://github.com/Nyholm",
  1281. "type": "github"
  1282. },
  1283. {
  1284. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1285. "type": "tidelift"
  1286. }
  1287. ],
  1288. "time": "2024-07-18T11:15:46+00:00"
  1289. },
  1290. {
  1291. "name": "guzzlehttp/uri-template",
  1292. "version": "v1.0.1",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/guzzle/uri-template.git",
  1296. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1301. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1302. "shasum": "",
  1303. "mirrors": [
  1304. {
  1305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1306. "preferred": true
  1307. }
  1308. ]
  1309. },
  1310. "require": {
  1311. "php": "^7.2.5 || ^8.0",
  1312. "symfony/polyfill-php80": "^1.17"
  1313. },
  1314. "require-dev": {
  1315. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1316. "uri-template/tests": "1.0.0"
  1317. },
  1318. "type": "library",
  1319. "extra": {
  1320. "branch-alias": {
  1321. "dev-master": "1.0-dev"
  1322. }
  1323. },
  1324. "autoload": {
  1325. "psr-4": {
  1326. "GuzzleHttp\\UriTemplate\\": "src"
  1327. }
  1328. },
  1329. "notification-url": "https://packagist.org/downloads/",
  1330. "license": [
  1331. "MIT"
  1332. ],
  1333. "authors": [
  1334. {
  1335. "name": "Graham Campbell",
  1336. "email": "hello@gjcampbell.co.uk",
  1337. "homepage": "https://github.com/GrahamCampbell"
  1338. },
  1339. {
  1340. "name": "Michael Dowling",
  1341. "email": "mtdowling@gmail.com",
  1342. "homepage": "https://github.com/mtdowling"
  1343. },
  1344. {
  1345. "name": "George Mponos",
  1346. "email": "gmponos@gmail.com",
  1347. "homepage": "https://github.com/gmponos"
  1348. },
  1349. {
  1350. "name": "Tobias Nyholm",
  1351. "email": "tobias.nyholm@gmail.com",
  1352. "homepage": "https://github.com/Nyholm"
  1353. }
  1354. ],
  1355. "description": "A polyfill class for uri_template of PHP",
  1356. "keywords": [
  1357. "guzzlehttp",
  1358. "uri-template"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/guzzle/uri-template/issues",
  1362. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1363. },
  1364. "funding": [
  1365. {
  1366. "url": "https://github.com/GrahamCampbell",
  1367. "type": "github"
  1368. },
  1369. {
  1370. "url": "https://github.com/Nyholm",
  1371. "type": "github"
  1372. },
  1373. {
  1374. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1375. "type": "tidelift"
  1376. }
  1377. ],
  1378. "time": "2021-10-07T12:57:01+00:00"
  1379. },
  1380. {
  1381. "name": "hyperf/context",
  1382. "version": "v3.0.37",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/hyperf/context.git",
  1386. "reference": "264e06fb882426d90758eca2c5bb8293f8b60455"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/hyperf/context/zipball/264e06fb882426d90758eca2c5bb8293f8b60455",
  1391. "reference": "264e06fb882426d90758eca2c5bb8293f8b60455",
  1392. "shasum": "",
  1393. "mirrors": [
  1394. {
  1395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1396. "preferred": true
  1397. }
  1398. ]
  1399. },
  1400. "require": {
  1401. "hyperf/engine": "^1.2|^2.0",
  1402. "php": ">=8.0"
  1403. },
  1404. "type": "library",
  1405. "extra": {
  1406. "branch-alias": {
  1407. "dev-master": "3.0-dev"
  1408. }
  1409. },
  1410. "autoload": {
  1411. "psr-4": {
  1412. "Hyperf\\Context\\": "src/"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "description": "A coroutine/application context library.",
  1420. "homepage": "https://hyperf.io",
  1421. "keywords": [
  1422. "Context",
  1423. "hyperf",
  1424. "php",
  1425. "swoole"
  1426. ],
  1427. "support": {
  1428. "docs": "https://hyperf.wiki",
  1429. "issues": "https://github.com/hyperf/hyperf/issues",
  1430. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1431. "source": "https://github.com/hyperf/hyperf"
  1432. },
  1433. "time": "2023-09-19T01:50:18+00:00"
  1434. },
  1435. {
  1436. "name": "hyperf/contract",
  1437. "version": "v3.0.37",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/hyperf/contract.git",
  1441. "reference": "2e8290104468a8d90855067d8644a32114474452"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/hyperf/contract/zipball/2e8290104468a8d90855067d8644a32114474452",
  1446. "reference": "2e8290104468a8d90855067d8644a32114474452",
  1447. "shasum": "",
  1448. "mirrors": [
  1449. {
  1450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1451. "preferred": true
  1452. }
  1453. ]
  1454. },
  1455. "require": {
  1456. "php": ">=8.0"
  1457. },
  1458. "type": "library",
  1459. "extra": {
  1460. "branch-alias": {
  1461. "dev-master": "3.0-dev"
  1462. }
  1463. },
  1464. "autoload": {
  1465. "psr-4": {
  1466. "Hyperf\\Contract\\": "src/"
  1467. }
  1468. },
  1469. "notification-url": "https://packagist.org/downloads/",
  1470. "license": [
  1471. "MIT"
  1472. ],
  1473. "description": "The contracts of Hyperf.",
  1474. "homepage": "https://hyperf.io",
  1475. "keywords": [
  1476. "hyperf",
  1477. "php",
  1478. "swoole"
  1479. ],
  1480. "support": {
  1481. "docs": "https://hyperf.wiki",
  1482. "issues": "https://github.com/hyperf/hyperf/issues",
  1483. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1484. "source": "https://github.com/hyperf/hyperf"
  1485. },
  1486. "time": "2023-09-19T01:50:18+00:00"
  1487. },
  1488. {
  1489. "name": "hyperf/engine",
  1490. "version": "v1.10.0",
  1491. "source": {
  1492. "type": "git",
  1493. "url": "https://github.com/hyperf/engine.git",
  1494. "reference": "da38c8708f3d78d1490331e432d385489720568f"
  1495. },
  1496. "dist": {
  1497. "type": "zip",
  1498. "url": "https://api.github.com/repos/hyperf/engine/zipball/da38c8708f3d78d1490331e432d385489720568f",
  1499. "reference": "da38c8708f3d78d1490331e432d385489720568f",
  1500. "shasum": "",
  1501. "mirrors": [
  1502. {
  1503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1504. "preferred": true
  1505. }
  1506. ]
  1507. },
  1508. "require": {
  1509. "php": ">=8.0"
  1510. },
  1511. "require-dev": {
  1512. "friendsofphp/php-cs-fixer": "^3.0",
  1513. "hyperf/guzzle": "^2.2",
  1514. "hyperf/http-message": " ^2.0",
  1515. "phpstan/phpstan": "^1.0",
  1516. "phpunit/phpunit": "^9.4",
  1517. "swoole/ide-helper": "dev-master"
  1518. },
  1519. "suggest": {
  1520. "ext-swoole": ">=4.5"
  1521. },
  1522. "type": "library",
  1523. "extra": {
  1524. "hyperf": {
  1525. "config": "Hyperf\\Engine\\ConfigProvider"
  1526. },
  1527. "branch-alias": {
  1528. "dev-master": "1.10-dev"
  1529. }
  1530. },
  1531. "autoload": {
  1532. "psr-4": {
  1533. "Hyperf\\Engine\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "keywords": [
  1541. "hyperf",
  1542. "php"
  1543. ],
  1544. "support": {
  1545. "issues": "https://github.com/hyperf/engine/issues",
  1546. "source": "https://github.com/hyperf/engine/tree/v1.10.0"
  1547. },
  1548. "time": "2023-04-07T07:39:09+00:00"
  1549. },
  1550. {
  1551. "name": "hyperf/pimple",
  1552. "version": "v2.2.2",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/hyperf-cloud/pimple-integration.git",
  1556. "reference": "7bd07745c256b83679471c06ec2a11e901d37277"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/hyperf-cloud/pimple-integration/zipball/7bd07745c256b83679471c06ec2a11e901d37277",
  1561. "reference": "7bd07745c256b83679471c06ec2a11e901d37277",
  1562. "shasum": "",
  1563. "mirrors": [
  1564. {
  1565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1566. "preferred": true
  1567. }
  1568. ]
  1569. },
  1570. "require": {
  1571. "hyperf/context": "^3.0",
  1572. "hyperf/contract": "^3.0",
  1573. "php": ">=8.0",
  1574. "pimple/pimple": "^3.3"
  1575. },
  1576. "require-dev": {
  1577. "friendsofphp/php-cs-fixer": "^3.0",
  1578. "hyperf/support": "^3.0",
  1579. "mockery/mockery": "^1.3",
  1580. "phpstan/phpstan": "^1.0",
  1581. "phpunit/phpunit": ">=7.0"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "hyperf": {
  1586. "config": "Hyperf\\Pimple\\ConfigProvider"
  1587. },
  1588. "branch-alias": {
  1589. "dev-master": "2.0-dev"
  1590. }
  1591. },
  1592. "autoload": {
  1593. "psr-4": {
  1594. "Hyperf\\Pimple\\": "src/"
  1595. }
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "MIT"
  1600. ],
  1601. "description": "Pimple Container",
  1602. "keywords": [
  1603. "container",
  1604. "hyperf",
  1605. "php",
  1606. "psr11"
  1607. ],
  1608. "support": {
  1609. "issues": "https://github.com/hyperf-cloud/pimple-integration/issues",
  1610. "source": "https://github.com/hyperf-cloud/pimple-integration/tree/v2.2.2"
  1611. },
  1612. "time": "2023-06-10T04:41:29+00:00"
  1613. },
  1614. {
  1615. "name": "maennchen/zipstream-php",
  1616. "version": "2.1.0",
  1617. "source": {
  1618. "type": "git",
  1619. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1620. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1621. },
  1622. "dist": {
  1623. "type": "zip",
  1624. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1625. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1626. "shasum": "",
  1627. "mirrors": [
  1628. {
  1629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1630. "preferred": true
  1631. }
  1632. ]
  1633. },
  1634. "require": {
  1635. "myclabs/php-enum": "^1.5",
  1636. "php": ">= 7.1",
  1637. "psr/http-message": "^1.0",
  1638. "symfony/polyfill-mbstring": "^1.0"
  1639. },
  1640. "require-dev": {
  1641. "ext-zip": "*",
  1642. "guzzlehttp/guzzle": ">= 6.3",
  1643. "mikey179/vfsstream": "^1.6",
  1644. "phpunit/phpunit": ">= 7.5"
  1645. },
  1646. "type": "library",
  1647. "autoload": {
  1648. "psr-4": {
  1649. "ZipStream\\": "src/"
  1650. }
  1651. },
  1652. "notification-url": "https://packagist.org/downloads/",
  1653. "license": [
  1654. "MIT"
  1655. ],
  1656. "authors": [
  1657. {
  1658. "name": "Paul Duncan",
  1659. "email": "pabs@pablotron.org"
  1660. },
  1661. {
  1662. "name": "Jonatan Männchen",
  1663. "email": "jonatan@maennchen.ch"
  1664. },
  1665. {
  1666. "name": "Jesse Donat",
  1667. "email": "donatj@gmail.com"
  1668. },
  1669. {
  1670. "name": "András Kolesár",
  1671. "email": "kolesar@kolesar.hu"
  1672. }
  1673. ],
  1674. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1675. "keywords": [
  1676. "stream",
  1677. "zip"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1681. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://opencollective.com/zipstream",
  1686. "type": "open_collective"
  1687. }
  1688. ],
  1689. "time": "2020-05-30T13:11:16+00:00"
  1690. },
  1691. {
  1692. "name": "markbaker/complex",
  1693. "version": "2.0.3",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1697. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  1702. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  1703. "shasum": "",
  1704. "mirrors": [
  1705. {
  1706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1707. "preferred": true
  1708. }
  1709. ]
  1710. },
  1711. "require": {
  1712. "php": "^7.2 || ^8.0"
  1713. },
  1714. "require-dev": {
  1715. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1716. "phpcompatibility/php-compatibility": "^9.0",
  1717. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1718. "squizlabs/php_codesniffer": "^3.4"
  1719. },
  1720. "type": "library",
  1721. "autoload": {
  1722. "psr-4": {
  1723. "Complex\\": "classes/src/"
  1724. },
  1725. "files": [
  1726. "classes/src/functions/abs.php",
  1727. "classes/src/functions/acos.php",
  1728. "classes/src/functions/acosh.php",
  1729. "classes/src/functions/acot.php",
  1730. "classes/src/functions/acoth.php",
  1731. "classes/src/functions/acsc.php",
  1732. "classes/src/functions/acsch.php",
  1733. "classes/src/functions/argument.php",
  1734. "classes/src/functions/asec.php",
  1735. "classes/src/functions/asech.php",
  1736. "classes/src/functions/asin.php",
  1737. "classes/src/functions/asinh.php",
  1738. "classes/src/functions/atan.php",
  1739. "classes/src/functions/atanh.php",
  1740. "classes/src/functions/conjugate.php",
  1741. "classes/src/functions/cos.php",
  1742. "classes/src/functions/cosh.php",
  1743. "classes/src/functions/cot.php",
  1744. "classes/src/functions/coth.php",
  1745. "classes/src/functions/csc.php",
  1746. "classes/src/functions/csch.php",
  1747. "classes/src/functions/exp.php",
  1748. "classes/src/functions/inverse.php",
  1749. "classes/src/functions/ln.php",
  1750. "classes/src/functions/log2.php",
  1751. "classes/src/functions/log10.php",
  1752. "classes/src/functions/negative.php",
  1753. "classes/src/functions/pow.php",
  1754. "classes/src/functions/rho.php",
  1755. "classes/src/functions/sec.php",
  1756. "classes/src/functions/sech.php",
  1757. "classes/src/functions/sin.php",
  1758. "classes/src/functions/sinh.php",
  1759. "classes/src/functions/sqrt.php",
  1760. "classes/src/functions/tan.php",
  1761. "classes/src/functions/tanh.php",
  1762. "classes/src/functions/theta.php",
  1763. "classes/src/operations/add.php",
  1764. "classes/src/operations/subtract.php",
  1765. "classes/src/operations/multiply.php",
  1766. "classes/src/operations/divideby.php",
  1767. "classes/src/operations/divideinto.php"
  1768. ]
  1769. },
  1770. "notification-url": "https://packagist.org/downloads/",
  1771. "license": [
  1772. "MIT"
  1773. ],
  1774. "authors": [
  1775. {
  1776. "name": "Mark Baker",
  1777. "email": "mark@lange.demon.co.uk"
  1778. }
  1779. ],
  1780. "description": "PHP Class for working with complex numbers",
  1781. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1782. "keywords": [
  1783. "complex",
  1784. "mathematics"
  1785. ],
  1786. "support": {
  1787. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1788. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  1789. },
  1790. "time": "2021-06-02T09:44:11+00:00"
  1791. },
  1792. {
  1793. "name": "markbaker/matrix",
  1794. "version": "2.1.3",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1798. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  1803. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  1804. "shasum": "",
  1805. "mirrors": [
  1806. {
  1807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1808. "preferred": true
  1809. }
  1810. ]
  1811. },
  1812. "require": {
  1813. "php": "^7.1 || ^8.0"
  1814. },
  1815. "require-dev": {
  1816. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1817. "phpcompatibility/php-compatibility": "^9.0",
  1818. "phpdocumentor/phpdocumentor": "2.*",
  1819. "phploc/phploc": "^4.0",
  1820. "phpmd/phpmd": "2.*",
  1821. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  1822. "sebastian/phpcpd": "^4.0",
  1823. "squizlabs/php_codesniffer": "^3.4"
  1824. },
  1825. "type": "library",
  1826. "autoload": {
  1827. "psr-4": {
  1828. "Matrix\\": "classes/src/"
  1829. },
  1830. "files": [
  1831. "classes/src/Functions/adjoint.php",
  1832. "classes/src/Functions/antidiagonal.php",
  1833. "classes/src/Functions/cofactors.php",
  1834. "classes/src/Functions/determinant.php",
  1835. "classes/src/Functions/diagonal.php",
  1836. "classes/src/Functions/identity.php",
  1837. "classes/src/Functions/inverse.php",
  1838. "classes/src/Functions/minors.php",
  1839. "classes/src/Functions/trace.php",
  1840. "classes/src/Functions/transpose.php",
  1841. "classes/src/Operations/add.php",
  1842. "classes/src/Operations/directsum.php",
  1843. "classes/src/Operations/subtract.php",
  1844. "classes/src/Operations/multiply.php",
  1845. "classes/src/Operations/divideby.php",
  1846. "classes/src/Operations/divideinto.php"
  1847. ]
  1848. },
  1849. "notification-url": "https://packagist.org/downloads/",
  1850. "license": [
  1851. "MIT"
  1852. ],
  1853. "authors": [
  1854. {
  1855. "name": "Mark Baker",
  1856. "email": "mark@demon-angel.eu"
  1857. }
  1858. ],
  1859. "description": "PHP Class for working with matrices",
  1860. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1861. "keywords": [
  1862. "mathematics",
  1863. "matrix",
  1864. "vector"
  1865. ],
  1866. "support": {
  1867. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1868. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  1869. },
  1870. "time": "2021-05-25T15:42:17+00:00"
  1871. },
  1872. {
  1873. "name": "monolog/monolog",
  1874. "version": "2.3.2",
  1875. "source": {
  1876. "type": "git",
  1877. "url": "https://github.com/Seldaek/monolog.git",
  1878. "reference": "71312564759a7db5b789296369c1a264efc43aad"
  1879. },
  1880. "dist": {
  1881. "type": "zip",
  1882. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/71312564759a7db5b789296369c1a264efc43aad",
  1883. "reference": "71312564759a7db5b789296369c1a264efc43aad",
  1884. "shasum": "",
  1885. "mirrors": [
  1886. {
  1887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1888. "preferred": true
  1889. }
  1890. ]
  1891. },
  1892. "require": {
  1893. "php": ">=7.2",
  1894. "psr/log": "^1.0.1"
  1895. },
  1896. "provide": {
  1897. "psr/log-implementation": "1.0.0"
  1898. },
  1899. "require-dev": {
  1900. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1901. "doctrine/couchdb": "~1.0@dev",
  1902. "elasticsearch/elasticsearch": "^7",
  1903. "graylog2/gelf-php": "^1.4.2",
  1904. "mongodb/mongodb": "^1.8",
  1905. "php-amqplib/php-amqplib": "~2.4",
  1906. "php-console/php-console": "^3.1.3",
  1907. "phpspec/prophecy": "^1.6.1",
  1908. "phpstan/phpstan": "^0.12.91",
  1909. "phpunit/phpunit": "^8.5",
  1910. "predis/predis": "^1.1",
  1911. "rollbar/rollbar": "^1.3",
  1912. "ruflin/elastica": ">=0.90 <7.0.1",
  1913. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1914. },
  1915. "suggest": {
  1916. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1917. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1918. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1919. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1920. "ext-mbstring": "Allow to work properly with unicode symbols",
  1921. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1922. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1923. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1924. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1925. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1926. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1927. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1928. },
  1929. "type": "library",
  1930. "extra": {
  1931. "branch-alias": {
  1932. "dev-main": "2.x-dev"
  1933. }
  1934. },
  1935. "autoload": {
  1936. "psr-4": {
  1937. "Monolog\\": "src/Monolog"
  1938. }
  1939. },
  1940. "notification-url": "https://packagist.org/downloads/",
  1941. "license": [
  1942. "MIT"
  1943. ],
  1944. "authors": [
  1945. {
  1946. "name": "Jordi Boggiano",
  1947. "email": "j.boggiano@seld.be",
  1948. "homepage": "https://seld.be"
  1949. }
  1950. ],
  1951. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1952. "homepage": "https://github.com/Seldaek/monolog",
  1953. "keywords": [
  1954. "log",
  1955. "logging",
  1956. "psr-3"
  1957. ],
  1958. "support": {
  1959. "issues": "https://github.com/Seldaek/monolog/issues",
  1960. "source": "https://github.com/Seldaek/monolog/tree/2.3.2"
  1961. },
  1962. "funding": [
  1963. {
  1964. "url": "https://github.com/Seldaek",
  1965. "type": "github"
  1966. },
  1967. {
  1968. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1969. "type": "tidelift"
  1970. }
  1971. ],
  1972. "time": "2021-07-23T07:42:52+00:00"
  1973. },
  1974. {
  1975. "name": "mtdowling/jmespath.php",
  1976. "version": "2.6.1",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/jmespath/jmespath.php.git",
  1980. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1985. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1986. "shasum": "",
  1987. "mirrors": [
  1988. {
  1989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1990. "preferred": true
  1991. }
  1992. ]
  1993. },
  1994. "require": {
  1995. "php": "^5.4 || ^7.0 || ^8.0",
  1996. "symfony/polyfill-mbstring": "^1.17"
  1997. },
  1998. "require-dev": {
  1999. "composer/xdebug-handler": "^1.4 || ^2.0",
  2000. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  2001. },
  2002. "bin": [
  2003. "bin/jp.php"
  2004. ],
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "2.6-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "psr-4": {
  2013. "JmesPath\\": "src/"
  2014. },
  2015. "files": [
  2016. "src/JmesPath.php"
  2017. ]
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Michael Dowling",
  2026. "email": "mtdowling@gmail.com",
  2027. "homepage": "https://github.com/mtdowling"
  2028. }
  2029. ],
  2030. "description": "Declaratively specify how to extract elements from a JSON document",
  2031. "keywords": [
  2032. "json",
  2033. "jsonpath"
  2034. ],
  2035. "support": {
  2036. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2037. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  2038. },
  2039. "time": "2021-06-14T00:11:39+00:00"
  2040. },
  2041. {
  2042. "name": "myclabs/php-enum",
  2043. "version": "1.8.3",
  2044. "source": {
  2045. "type": "git",
  2046. "url": "https://github.com/myclabs/php-enum.git",
  2047. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  2048. },
  2049. "dist": {
  2050. "type": "zip",
  2051. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  2052. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  2053. "shasum": "",
  2054. "mirrors": [
  2055. {
  2056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2057. "preferred": true
  2058. }
  2059. ]
  2060. },
  2061. "require": {
  2062. "ext-json": "*",
  2063. "php": "^7.3 || ^8.0"
  2064. },
  2065. "require-dev": {
  2066. "phpunit/phpunit": "^9.5",
  2067. "squizlabs/php_codesniffer": "1.*",
  2068. "vimeo/psalm": "^4.6.2"
  2069. },
  2070. "type": "library",
  2071. "autoload": {
  2072. "psr-4": {
  2073. "MyCLabs\\Enum\\": "src/"
  2074. }
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "PHP Enum contributors",
  2083. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2084. }
  2085. ],
  2086. "description": "PHP Enum implementation",
  2087. "homepage": "http://github.com/myclabs/php-enum",
  2088. "keywords": [
  2089. "enum"
  2090. ],
  2091. "support": {
  2092. "issues": "https://github.com/myclabs/php-enum/issues",
  2093. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://github.com/mnapoli",
  2098. "type": "github"
  2099. },
  2100. {
  2101. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2102. "type": "tidelift"
  2103. }
  2104. ],
  2105. "time": "2021-07-05T08:18:36+00:00"
  2106. },
  2107. {
  2108. "name": "nette/php-generator",
  2109. "version": "v3.6.6",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/nette/php-generator.git",
  2113. "reference": "ad7d0a77f58260001bd263605eb2b9fbaf1d61a7"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/nette/php-generator/zipball/ad7d0a77f58260001bd263605eb2b9fbaf1d61a7",
  2118. "reference": "ad7d0a77f58260001bd263605eb2b9fbaf1d61a7",
  2119. "shasum": "",
  2120. "mirrors": [
  2121. {
  2122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2123. "preferred": true
  2124. }
  2125. ]
  2126. },
  2127. "require": {
  2128. "nette/utils": "^3.1.2",
  2129. "php": ">=7.2 <8.2"
  2130. },
  2131. "require-dev": {
  2132. "nette/tester": "^2.4",
  2133. "nikic/php-parser": "^4.13",
  2134. "phpstan/phpstan": "^0.12",
  2135. "tracy/tracy": "^2.8"
  2136. },
  2137. "suggest": {
  2138. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "3.6-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "classmap": [
  2148. "src/"
  2149. ]
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "BSD-3-Clause",
  2154. "GPL-2.0-only",
  2155. "GPL-3.0-only"
  2156. ],
  2157. "authors": [
  2158. {
  2159. "name": "David Grudl",
  2160. "homepage": "https://davidgrudl.com"
  2161. },
  2162. {
  2163. "name": "Nette Community",
  2164. "homepage": "https://nette.org/contributors"
  2165. }
  2166. ],
  2167. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.1 features.",
  2168. "homepage": "https://nette.org",
  2169. "keywords": [
  2170. "code",
  2171. "nette",
  2172. "php",
  2173. "scaffolding"
  2174. ],
  2175. "support": {
  2176. "issues": "https://github.com/nette/php-generator/issues",
  2177. "source": "https://github.com/nette/php-generator/tree/v3.6.6"
  2178. },
  2179. "time": "2022-02-20T18:06:09+00:00"
  2180. },
  2181. {
  2182. "name": "nette/utils",
  2183. "version": "v3.2.7",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/nette/utils.git",
  2187. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99",
  2192. "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99",
  2193. "shasum": "",
  2194. "mirrors": [
  2195. {
  2196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2197. "preferred": true
  2198. }
  2199. ]
  2200. },
  2201. "require": {
  2202. "php": ">=7.2 <8.2"
  2203. },
  2204. "conflict": {
  2205. "nette/di": "<3.0.6"
  2206. },
  2207. "require-dev": {
  2208. "nette/tester": "~2.0",
  2209. "phpstan/phpstan": "^1.0",
  2210. "tracy/tracy": "^2.3"
  2211. },
  2212. "suggest": {
  2213. "ext-gd": "to use Image",
  2214. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2215. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2216. "ext-json": "to use Nette\\Utils\\Json",
  2217. "ext-mbstring": "to use Strings::lower() etc...",
  2218. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2219. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "branch-alias": {
  2224. "dev-master": "3.2-dev"
  2225. }
  2226. },
  2227. "autoload": {
  2228. "classmap": [
  2229. "src/"
  2230. ]
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "BSD-3-Clause",
  2235. "GPL-2.0-only",
  2236. "GPL-3.0-only"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "David Grudl",
  2241. "homepage": "https://davidgrudl.com"
  2242. },
  2243. {
  2244. "name": "Nette Community",
  2245. "homepage": "https://nette.org/contributors"
  2246. }
  2247. ],
  2248. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2249. "homepage": "https://nette.org",
  2250. "keywords": [
  2251. "array",
  2252. "core",
  2253. "datetime",
  2254. "images",
  2255. "json",
  2256. "nette",
  2257. "paginator",
  2258. "password",
  2259. "slugify",
  2260. "string",
  2261. "unicode",
  2262. "utf-8",
  2263. "utility",
  2264. "validation"
  2265. ],
  2266. "support": {
  2267. "issues": "https://github.com/nette/utils/issues",
  2268. "source": "https://github.com/nette/utils/tree/v3.2.7"
  2269. },
  2270. "time": "2022-01-24T11:29:14+00:00"
  2271. },
  2272. {
  2273. "name": "open-smf/connection-pool",
  2274. "version": "v1.0.16",
  2275. "source": {
  2276. "type": "git",
  2277. "url": "https://github.com/open-smf/connection-pool.git",
  2278. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0"
  2279. },
  2280. "dist": {
  2281. "type": "zip",
  2282. "url": "https://api.github.com/repos/open-smf/connection-pool/zipball/f70e47dbf56f1869d3207e15825cf38810b865e0",
  2283. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0",
  2284. "shasum": "",
  2285. "mirrors": [
  2286. {
  2287. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2288. "preferred": true
  2289. }
  2290. ]
  2291. },
  2292. "require": {
  2293. "ext-json": "*",
  2294. "ext-swoole": ">=4.2.9",
  2295. "php": ">=7.0.0"
  2296. },
  2297. "require-dev": {
  2298. "swoole/ide-helper": "@dev"
  2299. },
  2300. "suggest": {
  2301. "ext-redis": "A PHP extension for Redis."
  2302. },
  2303. "type": "library",
  2304. "autoload": {
  2305. "psr-4": {
  2306. "Smf\\ConnectionPool\\": "src"
  2307. }
  2308. },
  2309. "notification-url": "https://packagist.org/downloads/",
  2310. "license": [
  2311. "MIT"
  2312. ],
  2313. "authors": [
  2314. {
  2315. "name": "Xie Biao",
  2316. "email": "hhxsv5@sina.com"
  2317. }
  2318. ],
  2319. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  2320. "homepage": "https://github.com/open-smf/connection-pool",
  2321. "keywords": [
  2322. "connection-pool",
  2323. "database-connection-pool",
  2324. "swoole"
  2325. ],
  2326. "support": {
  2327. "issues": "https://github.com/open-smf/connection-pool/issues",
  2328. "source": "https://github.com/open-smf/connection-pool"
  2329. },
  2330. "time": "2021-03-01T04:13:24+00:00"
  2331. },
  2332. {
  2333. "name": "overtrue/socialite",
  2334. "version": "3.2.3",
  2335. "source": {
  2336. "type": "git",
  2337. "url": "https://github.com/overtrue/socialite.git",
  2338. "reference": "e331d3e2eb7040a53c674590dfa475b3ae141d32"
  2339. },
  2340. "dist": {
  2341. "type": "zip",
  2342. "url": "https://api.github.com/repos/overtrue/socialite/zipball/e331d3e2eb7040a53c674590dfa475b3ae141d32",
  2343. "reference": "e331d3e2eb7040a53c674590dfa475b3ae141d32",
  2344. "shasum": "",
  2345. "mirrors": [
  2346. {
  2347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2348. "preferred": true
  2349. }
  2350. ]
  2351. },
  2352. "require": {
  2353. "ext-json": "*",
  2354. "ext-openssl": "*",
  2355. "guzzlehttp/guzzle": "~6.0|~7.0",
  2356. "php": ">=7.4",
  2357. "symfony/http-foundation": "^5.0",
  2358. "symfony/psr-http-message-bridge": "^2.0"
  2359. },
  2360. "require-dev": {
  2361. "mockery/mockery": "~1.2",
  2362. "phpunit/phpunit": "~9.0"
  2363. },
  2364. "type": "library",
  2365. "autoload": {
  2366. "psr-4": {
  2367. "Overtrue\\Socialite\\": "src/"
  2368. }
  2369. },
  2370. "notification-url": "https://packagist.org/downloads/",
  2371. "license": [
  2372. "MIT"
  2373. ],
  2374. "authors": [
  2375. {
  2376. "name": "overtrue",
  2377. "email": "anzhengchao@gmail.com"
  2378. }
  2379. ],
  2380. "description": "A collection of OAuth 2 packages.",
  2381. "keywords": [
  2382. "Feishu",
  2383. "login",
  2384. "oauth",
  2385. "qcloud",
  2386. "qq",
  2387. "social",
  2388. "wechat",
  2389. "weibo"
  2390. ],
  2391. "support": {
  2392. "issues": "https://github.com/overtrue/socialite/issues",
  2393. "source": "https://github.com/overtrue/socialite/tree/3.2.3"
  2394. },
  2395. "funding": [
  2396. {
  2397. "url": "https://www.patreon.com/overtrue",
  2398. "type": "patreon"
  2399. }
  2400. ],
  2401. "time": "2021-05-27T05:04:00+00:00"
  2402. },
  2403. {
  2404. "name": "overtrue/wechat",
  2405. "version": "5.7.1",
  2406. "source": {
  2407. "type": "git",
  2408. "url": "https://github.com/w7corp/easywechat.git",
  2409. "reference": "af06e58784aaaeaadc35f984e7e38ef05197bb31"
  2410. },
  2411. "dist": {
  2412. "type": "zip",
  2413. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/af06e58784aaaeaadc35f984e7e38ef05197bb31",
  2414. "reference": "af06e58784aaaeaadc35f984e7e38ef05197bb31",
  2415. "shasum": "",
  2416. "mirrors": [
  2417. {
  2418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2419. "preferred": true
  2420. }
  2421. ]
  2422. },
  2423. "require": {
  2424. "easywechat-composer/easywechat-composer": "^1.1",
  2425. "ext-fileinfo": "*",
  2426. "ext-libxml": "*",
  2427. "ext-openssl": "*",
  2428. "ext-simplexml": "*",
  2429. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2430. "monolog/monolog": "^1.22 || ^2.0",
  2431. "overtrue/socialite": "^3.2",
  2432. "php": ">=7.4",
  2433. "pimple/pimple": "^3.0",
  2434. "psr/simple-cache": "^1.0",
  2435. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  2436. "symfony/event-dispatcher": "^4.3 || ^5.0",
  2437. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  2438. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  2439. },
  2440. "require-dev": {
  2441. "brainmaestro/composer-git-hooks": "^2.7",
  2442. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  2443. "friendsofphp/php-cs-fixer": "^2.15",
  2444. "mikey179/vfsstream": "^1.6",
  2445. "mockery/mockery": "^1.2.3",
  2446. "phpstan/phpstan": "^0.12.0",
  2447. "phpunit/phpunit": "^9.3"
  2448. },
  2449. "type": "library",
  2450. "extra": {
  2451. "hooks": {
  2452. "pre-commit": [
  2453. "composer test",
  2454. "composer fix-style"
  2455. ],
  2456. "pre-push": [
  2457. "composer test",
  2458. "composer fix-style"
  2459. ]
  2460. }
  2461. },
  2462. "autoload": {
  2463. "psr-4": {
  2464. "EasyWeChat\\": "src/"
  2465. },
  2466. "files": [
  2467. "src/Kernel/Support/Helpers.php",
  2468. "src/Kernel/Helpers.php"
  2469. ]
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "overtrue",
  2478. "email": "anzhengchao@gmail.com"
  2479. }
  2480. ],
  2481. "description": "微信SDK",
  2482. "keywords": [
  2483. "easywechat",
  2484. "sdk",
  2485. "wechat",
  2486. "weixin",
  2487. "weixin-sdk"
  2488. ],
  2489. "support": {
  2490. "issues": "https://github.com/w7corp/easywechat/issues",
  2491. "source": "https://github.com/w7corp/easywechat/tree/5.7.1"
  2492. },
  2493. "funding": [
  2494. {
  2495. "url": "https://www.easywechat.com/img/pay/wechat.jpg",
  2496. "type": "custom"
  2497. },
  2498. {
  2499. "url": "https://github.com/overtrue",
  2500. "type": "github"
  2501. },
  2502. {
  2503. "url": "https://www.patreon.com/overtrue",
  2504. "type": "patreon"
  2505. }
  2506. ],
  2507. "time": "2021-07-20T06:15:59+00:00"
  2508. },
  2509. {
  2510. "name": "phpoffice/phpspreadsheet",
  2511. "version": "1.18.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2515. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  2520. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  2521. "shasum": "",
  2522. "mirrors": [
  2523. {
  2524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2525. "preferred": true
  2526. }
  2527. ]
  2528. },
  2529. "require": {
  2530. "ext-ctype": "*",
  2531. "ext-dom": "*",
  2532. "ext-fileinfo": "*",
  2533. "ext-gd": "*",
  2534. "ext-iconv": "*",
  2535. "ext-libxml": "*",
  2536. "ext-mbstring": "*",
  2537. "ext-simplexml": "*",
  2538. "ext-xml": "*",
  2539. "ext-xmlreader": "*",
  2540. "ext-xmlwriter": "*",
  2541. "ext-zip": "*",
  2542. "ext-zlib": "*",
  2543. "ezyang/htmlpurifier": "^4.13",
  2544. "maennchen/zipstream-php": "^2.1",
  2545. "markbaker/complex": "^2.0",
  2546. "markbaker/matrix": "^2.0",
  2547. "php": "^7.2 || ^8.0",
  2548. "psr/http-client": "^1.0",
  2549. "psr/http-factory": "^1.0",
  2550. "psr/simple-cache": "^1.0"
  2551. },
  2552. "require-dev": {
  2553. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2554. "dompdf/dompdf": "^1.0",
  2555. "friendsofphp/php-cs-fixer": "^2.18",
  2556. "jpgraph/jpgraph": "^4.0",
  2557. "mpdf/mpdf": "^8.0",
  2558. "phpcompatibility/php-compatibility": "^9.3",
  2559. "phpstan/phpstan": "^0.12.82",
  2560. "phpstan/phpstan-phpunit": "^0.12.18",
  2561. "phpunit/phpunit": "^8.5",
  2562. "squizlabs/php_codesniffer": "^3.5",
  2563. "tecnickcom/tcpdf": "^6.3"
  2564. },
  2565. "suggest": {
  2566. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2567. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2568. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2569. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2570. },
  2571. "type": "library",
  2572. "autoload": {
  2573. "psr-4": {
  2574. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Maarten Balliauw",
  2584. "homepage": "https://blog.maartenballiauw.be"
  2585. },
  2586. {
  2587. "name": "Mark Baker",
  2588. "homepage": "https://markbakeruk.net"
  2589. },
  2590. {
  2591. "name": "Franck Lefevre",
  2592. "homepage": "https://rootslabs.net"
  2593. },
  2594. {
  2595. "name": "Erik Tilt"
  2596. },
  2597. {
  2598. "name": "Adrien Crivelli"
  2599. }
  2600. ],
  2601. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2602. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2603. "keywords": [
  2604. "OpenXML",
  2605. "excel",
  2606. "gnumeric",
  2607. "ods",
  2608. "php",
  2609. "spreadsheet",
  2610. "xls",
  2611. "xlsx"
  2612. ],
  2613. "support": {
  2614. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2615. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  2616. },
  2617. "time": "2021-05-31T18:21:15+00:00"
  2618. },
  2619. {
  2620. "name": "pimple/pimple",
  2621. "version": "v3.4.0",
  2622. "source": {
  2623. "type": "git",
  2624. "url": "https://github.com/silexphp/Pimple.git",
  2625. "reference": "86406047271859ffc13424a048541f4531f53601"
  2626. },
  2627. "dist": {
  2628. "type": "zip",
  2629. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  2630. "reference": "86406047271859ffc13424a048541f4531f53601",
  2631. "shasum": "",
  2632. "mirrors": [
  2633. {
  2634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2635. "preferred": true
  2636. }
  2637. ]
  2638. },
  2639. "require": {
  2640. "php": ">=7.2.5",
  2641. "psr/container": "^1.1"
  2642. },
  2643. "require-dev": {
  2644. "symfony/phpunit-bridge": "^5.0"
  2645. },
  2646. "type": "library",
  2647. "extra": {
  2648. "branch-alias": {
  2649. "dev-master": "3.4.x-dev"
  2650. }
  2651. },
  2652. "autoload": {
  2653. "psr-0": {
  2654. "Pimple": "src/"
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Fabien Potencier",
  2664. "email": "fabien@symfony.com"
  2665. }
  2666. ],
  2667. "description": "Pimple, a simple Dependency Injection Container",
  2668. "homepage": "https://pimple.symfony.com",
  2669. "keywords": [
  2670. "container",
  2671. "dependency injection"
  2672. ],
  2673. "support": {
  2674. "source": "https://github.com/silexphp/Pimple/tree/v3.4.0"
  2675. },
  2676. "time": "2021-03-06T08:28:00+00:00"
  2677. },
  2678. {
  2679. "name": "psr/cache",
  2680. "version": "1.0.1",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/php-fig/cache.git",
  2684. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2689. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2690. "shasum": "",
  2691. "mirrors": [
  2692. {
  2693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2694. "preferred": true
  2695. }
  2696. ]
  2697. },
  2698. "require": {
  2699. "php": ">=5.3.0"
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "1.0.x-dev"
  2705. }
  2706. },
  2707. "autoload": {
  2708. "psr-4": {
  2709. "Psr\\Cache\\": "src/"
  2710. }
  2711. },
  2712. "notification-url": "https://packagist.org/downloads/",
  2713. "license": [
  2714. "MIT"
  2715. ],
  2716. "authors": [
  2717. {
  2718. "name": "PHP-FIG",
  2719. "homepage": "http://www.php-fig.org/"
  2720. }
  2721. ],
  2722. "description": "Common interface for caching libraries",
  2723. "keywords": [
  2724. "cache",
  2725. "psr",
  2726. "psr-6"
  2727. ],
  2728. "support": {
  2729. "source": "https://github.com/php-fig/cache/tree/master"
  2730. },
  2731. "time": "2016-08-06T20:24:11+00:00"
  2732. },
  2733. {
  2734. "name": "psr/container",
  2735. "version": "1.1.2",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/php-fig/container.git",
  2739. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2744. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2745. "shasum": "",
  2746. "mirrors": [
  2747. {
  2748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2749. "preferred": true
  2750. }
  2751. ]
  2752. },
  2753. "require": {
  2754. "php": ">=7.4.0"
  2755. },
  2756. "type": "library",
  2757. "autoload": {
  2758. "psr-4": {
  2759. "Psr\\Container\\": "src/"
  2760. }
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "PHP-FIG",
  2769. "homepage": "https://www.php-fig.org/"
  2770. }
  2771. ],
  2772. "description": "Common Container Interface (PHP FIG PSR-11)",
  2773. "homepage": "https://github.com/php-fig/container",
  2774. "keywords": [
  2775. "PSR-11",
  2776. "container",
  2777. "container-interface",
  2778. "container-interop",
  2779. "psr"
  2780. ],
  2781. "support": {
  2782. "issues": "https://github.com/php-fig/container/issues",
  2783. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2784. },
  2785. "time": "2021-11-05T16:50:12+00:00"
  2786. },
  2787. {
  2788. "name": "psr/event-dispatcher",
  2789. "version": "1.0.0",
  2790. "source": {
  2791. "type": "git",
  2792. "url": "https://github.com/php-fig/event-dispatcher.git",
  2793. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2794. },
  2795. "dist": {
  2796. "type": "zip",
  2797. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2798. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2799. "shasum": "",
  2800. "mirrors": [
  2801. {
  2802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2803. "preferred": true
  2804. }
  2805. ]
  2806. },
  2807. "require": {
  2808. "php": ">=7.2.0"
  2809. },
  2810. "type": "library",
  2811. "extra": {
  2812. "branch-alias": {
  2813. "dev-master": "1.0.x-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Psr\\EventDispatcher\\": "src/"
  2819. }
  2820. },
  2821. "notification-url": "https://packagist.org/downloads/",
  2822. "license": [
  2823. "MIT"
  2824. ],
  2825. "authors": [
  2826. {
  2827. "name": "PHP-FIG",
  2828. "homepage": "http://www.php-fig.org/"
  2829. }
  2830. ],
  2831. "description": "Standard interfaces for event handling.",
  2832. "keywords": [
  2833. "events",
  2834. "psr",
  2835. "psr-14"
  2836. ],
  2837. "support": {
  2838. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2839. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2840. },
  2841. "time": "2019-01-08T18:20:26+00:00"
  2842. },
  2843. {
  2844. "name": "psr/http-client",
  2845. "version": "1.0.3",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/php-fig/http-client.git",
  2849. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2854. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2855. "shasum": "",
  2856. "mirrors": [
  2857. {
  2858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2859. "preferred": true
  2860. }
  2861. ]
  2862. },
  2863. "require": {
  2864. "php": "^7.0 || ^8.0",
  2865. "psr/http-message": "^1.0 || ^2.0"
  2866. },
  2867. "type": "library",
  2868. "extra": {
  2869. "branch-alias": {
  2870. "dev-master": "1.0.x-dev"
  2871. }
  2872. },
  2873. "autoload": {
  2874. "psr-4": {
  2875. "Psr\\Http\\Client\\": "src/"
  2876. }
  2877. },
  2878. "notification-url": "https://packagist.org/downloads/",
  2879. "license": [
  2880. "MIT"
  2881. ],
  2882. "authors": [
  2883. {
  2884. "name": "PHP-FIG",
  2885. "homepage": "https://www.php-fig.org/"
  2886. }
  2887. ],
  2888. "description": "Common interface for HTTP clients",
  2889. "homepage": "https://github.com/php-fig/http-client",
  2890. "keywords": [
  2891. "http",
  2892. "http-client",
  2893. "psr",
  2894. "psr-18"
  2895. ],
  2896. "support": {
  2897. "source": "https://github.com/php-fig/http-client"
  2898. },
  2899. "time": "2023-09-23T14:17:50+00:00"
  2900. },
  2901. {
  2902. "name": "psr/http-factory",
  2903. "version": "1.0.2",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/php-fig/http-factory.git",
  2907. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  2912. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2913. "shasum": "",
  2914. "mirrors": [
  2915. {
  2916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2917. "preferred": true
  2918. }
  2919. ]
  2920. },
  2921. "require": {
  2922. "php": ">=7.0.0",
  2923. "psr/http-message": "^1.0 || ^2.0"
  2924. },
  2925. "type": "library",
  2926. "extra": {
  2927. "branch-alias": {
  2928. "dev-master": "1.0.x-dev"
  2929. }
  2930. },
  2931. "autoload": {
  2932. "psr-4": {
  2933. "Psr\\Http\\Message\\": "src/"
  2934. }
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "PHP-FIG",
  2943. "homepage": "https://www.php-fig.org/"
  2944. }
  2945. ],
  2946. "description": "Common interfaces for PSR-7 HTTP message factories",
  2947. "keywords": [
  2948. "factory",
  2949. "http",
  2950. "message",
  2951. "psr",
  2952. "psr-17",
  2953. "psr-7",
  2954. "request",
  2955. "response"
  2956. ],
  2957. "support": {
  2958. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2959. },
  2960. "time": "2023-04-10T20:10:41+00:00"
  2961. },
  2962. {
  2963. "name": "psr/http-message",
  2964. "version": "1.1",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/php-fig/http-message.git",
  2968. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2973. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2974. "shasum": "",
  2975. "mirrors": [
  2976. {
  2977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2978. "preferred": true
  2979. }
  2980. ]
  2981. },
  2982. "require": {
  2983. "php": "^7.2 || ^8.0"
  2984. },
  2985. "type": "library",
  2986. "extra": {
  2987. "branch-alias": {
  2988. "dev-master": "1.1.x-dev"
  2989. }
  2990. },
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Psr\\Http\\Message\\": "src/"
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "PHP-FIG",
  3003. "homepage": "http://www.php-fig.org/"
  3004. }
  3005. ],
  3006. "description": "Common interface for HTTP messages",
  3007. "homepage": "https://github.com/php-fig/http-message",
  3008. "keywords": [
  3009. "http",
  3010. "http-message",
  3011. "psr",
  3012. "psr-7",
  3013. "request",
  3014. "response"
  3015. ],
  3016. "support": {
  3017. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3018. },
  3019. "time": "2023-04-04T09:50:52+00:00"
  3020. },
  3021. {
  3022. "name": "psr/log",
  3023. "version": "1.1.4",
  3024. "source": {
  3025. "type": "git",
  3026. "url": "https://github.com/php-fig/log.git",
  3027. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3028. },
  3029. "dist": {
  3030. "type": "zip",
  3031. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3032. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3033. "shasum": "",
  3034. "mirrors": [
  3035. {
  3036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3037. "preferred": true
  3038. }
  3039. ]
  3040. },
  3041. "require": {
  3042. "php": ">=5.3.0"
  3043. },
  3044. "type": "library",
  3045. "extra": {
  3046. "branch-alias": {
  3047. "dev-master": "1.1.x-dev"
  3048. }
  3049. },
  3050. "autoload": {
  3051. "psr-4": {
  3052. "Psr\\Log\\": "Psr/Log/"
  3053. }
  3054. },
  3055. "notification-url": "https://packagist.org/downloads/",
  3056. "license": [
  3057. "MIT"
  3058. ],
  3059. "authors": [
  3060. {
  3061. "name": "PHP-FIG",
  3062. "homepage": "https://www.php-fig.org/"
  3063. }
  3064. ],
  3065. "description": "Common interface for logging libraries",
  3066. "homepage": "https://github.com/php-fig/log",
  3067. "keywords": [
  3068. "log",
  3069. "psr",
  3070. "psr-3"
  3071. ],
  3072. "support": {
  3073. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3074. },
  3075. "time": "2021-05-03T11:20:27+00:00"
  3076. },
  3077. {
  3078. "name": "psr/simple-cache",
  3079. "version": "1.0.1",
  3080. "source": {
  3081. "type": "git",
  3082. "url": "https://github.com/php-fig/simple-cache.git",
  3083. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3084. },
  3085. "dist": {
  3086. "type": "zip",
  3087. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3088. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3089. "shasum": "",
  3090. "mirrors": [
  3091. {
  3092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3093. "preferred": true
  3094. }
  3095. ]
  3096. },
  3097. "require": {
  3098. "php": ">=5.3.0"
  3099. },
  3100. "type": "library",
  3101. "extra": {
  3102. "branch-alias": {
  3103. "dev-master": "1.0.x-dev"
  3104. }
  3105. },
  3106. "autoload": {
  3107. "psr-4": {
  3108. "Psr\\SimpleCache\\": "src/"
  3109. }
  3110. },
  3111. "notification-url": "https://packagist.org/downloads/",
  3112. "license": [
  3113. "MIT"
  3114. ],
  3115. "authors": [
  3116. {
  3117. "name": "PHP-FIG",
  3118. "homepage": "http://www.php-fig.org/"
  3119. }
  3120. ],
  3121. "description": "Common interfaces for simple caching",
  3122. "keywords": [
  3123. "cache",
  3124. "caching",
  3125. "psr",
  3126. "psr-16",
  3127. "simple-cache"
  3128. ],
  3129. "support": {
  3130. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3131. },
  3132. "time": "2017-10-23T01:57:42+00:00"
  3133. },
  3134. {
  3135. "name": "qcloud/cos-sdk-v5",
  3136. "version": "v2.4.4",
  3137. "source": {
  3138. "type": "git",
  3139. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  3140. "reference": "2862ce2c9244eb12f099483db578910bde9b045a"
  3141. },
  3142. "dist": {
  3143. "type": "zip",
  3144. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/2862ce2c9244eb12f099483db578910bde9b045a",
  3145. "reference": "2862ce2c9244eb12f099483db578910bde9b045a",
  3146. "shasum": "",
  3147. "mirrors": [
  3148. {
  3149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3150. "preferred": true
  3151. }
  3152. ]
  3153. },
  3154. "require": {
  3155. "ext-curl": "*",
  3156. "ext-json": "*",
  3157. "ext-simplexml": "*",
  3158. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  3159. "guzzlehttp/guzzle-services": "^1.1",
  3160. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  3161. "php": ">=5.6"
  3162. },
  3163. "type": "library",
  3164. "autoload": {
  3165. "psr-4": {
  3166. "Qcloud\\Cos\\": "src/"
  3167. },
  3168. "files": [
  3169. "src/Common.php"
  3170. ]
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "MIT"
  3175. ],
  3176. "authors": [
  3177. {
  3178. "name": "yaozongyou",
  3179. "email": "yaozongyou@vip.qq.com"
  3180. },
  3181. {
  3182. "name": "lewzylu",
  3183. "email": "327874225@qq.com"
  3184. },
  3185. {
  3186. "name": "tuunalai",
  3187. "email": "550566181@qq.com"
  3188. }
  3189. ],
  3190. "description": "PHP SDK for QCloud COS",
  3191. "keywords": [
  3192. "cos",
  3193. "php",
  3194. "qcloud"
  3195. ],
  3196. "support": {
  3197. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  3198. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.4.4"
  3199. },
  3200. "time": "2021-12-03T02:40:30+00:00"
  3201. },
  3202. {
  3203. "name": "qiniu/php-sdk",
  3204. "version": "v7.4.0",
  3205. "source": {
  3206. "type": "git",
  3207. "url": "https://github.com/qiniu/php-sdk.git",
  3208. "reference": "1c6bc89166e524a40ee42bf516fb99ffc6401c82"
  3209. },
  3210. "dist": {
  3211. "type": "zip",
  3212. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/1c6bc89166e524a40ee42bf516fb99ffc6401c82",
  3213. "reference": "1c6bc89166e524a40ee42bf516fb99ffc6401c82",
  3214. "shasum": "",
  3215. "mirrors": [
  3216. {
  3217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3218. "preferred": true
  3219. }
  3220. ]
  3221. },
  3222. "require": {
  3223. "php": ">=5.3.3"
  3224. },
  3225. "require-dev": {
  3226. "phpunit/phpunit": "~4.0",
  3227. "squizlabs/php_codesniffer": "~3.6"
  3228. },
  3229. "type": "library",
  3230. "autoload": {
  3231. "psr-4": {
  3232. "Qiniu\\": "src/Qiniu"
  3233. },
  3234. "files": [
  3235. "src/Qiniu/functions.php"
  3236. ]
  3237. },
  3238. "notification-url": "https://packagist.org/downloads/",
  3239. "license": [
  3240. "MIT"
  3241. ],
  3242. "authors": [
  3243. {
  3244. "name": "Qiniu",
  3245. "email": "sdk@qiniu.com",
  3246. "homepage": "http://www.qiniu.com"
  3247. }
  3248. ],
  3249. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  3250. "homepage": "http://developer.qiniu.com/",
  3251. "keywords": [
  3252. "cloud",
  3253. "qiniu",
  3254. "sdk",
  3255. "storage"
  3256. ],
  3257. "support": {
  3258. "issues": "https://github.com/qiniu/php-sdk/issues",
  3259. "source": "https://github.com/qiniu/php-sdk/tree/v7.4.0"
  3260. },
  3261. "time": "2021-07-19T07:41:36+00:00"
  3262. },
  3263. {
  3264. "name": "ralouphie/getallheaders",
  3265. "version": "3.0.3",
  3266. "source": {
  3267. "type": "git",
  3268. "url": "https://github.com/ralouphie/getallheaders.git",
  3269. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3270. },
  3271. "dist": {
  3272. "type": "zip",
  3273. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3274. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3275. "shasum": "",
  3276. "mirrors": [
  3277. {
  3278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3279. "preferred": true
  3280. }
  3281. ]
  3282. },
  3283. "require": {
  3284. "php": ">=5.6"
  3285. },
  3286. "require-dev": {
  3287. "php-coveralls/php-coveralls": "^2.1",
  3288. "phpunit/phpunit": "^5 || ^6.5"
  3289. },
  3290. "type": "library",
  3291. "autoload": {
  3292. "files": [
  3293. "src/getallheaders.php"
  3294. ]
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Ralph Khattar",
  3303. "email": "ralph.khattar@gmail.com"
  3304. }
  3305. ],
  3306. "description": "A polyfill for getallheaders.",
  3307. "support": {
  3308. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3309. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3310. },
  3311. "time": "2019-03-08T08:55:37+00:00"
  3312. },
  3313. {
  3314. "name": "rmccue/requests",
  3315. "version": "v1.8.1",
  3316. "source": {
  3317. "type": "git",
  3318. "url": "https://github.com/WordPress/Requests.git",
  3319. "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5"
  3320. },
  3321. "dist": {
  3322. "type": "zip",
  3323. "url": "https://api.github.com/repos/WordPress/Requests/zipball/82e6936366eac3af4d836c18b9d8c31028fe4cd5",
  3324. "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5",
  3325. "shasum": "",
  3326. "mirrors": [
  3327. {
  3328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3329. "preferred": true
  3330. }
  3331. ]
  3332. },
  3333. "require": {
  3334. "php": ">=5.2"
  3335. },
  3336. "require-dev": {
  3337. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  3338. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  3339. "php-parallel-lint/php-parallel-lint": "^1.3",
  3340. "phpcompatibility/php-compatibility": "^9.0",
  3341. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  3342. "requests/test-server": "dev-master",
  3343. "squizlabs/php_codesniffer": "^3.5",
  3344. "wp-coding-standards/wpcs": "^2.0"
  3345. },
  3346. "type": "library",
  3347. "autoload": {
  3348. "psr-0": {
  3349. "Requests": "library/"
  3350. }
  3351. },
  3352. "notification-url": "https://packagist.org/downloads/",
  3353. "license": [
  3354. "ISC"
  3355. ],
  3356. "authors": [
  3357. {
  3358. "name": "Ryan McCue",
  3359. "homepage": "http://ryanmccue.info"
  3360. }
  3361. ],
  3362. "description": "A HTTP library written in PHP, for human beings.",
  3363. "homepage": "http://github.com/WordPress/Requests",
  3364. "keywords": [
  3365. "curl",
  3366. "fsockopen",
  3367. "http",
  3368. "idna",
  3369. "ipv6",
  3370. "iri",
  3371. "sockets"
  3372. ],
  3373. "support": {
  3374. "issues": "https://github.com/WordPress/Requests/issues",
  3375. "source": "https://github.com/WordPress/Requests/tree/v1.8.1"
  3376. },
  3377. "time": "2021-06-04T09:56:25+00:00"
  3378. },
  3379. {
  3380. "name": "simplesoftwareio/simple-qrcode",
  3381. "version": "4.2.0",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  3385. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  3390. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  3391. "shasum": ""
  3392. },
  3393. "require": {
  3394. "bacon/bacon-qr-code": "^2.0",
  3395. "ext-gd": "*",
  3396. "php": ">=7.2|^8.0"
  3397. },
  3398. "require-dev": {
  3399. "mockery/mockery": "~1",
  3400. "phpunit/phpunit": "~9"
  3401. },
  3402. "suggest": {
  3403. "ext-imagick": "Allows the generation of PNG QrCodes.",
  3404. "illuminate/support": "Allows for use within Laravel."
  3405. },
  3406. "type": "library",
  3407. "extra": {
  3408. "laravel": {
  3409. "aliases": {
  3410. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  3411. },
  3412. "providers": [
  3413. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  3414. ]
  3415. }
  3416. },
  3417. "autoload": {
  3418. "psr-4": {
  3419. "SimpleSoftwareIO\\QrCode\\": "src"
  3420. }
  3421. },
  3422. "notification-url": "https://packagist.org/downloads/",
  3423. "license": [
  3424. "MIT"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Simple Software LLC",
  3429. "email": "support@simplesoftware.io"
  3430. }
  3431. ],
  3432. "description": "Simple QrCode is a QR code generator made for Laravel.",
  3433. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  3434. "keywords": [
  3435. "Simple",
  3436. "generator",
  3437. "laravel",
  3438. "qrcode",
  3439. "wrapper"
  3440. ],
  3441. "support": {
  3442. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  3443. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  3444. },
  3445. "time": "2021-02-08T20:43:55+00:00"
  3446. },
  3447. {
  3448. "name": "songshenzong/support",
  3449. "version": "2.0.5",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://github.com/songshenzong/support.git",
  3453. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/songshenzong/support/zipball/34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  3458. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  3459. "shasum": "",
  3460. "mirrors": [
  3461. {
  3462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3463. "preferred": true
  3464. }
  3465. ]
  3466. },
  3467. "require": {
  3468. "danielstjules/stringy": "^3.1",
  3469. "ext-json": "*",
  3470. "ext-simplexml": "*",
  3471. "ext-xml": "*",
  3472. "php": ">=5.5"
  3473. },
  3474. "require-dev": {
  3475. "laravel/framework": "^5.8",
  3476. "phpunit/phpunit": "^4.8.35|^5.4.3"
  3477. },
  3478. "type": "library",
  3479. "extra": {
  3480. "laravel": {
  3481. "providers": [
  3482. "Songshenzong\\Support\\StringsServiceProvider"
  3483. ],
  3484. "aliases": {
  3485. "Strings": "Songshenzong\\Support\\StringsFacade"
  3486. }
  3487. }
  3488. },
  3489. "autoload": {
  3490. "psr-4": {
  3491. "Songshenzong\\Support\\": "src/"
  3492. },
  3493. "files": [
  3494. "src/StringsHelpers.php",
  3495. "src/BashEchoHelpers.php"
  3496. ]
  3497. },
  3498. "notification-url": "https://packagist.org/downloads/",
  3499. "license": [
  3500. "MIT"
  3501. ],
  3502. "authors": [
  3503. {
  3504. "name": "Songshenzong",
  3505. "email": "i@songshenzong.com"
  3506. }
  3507. ],
  3508. "description": "The Songshenzong Support package.",
  3509. "homepage": "http://songshenzong.com",
  3510. "keywords": [
  3511. "laravel",
  3512. "support",
  3513. "tools",
  3514. "web"
  3515. ],
  3516. "support": {
  3517. "issues": "https://github.com/songshenzong/support/issues",
  3518. "source": "https://github.com/songshenzong/support"
  3519. },
  3520. "time": "2019-08-29T01:59:12+00:00"
  3521. },
  3522. {
  3523. "name": "stechstudio/backoff",
  3524. "version": "1.2",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/stechstudio/backoff.git",
  3528. "reference": "816e46107a6be2e1072ba0ff2cb26034872dfa49"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/stechstudio/backoff/zipball/816e46107a6be2e1072ba0ff2cb26034872dfa49",
  3533. "reference": "816e46107a6be2e1072ba0ff2cb26034872dfa49",
  3534. "shasum": "",
  3535. "mirrors": [
  3536. {
  3537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3538. "preferred": true
  3539. }
  3540. ]
  3541. },
  3542. "require-dev": {
  3543. "phpunit/phpunit": "5.5.*"
  3544. },
  3545. "type": "library",
  3546. "autoload": {
  3547. "files": [
  3548. "src/helpers.php"
  3549. ],
  3550. "psr-4": {
  3551. "STS\\Backoff\\": "src"
  3552. }
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "MIT"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "Joseph Szobody",
  3561. "email": "joseph@stechstudio.com"
  3562. }
  3563. ],
  3564. "description": "PHP library providing retry functionality with multiple backoff strategies and jitter support",
  3565. "support": {
  3566. "issues": "https://github.com/stechstudio/backoff/issues",
  3567. "source": "https://github.com/stechstudio/backoff/tree/1.2"
  3568. },
  3569. "time": "2020-12-26T14:57:10+00:00"
  3570. },
  3571. {
  3572. "name": "swoole/ide-helper",
  3573. "version": "4.8.7",
  3574. "source": {
  3575. "type": "git",
  3576. "url": "https://github.com/swoole/ide-helper.git",
  3577. "reference": "62d306dcfdb7c2cd21768386955af9de387163f9"
  3578. },
  3579. "dist": {
  3580. "type": "zip",
  3581. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/62d306dcfdb7c2cd21768386955af9de387163f9",
  3582. "reference": "62d306dcfdb7c2cd21768386955af9de387163f9",
  3583. "shasum": "",
  3584. "mirrors": [
  3585. {
  3586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3587. "preferred": true
  3588. }
  3589. ]
  3590. },
  3591. "type": "library",
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "Apache-2.0"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Team Swoole",
  3599. "email": "team@swoole.com"
  3600. }
  3601. ],
  3602. "description": "IDE help files for Swoole.",
  3603. "support": {
  3604. "issues": "https://github.com/swoole/ide-helper/issues",
  3605. "source": "https://github.com/swoole/ide-helper/tree/4.8.7"
  3606. },
  3607. "funding": [
  3608. {
  3609. "url": "https://gitee.com/swoole/swoole?donate=true",
  3610. "type": "custom"
  3611. },
  3612. {
  3613. "url": "https://github.com/swoole",
  3614. "type": "github"
  3615. }
  3616. ],
  3617. "time": "2022-02-23T01:04:01+00:00"
  3618. },
  3619. {
  3620. "name": "symfony/cache",
  3621. "version": "v5.3.4",
  3622. "source": {
  3623. "type": "git",
  3624. "url": "https://github.com/symfony/cache.git",
  3625. "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661"
  3626. },
  3627. "dist": {
  3628. "type": "zip",
  3629. "url": "https://api.github.com/repos/symfony/cache/zipball/944db6004fc374fbe032d18e07cce51cc4e1e661",
  3630. "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661",
  3631. "shasum": "",
  3632. "mirrors": [
  3633. {
  3634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3635. "preferred": true
  3636. }
  3637. ]
  3638. },
  3639. "require": {
  3640. "php": ">=7.2.5",
  3641. "psr/cache": "^1.0|^2.0",
  3642. "psr/log": "^1.1|^2|^3",
  3643. "symfony/cache-contracts": "^1.1.7|^2",
  3644. "symfony/deprecation-contracts": "^2.1",
  3645. "symfony/polyfill-php80": "^1.16",
  3646. "symfony/service-contracts": "^1.1|^2",
  3647. "symfony/var-exporter": "^4.4|^5.0"
  3648. },
  3649. "conflict": {
  3650. "doctrine/dbal": "<2.10",
  3651. "symfony/dependency-injection": "<4.4",
  3652. "symfony/http-kernel": "<4.4",
  3653. "symfony/var-dumper": "<4.4"
  3654. },
  3655. "provide": {
  3656. "psr/cache-implementation": "1.0|2.0",
  3657. "psr/simple-cache-implementation": "1.0",
  3658. "symfony/cache-implementation": "1.0|2.0"
  3659. },
  3660. "require-dev": {
  3661. "cache/integration-tests": "dev-master",
  3662. "doctrine/cache": "^1.6|^2.0",
  3663. "doctrine/dbal": "^2.10|^3.0",
  3664. "predis/predis": "^1.1",
  3665. "psr/simple-cache": "^1.0",
  3666. "symfony/config": "^4.4|^5.0",
  3667. "symfony/dependency-injection": "^4.4|^5.0",
  3668. "symfony/filesystem": "^4.4|^5.0",
  3669. "symfony/http-kernel": "^4.4|^5.0",
  3670. "symfony/messenger": "^4.4|^5.0",
  3671. "symfony/var-dumper": "^4.4|^5.0"
  3672. },
  3673. "type": "library",
  3674. "autoload": {
  3675. "psr-4": {
  3676. "Symfony\\Component\\Cache\\": ""
  3677. },
  3678. "exclude-from-classmap": [
  3679. "/Tests/"
  3680. ]
  3681. },
  3682. "notification-url": "https://packagist.org/downloads/",
  3683. "license": [
  3684. "MIT"
  3685. ],
  3686. "authors": [
  3687. {
  3688. "name": "Nicolas Grekas",
  3689. "email": "p@tchwork.com"
  3690. },
  3691. {
  3692. "name": "Symfony Community",
  3693. "homepage": "https://symfony.com/contributors"
  3694. }
  3695. ],
  3696. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  3697. "homepage": "https://symfony.com",
  3698. "keywords": [
  3699. "caching",
  3700. "psr6"
  3701. ],
  3702. "support": {
  3703. "source": "https://github.com/symfony/cache/tree/v5.3.4"
  3704. },
  3705. "funding": [
  3706. {
  3707. "url": "https://symfony.com/sponsor",
  3708. "type": "custom"
  3709. },
  3710. {
  3711. "url": "https://github.com/fabpot",
  3712. "type": "github"
  3713. },
  3714. {
  3715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3716. "type": "tidelift"
  3717. }
  3718. ],
  3719. "time": "2021-07-23T15:55:36+00:00"
  3720. },
  3721. {
  3722. "name": "symfony/cache-contracts",
  3723. "version": "v2.4.0",
  3724. "source": {
  3725. "type": "git",
  3726. "url": "https://github.com/symfony/cache-contracts.git",
  3727. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d"
  3728. },
  3729. "dist": {
  3730. "type": "zip",
  3731. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/c0446463729b89dd4fa62e9aeecc80287323615d",
  3732. "reference": "c0446463729b89dd4fa62e9aeecc80287323615d",
  3733. "shasum": "",
  3734. "mirrors": [
  3735. {
  3736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3737. "preferred": true
  3738. }
  3739. ]
  3740. },
  3741. "require": {
  3742. "php": ">=7.2.5",
  3743. "psr/cache": "^1.0|^2.0|^3.0"
  3744. },
  3745. "suggest": {
  3746. "symfony/cache-implementation": ""
  3747. },
  3748. "type": "library",
  3749. "extra": {
  3750. "branch-alias": {
  3751. "dev-main": "2.4-dev"
  3752. },
  3753. "thanks": {
  3754. "name": "symfony/contracts",
  3755. "url": "https://github.com/symfony/contracts"
  3756. }
  3757. },
  3758. "autoload": {
  3759. "psr-4": {
  3760. "Symfony\\Contracts\\Cache\\": ""
  3761. }
  3762. },
  3763. "notification-url": "https://packagist.org/downloads/",
  3764. "license": [
  3765. "MIT"
  3766. ],
  3767. "authors": [
  3768. {
  3769. "name": "Nicolas Grekas",
  3770. "email": "p@tchwork.com"
  3771. },
  3772. {
  3773. "name": "Symfony Community",
  3774. "homepage": "https://symfony.com/contributors"
  3775. }
  3776. ],
  3777. "description": "Generic abstractions related to caching",
  3778. "homepage": "https://symfony.com",
  3779. "keywords": [
  3780. "abstractions",
  3781. "contracts",
  3782. "decoupling",
  3783. "interfaces",
  3784. "interoperability",
  3785. "standards"
  3786. ],
  3787. "support": {
  3788. "source": "https://github.com/symfony/cache-contracts/tree/v2.4.0"
  3789. },
  3790. "funding": [
  3791. {
  3792. "url": "https://symfony.com/sponsor",
  3793. "type": "custom"
  3794. },
  3795. {
  3796. "url": "https://github.com/fabpot",
  3797. "type": "github"
  3798. },
  3799. {
  3800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3801. "type": "tidelift"
  3802. }
  3803. ],
  3804. "time": "2021-03-23T23:28:01+00:00"
  3805. },
  3806. {
  3807. "name": "symfony/deprecation-contracts",
  3808. "version": "v2.4.0",
  3809. "source": {
  3810. "type": "git",
  3811. "url": "https://github.com/symfony/deprecation-contracts.git",
  3812. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  3813. },
  3814. "dist": {
  3815. "type": "zip",
  3816. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  3817. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  3818. "shasum": "",
  3819. "mirrors": [
  3820. {
  3821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3822. "preferred": true
  3823. }
  3824. ]
  3825. },
  3826. "require": {
  3827. "php": ">=7.1"
  3828. },
  3829. "type": "library",
  3830. "extra": {
  3831. "branch-alias": {
  3832. "dev-main": "2.4-dev"
  3833. },
  3834. "thanks": {
  3835. "name": "symfony/contracts",
  3836. "url": "https://github.com/symfony/contracts"
  3837. }
  3838. },
  3839. "autoload": {
  3840. "files": [
  3841. "function.php"
  3842. ]
  3843. },
  3844. "notification-url": "https://packagist.org/downloads/",
  3845. "license": [
  3846. "MIT"
  3847. ],
  3848. "authors": [
  3849. {
  3850. "name": "Nicolas Grekas",
  3851. "email": "p@tchwork.com"
  3852. },
  3853. {
  3854. "name": "Symfony Community",
  3855. "homepage": "https://symfony.com/contributors"
  3856. }
  3857. ],
  3858. "description": "A generic function and convention to trigger deprecation notices",
  3859. "homepage": "https://symfony.com",
  3860. "support": {
  3861. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  3862. },
  3863. "funding": [
  3864. {
  3865. "url": "https://symfony.com/sponsor",
  3866. "type": "custom"
  3867. },
  3868. {
  3869. "url": "https://github.com/fabpot",
  3870. "type": "github"
  3871. },
  3872. {
  3873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3874. "type": "tidelift"
  3875. }
  3876. ],
  3877. "time": "2021-03-23T23:28:01+00:00"
  3878. },
  3879. {
  3880. "name": "symfony/event-dispatcher",
  3881. "version": "v5.3.4",
  3882. "source": {
  3883. "type": "git",
  3884. "url": "https://github.com/symfony/event-dispatcher.git",
  3885. "reference": "f2fd2208157553874560f3645d4594303058c4bd"
  3886. },
  3887. "dist": {
  3888. "type": "zip",
  3889. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f2fd2208157553874560f3645d4594303058c4bd",
  3890. "reference": "f2fd2208157553874560f3645d4594303058c4bd",
  3891. "shasum": "",
  3892. "mirrors": [
  3893. {
  3894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3895. "preferred": true
  3896. }
  3897. ]
  3898. },
  3899. "require": {
  3900. "php": ">=7.2.5",
  3901. "symfony/deprecation-contracts": "^2.1",
  3902. "symfony/event-dispatcher-contracts": "^2",
  3903. "symfony/polyfill-php80": "^1.16"
  3904. },
  3905. "conflict": {
  3906. "symfony/dependency-injection": "<4.4"
  3907. },
  3908. "provide": {
  3909. "psr/event-dispatcher-implementation": "1.0",
  3910. "symfony/event-dispatcher-implementation": "2.0"
  3911. },
  3912. "require-dev": {
  3913. "psr/log": "^1|^2|^3",
  3914. "symfony/config": "^4.4|^5.0",
  3915. "symfony/dependency-injection": "^4.4|^5.0",
  3916. "symfony/error-handler": "^4.4|^5.0",
  3917. "symfony/expression-language": "^4.4|^5.0",
  3918. "symfony/http-foundation": "^4.4|^5.0",
  3919. "symfony/service-contracts": "^1.1|^2",
  3920. "symfony/stopwatch": "^4.4|^5.0"
  3921. },
  3922. "suggest": {
  3923. "symfony/dependency-injection": "",
  3924. "symfony/http-kernel": ""
  3925. },
  3926. "type": "library",
  3927. "autoload": {
  3928. "psr-4": {
  3929. "Symfony\\Component\\EventDispatcher\\": ""
  3930. },
  3931. "exclude-from-classmap": [
  3932. "/Tests/"
  3933. ]
  3934. },
  3935. "notification-url": "https://packagist.org/downloads/",
  3936. "license": [
  3937. "MIT"
  3938. ],
  3939. "authors": [
  3940. {
  3941. "name": "Fabien Potencier",
  3942. "email": "fabien@symfony.com"
  3943. },
  3944. {
  3945. "name": "Symfony Community",
  3946. "homepage": "https://symfony.com/contributors"
  3947. }
  3948. ],
  3949. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3950. "homepage": "https://symfony.com",
  3951. "support": {
  3952. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.4"
  3953. },
  3954. "funding": [
  3955. {
  3956. "url": "https://symfony.com/sponsor",
  3957. "type": "custom"
  3958. },
  3959. {
  3960. "url": "https://github.com/fabpot",
  3961. "type": "github"
  3962. },
  3963. {
  3964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3965. "type": "tidelift"
  3966. }
  3967. ],
  3968. "time": "2021-07-23T15:55:36+00:00"
  3969. },
  3970. {
  3971. "name": "symfony/event-dispatcher-contracts",
  3972. "version": "v2.4.0",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3976. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  3981. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  3982. "shasum": "",
  3983. "mirrors": [
  3984. {
  3985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3986. "preferred": true
  3987. }
  3988. ]
  3989. },
  3990. "require": {
  3991. "php": ">=7.2.5",
  3992. "psr/event-dispatcher": "^1"
  3993. },
  3994. "suggest": {
  3995. "symfony/event-dispatcher-implementation": ""
  3996. },
  3997. "type": "library",
  3998. "extra": {
  3999. "branch-alias": {
  4000. "dev-main": "2.4-dev"
  4001. },
  4002. "thanks": {
  4003. "name": "symfony/contracts",
  4004. "url": "https://github.com/symfony/contracts"
  4005. }
  4006. },
  4007. "autoload": {
  4008. "psr-4": {
  4009. "Symfony\\Contracts\\EventDispatcher\\": ""
  4010. }
  4011. },
  4012. "notification-url": "https://packagist.org/downloads/",
  4013. "license": [
  4014. "MIT"
  4015. ],
  4016. "authors": [
  4017. {
  4018. "name": "Nicolas Grekas",
  4019. "email": "p@tchwork.com"
  4020. },
  4021. {
  4022. "name": "Symfony Community",
  4023. "homepage": "https://symfony.com/contributors"
  4024. }
  4025. ],
  4026. "description": "Generic abstractions related to dispatching event",
  4027. "homepage": "https://symfony.com",
  4028. "keywords": [
  4029. "abstractions",
  4030. "contracts",
  4031. "decoupling",
  4032. "interfaces",
  4033. "interoperability",
  4034. "standards"
  4035. ],
  4036. "support": {
  4037. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  4038. },
  4039. "funding": [
  4040. {
  4041. "url": "https://symfony.com/sponsor",
  4042. "type": "custom"
  4043. },
  4044. {
  4045. "url": "https://github.com/fabpot",
  4046. "type": "github"
  4047. },
  4048. {
  4049. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4050. "type": "tidelift"
  4051. }
  4052. ],
  4053. "time": "2021-03-23T23:28:01+00:00"
  4054. },
  4055. {
  4056. "name": "symfony/finder",
  4057. "version": "v5.4.3",
  4058. "source": {
  4059. "type": "git",
  4060. "url": "https://github.com/symfony/finder.git",
  4061. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d"
  4062. },
  4063. "dist": {
  4064. "type": "zip",
  4065. "url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  4066. "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d",
  4067. "shasum": "",
  4068. "mirrors": [
  4069. {
  4070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4071. "preferred": true
  4072. }
  4073. ]
  4074. },
  4075. "require": {
  4076. "php": ">=7.2.5",
  4077. "symfony/deprecation-contracts": "^2.1|^3",
  4078. "symfony/polyfill-php80": "^1.16"
  4079. },
  4080. "type": "library",
  4081. "autoload": {
  4082. "psr-4": {
  4083. "Symfony\\Component\\Finder\\": ""
  4084. },
  4085. "exclude-from-classmap": [
  4086. "/Tests/"
  4087. ]
  4088. },
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "MIT"
  4092. ],
  4093. "authors": [
  4094. {
  4095. "name": "Fabien Potencier",
  4096. "email": "fabien@symfony.com"
  4097. },
  4098. {
  4099. "name": "Symfony Community",
  4100. "homepage": "https://symfony.com/contributors"
  4101. }
  4102. ],
  4103. "description": "Finds files and directories via an intuitive fluent interface",
  4104. "homepage": "https://symfony.com",
  4105. "support": {
  4106. "source": "https://github.com/symfony/finder/tree/v5.4.3"
  4107. },
  4108. "funding": [
  4109. {
  4110. "url": "https://symfony.com/sponsor",
  4111. "type": "custom"
  4112. },
  4113. {
  4114. "url": "https://github.com/fabpot",
  4115. "type": "github"
  4116. },
  4117. {
  4118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4119. "type": "tidelift"
  4120. }
  4121. ],
  4122. "time": "2022-01-26T16:34:36+00:00"
  4123. },
  4124. {
  4125. "name": "symfony/http-foundation",
  4126. "version": "v5.3.4",
  4127. "source": {
  4128. "type": "git",
  4129. "url": "https://github.com/symfony/http-foundation.git",
  4130. "reference": "d6602aca7d3e11f401a0b24f43b611c530abfad3"
  4131. },
  4132. "dist": {
  4133. "type": "zip",
  4134. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d6602aca7d3e11f401a0b24f43b611c530abfad3",
  4135. "reference": "d6602aca7d3e11f401a0b24f43b611c530abfad3",
  4136. "shasum": "",
  4137. "mirrors": [
  4138. {
  4139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4140. "preferred": true
  4141. }
  4142. ]
  4143. },
  4144. "require": {
  4145. "php": ">=7.2.5",
  4146. "symfony/deprecation-contracts": "^2.1",
  4147. "symfony/polyfill-mbstring": "~1.1",
  4148. "symfony/polyfill-php80": "^1.16"
  4149. },
  4150. "require-dev": {
  4151. "predis/predis": "~1.0",
  4152. "symfony/cache": "^4.4|^5.0",
  4153. "symfony/expression-language": "^4.4|^5.0",
  4154. "symfony/mime": "^4.4|^5.0"
  4155. },
  4156. "suggest": {
  4157. "symfony/mime": "To use the file extension guesser"
  4158. },
  4159. "type": "library",
  4160. "autoload": {
  4161. "psr-4": {
  4162. "Symfony\\Component\\HttpFoundation\\": ""
  4163. },
  4164. "exclude-from-classmap": [
  4165. "/Tests/"
  4166. ]
  4167. },
  4168. "notification-url": "https://packagist.org/downloads/",
  4169. "license": [
  4170. "MIT"
  4171. ],
  4172. "authors": [
  4173. {
  4174. "name": "Fabien Potencier",
  4175. "email": "fabien@symfony.com"
  4176. },
  4177. {
  4178. "name": "Symfony Community",
  4179. "homepage": "https://symfony.com/contributors"
  4180. }
  4181. ],
  4182. "description": "Defines an object-oriented layer for the HTTP specification",
  4183. "homepage": "https://symfony.com",
  4184. "support": {
  4185. "source": "https://github.com/symfony/http-foundation/tree/v5.3.4"
  4186. },
  4187. "funding": [
  4188. {
  4189. "url": "https://symfony.com/sponsor",
  4190. "type": "custom"
  4191. },
  4192. {
  4193. "url": "https://github.com/fabpot",
  4194. "type": "github"
  4195. },
  4196. {
  4197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4198. "type": "tidelift"
  4199. }
  4200. ],
  4201. "time": "2021-07-23T15:55:36+00:00"
  4202. },
  4203. {
  4204. "name": "symfony/polyfill-ctype",
  4205. "version": "v1.23.0",
  4206. "source": {
  4207. "type": "git",
  4208. "url": "https://github.com/symfony/polyfill-ctype.git",
  4209. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  4210. },
  4211. "dist": {
  4212. "type": "zip",
  4213. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  4214. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  4215. "shasum": "",
  4216. "mirrors": [
  4217. {
  4218. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4219. "preferred": true
  4220. }
  4221. ]
  4222. },
  4223. "require": {
  4224. "php": ">=7.1"
  4225. },
  4226. "suggest": {
  4227. "ext-ctype": "For best performance"
  4228. },
  4229. "type": "library",
  4230. "extra": {
  4231. "branch-alias": {
  4232. "dev-main": "1.23-dev"
  4233. },
  4234. "thanks": {
  4235. "name": "symfony/polyfill",
  4236. "url": "https://github.com/symfony/polyfill"
  4237. }
  4238. },
  4239. "autoload": {
  4240. "psr-4": {
  4241. "Symfony\\Polyfill\\Ctype\\": ""
  4242. },
  4243. "files": [
  4244. "bootstrap.php"
  4245. ]
  4246. },
  4247. "notification-url": "https://packagist.org/downloads/",
  4248. "license": [
  4249. "MIT"
  4250. ],
  4251. "authors": [
  4252. {
  4253. "name": "Gert de Pagter",
  4254. "email": "BackEndTea@gmail.com"
  4255. },
  4256. {
  4257. "name": "Symfony Community",
  4258. "homepage": "https://symfony.com/contributors"
  4259. }
  4260. ],
  4261. "description": "Symfony polyfill for ctype functions",
  4262. "homepage": "https://symfony.com",
  4263. "keywords": [
  4264. "compatibility",
  4265. "ctype",
  4266. "polyfill",
  4267. "portable"
  4268. ],
  4269. "support": {
  4270. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  4271. },
  4272. "funding": [
  4273. {
  4274. "url": "https://symfony.com/sponsor",
  4275. "type": "custom"
  4276. },
  4277. {
  4278. "url": "https://github.com/fabpot",
  4279. "type": "github"
  4280. },
  4281. {
  4282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4283. "type": "tidelift"
  4284. }
  4285. ],
  4286. "time": "2021-02-19T12:13:01+00:00"
  4287. },
  4288. {
  4289. "name": "symfony/polyfill-mbstring",
  4290. "version": "v1.23.1",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4294. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4299. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  4300. "shasum": "",
  4301. "mirrors": [
  4302. {
  4303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4304. "preferred": true
  4305. }
  4306. ]
  4307. },
  4308. "require": {
  4309. "php": ">=7.1"
  4310. },
  4311. "suggest": {
  4312. "ext-mbstring": "For best performance"
  4313. },
  4314. "type": "library",
  4315. "extra": {
  4316. "branch-alias": {
  4317. "dev-main": "1.23-dev"
  4318. },
  4319. "thanks": {
  4320. "name": "symfony/polyfill",
  4321. "url": "https://github.com/symfony/polyfill"
  4322. }
  4323. },
  4324. "autoload": {
  4325. "psr-4": {
  4326. "Symfony\\Polyfill\\Mbstring\\": ""
  4327. },
  4328. "files": [
  4329. "bootstrap.php"
  4330. ]
  4331. },
  4332. "notification-url": "https://packagist.org/downloads/",
  4333. "license": [
  4334. "MIT"
  4335. ],
  4336. "authors": [
  4337. {
  4338. "name": "Nicolas Grekas",
  4339. "email": "p@tchwork.com"
  4340. },
  4341. {
  4342. "name": "Symfony Community",
  4343. "homepage": "https://symfony.com/contributors"
  4344. }
  4345. ],
  4346. "description": "Symfony polyfill for the Mbstring extension",
  4347. "homepage": "https://symfony.com",
  4348. "keywords": [
  4349. "compatibility",
  4350. "mbstring",
  4351. "polyfill",
  4352. "portable",
  4353. "shim"
  4354. ],
  4355. "support": {
  4356. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  4357. },
  4358. "funding": [
  4359. {
  4360. "url": "https://symfony.com/sponsor",
  4361. "type": "custom"
  4362. },
  4363. {
  4364. "url": "https://github.com/fabpot",
  4365. "type": "github"
  4366. },
  4367. {
  4368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4369. "type": "tidelift"
  4370. }
  4371. ],
  4372. "time": "2021-05-27T12:26:48+00:00"
  4373. },
  4374. {
  4375. "name": "symfony/polyfill-php80",
  4376. "version": "v1.23.1",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/symfony/polyfill-php80.git",
  4380. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  4385. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  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.1"
  4396. },
  4397. "type": "library",
  4398. "extra": {
  4399. "branch-alias": {
  4400. "dev-main": "1.23-dev"
  4401. },
  4402. "thanks": {
  4403. "name": "symfony/polyfill",
  4404. "url": "https://github.com/symfony/polyfill"
  4405. }
  4406. },
  4407. "autoload": {
  4408. "psr-4": {
  4409. "Symfony\\Polyfill\\Php80\\": ""
  4410. },
  4411. "files": [
  4412. "bootstrap.php"
  4413. ],
  4414. "classmap": [
  4415. "Resources/stubs"
  4416. ]
  4417. },
  4418. "notification-url": "https://packagist.org/downloads/",
  4419. "license": [
  4420. "MIT"
  4421. ],
  4422. "authors": [
  4423. {
  4424. "name": "Ion Bazan",
  4425. "email": "ion.bazan@gmail.com"
  4426. },
  4427. {
  4428. "name": "Nicolas Grekas",
  4429. "email": "p@tchwork.com"
  4430. },
  4431. {
  4432. "name": "Symfony Community",
  4433. "homepage": "https://symfony.com/contributors"
  4434. }
  4435. ],
  4436. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4437. "homepage": "https://symfony.com",
  4438. "keywords": [
  4439. "compatibility",
  4440. "polyfill",
  4441. "portable",
  4442. "shim"
  4443. ],
  4444. "support": {
  4445. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  4446. },
  4447. "funding": [
  4448. {
  4449. "url": "https://symfony.com/sponsor",
  4450. "type": "custom"
  4451. },
  4452. {
  4453. "url": "https://github.com/fabpot",
  4454. "type": "github"
  4455. },
  4456. {
  4457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4458. "type": "tidelift"
  4459. }
  4460. ],
  4461. "time": "2021-07-28T13:41:28+00:00"
  4462. },
  4463. {
  4464. "name": "symfony/psr-http-message-bridge",
  4465. "version": "v2.1.1",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4469. "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9012994c4b4fb23e7c57dd86b763a417a04feba",
  4474. "reference": "c9012994c4b4fb23e7c57dd86b763a417a04feba",
  4475. "shasum": "",
  4476. "mirrors": [
  4477. {
  4478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4479. "preferred": true
  4480. }
  4481. ]
  4482. },
  4483. "require": {
  4484. "php": ">=7.1",
  4485. "psr/http-message": "^1.0",
  4486. "symfony/http-foundation": "^4.4 || ^5.0"
  4487. },
  4488. "require-dev": {
  4489. "nyholm/psr7": "^1.1",
  4490. "psr/log": "^1.1 || ^2 || ^3",
  4491. "symfony/browser-kit": "^4.4 || ^5.0",
  4492. "symfony/config": "^4.4 || ^5.0",
  4493. "symfony/event-dispatcher": "^4.4 || ^5.0",
  4494. "symfony/framework-bundle": "^4.4 || ^5.0",
  4495. "symfony/http-kernel": "^4.4 || ^5.0",
  4496. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  4497. },
  4498. "suggest": {
  4499. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4500. },
  4501. "type": "symfony-bridge",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-main": "2.1-dev"
  4505. }
  4506. },
  4507. "autoload": {
  4508. "psr-4": {
  4509. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4510. },
  4511. "exclude-from-classmap": [
  4512. "/Tests/"
  4513. ]
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "Fabien Potencier",
  4522. "email": "fabien@symfony.com"
  4523. },
  4524. {
  4525. "name": "Symfony Community",
  4526. "homepage": "http://symfony.com/contributors"
  4527. }
  4528. ],
  4529. "description": "PSR HTTP message bridge",
  4530. "homepage": "http://symfony.com",
  4531. "keywords": [
  4532. "http",
  4533. "http-message",
  4534. "psr-17",
  4535. "psr-7"
  4536. ],
  4537. "support": {
  4538. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  4539. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.1"
  4540. },
  4541. "funding": [
  4542. {
  4543. "url": "https://symfony.com/sponsor",
  4544. "type": "custom"
  4545. },
  4546. {
  4547. "url": "https://github.com/fabpot",
  4548. "type": "github"
  4549. },
  4550. {
  4551. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4552. "type": "tidelift"
  4553. }
  4554. ],
  4555. "time": "2021-07-27T17:25:39+00:00"
  4556. },
  4557. {
  4558. "name": "symfony/service-contracts",
  4559. "version": "v2.4.0",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/symfony/service-contracts.git",
  4563. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  4568. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  4569. "shasum": "",
  4570. "mirrors": [
  4571. {
  4572. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4573. "preferred": true
  4574. }
  4575. ]
  4576. },
  4577. "require": {
  4578. "php": ">=7.2.5",
  4579. "psr/container": "^1.1"
  4580. },
  4581. "suggest": {
  4582. "symfony/service-implementation": ""
  4583. },
  4584. "type": "library",
  4585. "extra": {
  4586. "branch-alias": {
  4587. "dev-main": "2.4-dev"
  4588. },
  4589. "thanks": {
  4590. "name": "symfony/contracts",
  4591. "url": "https://github.com/symfony/contracts"
  4592. }
  4593. },
  4594. "autoload": {
  4595. "psr-4": {
  4596. "Symfony\\Contracts\\Service\\": ""
  4597. }
  4598. },
  4599. "notification-url": "https://packagist.org/downloads/",
  4600. "license": [
  4601. "MIT"
  4602. ],
  4603. "authors": [
  4604. {
  4605. "name": "Nicolas Grekas",
  4606. "email": "p@tchwork.com"
  4607. },
  4608. {
  4609. "name": "Symfony Community",
  4610. "homepage": "https://symfony.com/contributors"
  4611. }
  4612. ],
  4613. "description": "Generic abstractions related to writing services",
  4614. "homepage": "https://symfony.com",
  4615. "keywords": [
  4616. "abstractions",
  4617. "contracts",
  4618. "decoupling",
  4619. "interfaces",
  4620. "interoperability",
  4621. "standards"
  4622. ],
  4623. "support": {
  4624. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  4625. },
  4626. "funding": [
  4627. {
  4628. "url": "https://symfony.com/sponsor",
  4629. "type": "custom"
  4630. },
  4631. {
  4632. "url": "https://github.com/fabpot",
  4633. "type": "github"
  4634. },
  4635. {
  4636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4637. "type": "tidelift"
  4638. }
  4639. ],
  4640. "time": "2021-04-01T10:43:52+00:00"
  4641. },
  4642. {
  4643. "name": "symfony/var-exporter",
  4644. "version": "v5.3.4",
  4645. "source": {
  4646. "type": "git",
  4647. "url": "https://github.com/symfony/var-exporter.git",
  4648. "reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0"
  4649. },
  4650. "dist": {
  4651. "type": "zip",
  4652. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b7898a65fc91e7c41de7a88c7db9aee9c0d432f0",
  4653. "reference": "b7898a65fc91e7c41de7a88c7db9aee9c0d432f0",
  4654. "shasum": "",
  4655. "mirrors": [
  4656. {
  4657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4658. "preferred": true
  4659. }
  4660. ]
  4661. },
  4662. "require": {
  4663. "php": ">=7.2.5",
  4664. "symfony/polyfill-php80": "^1.16"
  4665. },
  4666. "require-dev": {
  4667. "symfony/var-dumper": "^4.4.9|^5.0.9"
  4668. },
  4669. "type": "library",
  4670. "autoload": {
  4671. "psr-4": {
  4672. "Symfony\\Component\\VarExporter\\": ""
  4673. },
  4674. "exclude-from-classmap": [
  4675. "/Tests/"
  4676. ]
  4677. },
  4678. "notification-url": "https://packagist.org/downloads/",
  4679. "license": [
  4680. "MIT"
  4681. ],
  4682. "authors": [
  4683. {
  4684. "name": "Nicolas Grekas",
  4685. "email": "p@tchwork.com"
  4686. },
  4687. {
  4688. "name": "Symfony Community",
  4689. "homepage": "https://symfony.com/contributors"
  4690. }
  4691. ],
  4692. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4693. "homepage": "https://symfony.com",
  4694. "keywords": [
  4695. "clone",
  4696. "construct",
  4697. "export",
  4698. "hydrate",
  4699. "instantiate",
  4700. "serialize"
  4701. ],
  4702. "support": {
  4703. "source": "https://github.com/symfony/var-exporter/tree/v5.3.4"
  4704. },
  4705. "funding": [
  4706. {
  4707. "url": "https://symfony.com/sponsor",
  4708. "type": "custom"
  4709. },
  4710. {
  4711. "url": "https://github.com/fabpot",
  4712. "type": "github"
  4713. },
  4714. {
  4715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4716. "type": "tidelift"
  4717. }
  4718. ],
  4719. "time": "2021-07-21T12:38:00+00:00"
  4720. },
  4721. {
  4722. "name": "symfony/yaml",
  4723. "version": "v2.8.52",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/symfony/yaml.git",
  4727. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  4732. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  4733. "shasum": "",
  4734. "mirrors": [
  4735. {
  4736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4737. "preferred": true
  4738. }
  4739. ]
  4740. },
  4741. "require": {
  4742. "php": ">=5.3.9",
  4743. "symfony/polyfill-ctype": "~1.8"
  4744. },
  4745. "type": "library",
  4746. "extra": {
  4747. "branch-alias": {
  4748. "dev-master": "2.8-dev"
  4749. }
  4750. },
  4751. "autoload": {
  4752. "psr-4": {
  4753. "Symfony\\Component\\Yaml\\": ""
  4754. },
  4755. "exclude-from-classmap": [
  4756. "/Tests/"
  4757. ]
  4758. },
  4759. "notification-url": "https://packagist.org/downloads/",
  4760. "license": [
  4761. "MIT"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "Fabien Potencier",
  4766. "email": "fabien@symfony.com"
  4767. },
  4768. {
  4769. "name": "Symfony Community",
  4770. "homepage": "https://symfony.com/contributors"
  4771. }
  4772. ],
  4773. "description": "Symfony Yaml Component",
  4774. "homepage": "https://symfony.com",
  4775. "support": {
  4776. "source": "https://github.com/symfony/yaml/tree/v2.8.52"
  4777. },
  4778. "time": "2018-11-11T11:18:13+00:00"
  4779. },
  4780. {
  4781. "name": "tencentcloud/tencentcloud-sdk-php",
  4782. "version": "3.0.1159",
  4783. "source": {
  4784. "type": "git",
  4785. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  4786. "reference": "1447d10e941f488d5444340b299186a017cda72b"
  4787. },
  4788. "dist": {
  4789. "type": "zip",
  4790. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/1447d10e941f488d5444340b299186a017cda72b",
  4791. "reference": "1447d10e941f488d5444340b299186a017cda72b",
  4792. "shasum": "",
  4793. "mirrors": [
  4794. {
  4795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4796. "preferred": true
  4797. }
  4798. ]
  4799. },
  4800. "require": {
  4801. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  4802. "php": ">=5.6.0"
  4803. },
  4804. "require-dev": {
  4805. "phpunit/phpunit": "^9.5"
  4806. },
  4807. "type": "library",
  4808. "autoload": {
  4809. "psr-4": {
  4810. "TencentCloud\\": "./src/TencentCloud"
  4811. },
  4812. "classmap": [
  4813. "src/QcloudApi/QcloudApi.php"
  4814. ]
  4815. },
  4816. "notification-url": "https://packagist.org/downloads/",
  4817. "license": [
  4818. "Apache-2.0"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "coolli",
  4823. "email": "tencentcloudapi@tencent.com",
  4824. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  4825. "role": "Developer"
  4826. }
  4827. ],
  4828. "description": "TencentCloudApi php sdk",
  4829. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  4830. "support": {
  4831. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  4832. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.1159"
  4833. },
  4834. "time": "2024-06-09T20:07:48+00:00"
  4835. },
  4836. {
  4837. "name": "topthink/framework",
  4838. "version": "v6.1.1",
  4839. "source": {
  4840. "type": "git",
  4841. "url": "https://github.com/top-think/framework.git",
  4842. "reference": "2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210"
  4843. },
  4844. "dist": {
  4845. "type": "zip",
  4846. "url": "https://api.github.com/repos/top-think/framework/zipball/2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210",
  4847. "reference": "2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210",
  4848. "shasum": "",
  4849. "mirrors": [
  4850. {
  4851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4852. "preferred": true
  4853. }
  4854. ]
  4855. },
  4856. "require": {
  4857. "ext-json": "*",
  4858. "ext-mbstring": "*",
  4859. "php": ">=7.2.5",
  4860. "psr/container": "~1.0",
  4861. "psr/http-message": "^1.0",
  4862. "psr/log": "~1.0",
  4863. "psr/simple-cache": "^1.0",
  4864. "topthink/think-helper": "^3.1.1",
  4865. "topthink/think-orm": "^2.0"
  4866. },
  4867. "require-dev": {
  4868. "guzzlehttp/psr7": "^2.1.0",
  4869. "mikey179/vfsstream": "^1.6",
  4870. "mockery/mockery": "^1.2",
  4871. "phpunit/phpunit": "^7.0"
  4872. },
  4873. "type": "library",
  4874. "autoload": {
  4875. "files": [],
  4876. "psr-4": {
  4877. "think\\": "src/think/"
  4878. }
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "Apache-2.0"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "liu21st",
  4887. "email": "liu21st@gmail.com"
  4888. },
  4889. {
  4890. "name": "yunwuxin",
  4891. "email": "448901948@qq.com"
  4892. }
  4893. ],
  4894. "description": "The ThinkPHP Framework.",
  4895. "homepage": "http://thinkphp.cn/",
  4896. "keywords": [
  4897. "framework",
  4898. "orm",
  4899. "thinkphp"
  4900. ],
  4901. "support": {
  4902. "issues": "https://github.com/top-think/framework/issues",
  4903. "source": "https://github.com/top-think/framework/tree/v6.1.1"
  4904. },
  4905. "time": "2022-10-26T03:48:53+00:00"
  4906. },
  4907. {
  4908. "name": "topthink/think-helper",
  4909. "version": "v3.1.5",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/top-think/think-helper.git",
  4913. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/top-think/think-helper/zipball/f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  4918. "reference": "f98e3ad44acd27ae85a4d923b1bdfd16c6d8d905",
  4919. "shasum": "",
  4920. "mirrors": [
  4921. {
  4922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4923. "preferred": true
  4924. }
  4925. ]
  4926. },
  4927. "require": {
  4928. "php": ">=7.1.0"
  4929. },
  4930. "type": "library",
  4931. "autoload": {
  4932. "psr-4": {
  4933. "think\\": "src"
  4934. },
  4935. "files": [
  4936. "src/helper.php"
  4937. ]
  4938. },
  4939. "notification-url": "https://packagist.org/downloads/",
  4940. "license": [
  4941. "Apache-2.0"
  4942. ],
  4943. "authors": [
  4944. {
  4945. "name": "yunwuxin",
  4946. "email": "448901948@qq.com"
  4947. }
  4948. ],
  4949. "description": "The ThinkPHP6 Helper Package",
  4950. "support": {
  4951. "issues": "https://github.com/top-think/think-helper/issues",
  4952. "source": "https://github.com/top-think/think-helper/tree/v3.1.5"
  4953. },
  4954. "time": "2021-06-21T06:17:31+00:00"
  4955. },
  4956. {
  4957. "name": "topthink/think-multi-app",
  4958. "version": "v1.0.14",
  4959. "source": {
  4960. "type": "git",
  4961. "url": "https://github.com/top-think/think-multi-app.git",
  4962. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  4963. },
  4964. "dist": {
  4965. "type": "zip",
  4966. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  4967. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  4968. "shasum": "",
  4969. "mirrors": [
  4970. {
  4971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4972. "preferred": true
  4973. }
  4974. ]
  4975. },
  4976. "require": {
  4977. "php": ">=7.1.0",
  4978. "topthink/framework": "^6.0.0"
  4979. },
  4980. "type": "library",
  4981. "extra": {
  4982. "think": {
  4983. "services": [
  4984. "think\\app\\Service"
  4985. ]
  4986. }
  4987. },
  4988. "autoload": {
  4989. "psr-4": {
  4990. "think\\app\\": "src"
  4991. }
  4992. },
  4993. "notification-url": "https://packagist.org/downloads/",
  4994. "license": [
  4995. "Apache-2.0"
  4996. ],
  4997. "authors": [
  4998. {
  4999. "name": "liu21st",
  5000. "email": "liu21st@gmail.com"
  5001. }
  5002. ],
  5003. "description": "thinkphp6 multi app support",
  5004. "support": {
  5005. "issues": "https://github.com/top-think/think-multi-app/issues",
  5006. "source": "https://github.com/top-think/think-multi-app/tree/master"
  5007. },
  5008. "time": "2020-07-12T13:50:37+00:00"
  5009. },
  5010. {
  5011. "name": "topthink/think-orm",
  5012. "version": "v2.0.44",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/top-think/think-orm.git",
  5016. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/top-think/think-orm/zipball/5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  5021. "reference": "5d3d5c1ebf8bfccf34bacd90edb42989b16ea409",
  5022. "shasum": "",
  5023. "mirrors": [
  5024. {
  5025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5026. "preferred": true
  5027. }
  5028. ]
  5029. },
  5030. "require": {
  5031. "ext-json": "*",
  5032. "ext-pdo": "*",
  5033. "php": ">=7.1.0",
  5034. "psr/log": "~1.0",
  5035. "psr/simple-cache": "^1.0",
  5036. "topthink/think-helper": "^3.1"
  5037. },
  5038. "require-dev": {
  5039. "phpunit/phpunit": "^7|^8|^9.5"
  5040. },
  5041. "type": "library",
  5042. "autoload": {
  5043. "psr-4": {
  5044. "think\\": "src"
  5045. },
  5046. "files": [
  5047. "stubs/load_stubs.php"
  5048. ]
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "Apache-2.0"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "liu21st",
  5057. "email": "liu21st@gmail.com"
  5058. }
  5059. ],
  5060. "description": "think orm",
  5061. "keywords": [
  5062. "database",
  5063. "orm"
  5064. ],
  5065. "support": {
  5066. "issues": "https://github.com/top-think/think-orm/issues",
  5067. "source": "https://github.com/top-think/think-orm/tree/v2.0.44"
  5068. },
  5069. "time": "2021-07-21T02:22:31+00:00"
  5070. },
  5071. {
  5072. "name": "topthink/think-swoole",
  5073. "version": "v3.1.3",
  5074. "source": {
  5075. "type": "git",
  5076. "url": "https://github.com/top-think/think-swoole.git",
  5077. "reference": "df78b1f6eb6cd8f45f49ab7b0d4cc65595181504"
  5078. },
  5079. "dist": {
  5080. "type": "zip",
  5081. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/df78b1f6eb6cd8f45f49ab7b0d4cc65595181504",
  5082. "reference": "df78b1f6eb6cd8f45f49ab7b0d4cc65595181504",
  5083. "shasum": "",
  5084. "mirrors": [
  5085. {
  5086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5087. "preferred": true
  5088. }
  5089. ]
  5090. },
  5091. "require": {
  5092. "ext-json": "*",
  5093. "ext-swoole": ">=4.4.8",
  5094. "nette/php-generator": "^3.2",
  5095. "open-smf/connection-pool": "~1.0",
  5096. "php": ">7.1",
  5097. "stechstudio/backoff": "^1.2",
  5098. "swoole/ide-helper": "^4.3",
  5099. "symfony/finder": "^4.3.2|^5.1",
  5100. "topthink/framework": "^6.0"
  5101. },
  5102. "require-dev": {
  5103. "symfony/var-dumper": "^4.3|^5.1",
  5104. "topthink/think-queue": "^3.0",
  5105. "topthink/think-tracing": "^1.0"
  5106. },
  5107. "type": "library",
  5108. "extra": {
  5109. "think": {
  5110. "services": [
  5111. "think\\swoole\\Service"
  5112. ],
  5113. "config": {
  5114. "swoole": "src/config/swoole.php"
  5115. }
  5116. }
  5117. },
  5118. "autoload": {
  5119. "files": [
  5120. "src/helpers.php"
  5121. ],
  5122. "psr-4": {
  5123. "think\\swoole\\": "src"
  5124. }
  5125. },
  5126. "notification-url": "https://packagist.org/downloads/",
  5127. "license": [
  5128. "Apache-2.0"
  5129. ],
  5130. "authors": [
  5131. {
  5132. "name": "liu21st",
  5133. "email": "liu21st@gmail.com"
  5134. }
  5135. ],
  5136. "description": "Swoole extend for thinkphp",
  5137. "support": {
  5138. "issues": "https://github.com/top-think/think-swoole/issues",
  5139. "source": "https://github.com/top-think/think-swoole/tree/v3.1.3"
  5140. },
  5141. "time": "2021-04-29T10:48:04+00:00"
  5142. },
  5143. {
  5144. "name": "topthink/think-template",
  5145. "version": "v2.0.8",
  5146. "source": {
  5147. "type": "git",
  5148. "url": "https://github.com/top-think/think-template.git",
  5149. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  5150. },
  5151. "dist": {
  5152. "type": "zip",
  5153. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  5154. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  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.1.0",
  5165. "psr/simple-cache": "^1.0"
  5166. },
  5167. "type": "library",
  5168. "autoload": {
  5169. "psr-4": {
  5170. "think\\": "src"
  5171. }
  5172. },
  5173. "notification-url": "https://packagist.org/downloads/",
  5174. "license": [
  5175. "Apache-2.0"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "liu21st",
  5180. "email": "liu21st@gmail.com"
  5181. }
  5182. ],
  5183. "description": "the php template engine",
  5184. "support": {
  5185. "issues": "https://github.com/top-think/think-template/issues",
  5186. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  5187. },
  5188. "time": "2020-12-10T07:52:03+00:00"
  5189. },
  5190. {
  5191. "name": "topthink/think-view",
  5192. "version": "v1.0.14",
  5193. "source": {
  5194. "type": "git",
  5195. "url": "https://github.com/top-think/think-view.git",
  5196. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  5197. },
  5198. "dist": {
  5199. "type": "zip",
  5200. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  5201. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  5202. "shasum": "",
  5203. "mirrors": [
  5204. {
  5205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5206. "preferred": true
  5207. }
  5208. ]
  5209. },
  5210. "require": {
  5211. "php": ">=7.1.0",
  5212. "topthink/think-template": "^2.0"
  5213. },
  5214. "type": "library",
  5215. "autoload": {
  5216. "psr-4": {
  5217. "think\\view\\driver\\": "src"
  5218. }
  5219. },
  5220. "notification-url": "https://packagist.org/downloads/",
  5221. "license": [
  5222. "Apache-2.0"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "liu21st",
  5227. "email": "liu21st@gmail.com"
  5228. }
  5229. ],
  5230. "description": "thinkphp template driver",
  5231. "support": {
  5232. "issues": "https://github.com/top-think/think-view/issues",
  5233. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  5234. },
  5235. "time": "2019-11-06T11:40:13+00:00"
  5236. },
  5237. {
  5238. "name": "webmozart/assert",
  5239. "version": "1.10.0",
  5240. "source": {
  5241. "type": "git",
  5242. "url": "https://github.com/webmozarts/assert.git",
  5243. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  5244. },
  5245. "dist": {
  5246. "type": "zip",
  5247. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  5248. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  5249. "shasum": "",
  5250. "mirrors": [
  5251. {
  5252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5253. "preferred": true
  5254. }
  5255. ]
  5256. },
  5257. "require": {
  5258. "php": "^7.2 || ^8.0",
  5259. "symfony/polyfill-ctype": "^1.8"
  5260. },
  5261. "conflict": {
  5262. "phpstan/phpstan": "<0.12.20",
  5263. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5264. },
  5265. "require-dev": {
  5266. "phpunit/phpunit": "^8.5.13"
  5267. },
  5268. "type": "library",
  5269. "extra": {
  5270. "branch-alias": {
  5271. "dev-master": "1.10-dev"
  5272. }
  5273. },
  5274. "autoload": {
  5275. "psr-4": {
  5276. "Webmozart\\Assert\\": "src/"
  5277. }
  5278. },
  5279. "notification-url": "https://packagist.org/downloads/",
  5280. "license": [
  5281. "MIT"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "Bernhard Schussek",
  5286. "email": "bschussek@gmail.com"
  5287. }
  5288. ],
  5289. "description": "Assertions to validate method input/output with nice error messages.",
  5290. "keywords": [
  5291. "assert",
  5292. "check",
  5293. "validate"
  5294. ],
  5295. "support": {
  5296. "issues": "https://github.com/webmozarts/assert/issues",
  5297. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  5298. },
  5299. "time": "2021-03-09T10:59:23+00:00"
  5300. },
  5301. {
  5302. "name": "xin/container",
  5303. "version": "2.0.1",
  5304. "source": {
  5305. "type": "git",
  5306. "url": "https://gitee.com/liuxiaojinla/php-container",
  5307. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  5308. },
  5309. "require": {
  5310. "ext-ctype": "*",
  5311. "ext-iconv": "*",
  5312. "ext-json": "*",
  5313. "ext-libxml": "*",
  5314. "ext-mbstring": "*",
  5315. "ext-openssl": "*",
  5316. "ext-simplexml": "*",
  5317. "psr/container": "^1.0",
  5318. "xin/helper": "^1.0"
  5319. },
  5320. "type": "library",
  5321. "autoload": {
  5322. "psr-4": {
  5323. "xin\\container\\": "src/"
  5324. }
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "Apache-2.0"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "晋",
  5333. "email": "657306123@qq.com"
  5334. }
  5335. ],
  5336. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  5337. "time": "2019-10-21T03:51:25+00:00"
  5338. },
  5339. {
  5340. "name": "xin/helper",
  5341. "version": "1.0.0",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://gitee.com/liuxiaojinla/php-helper",
  5345. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  5346. },
  5347. "require": {
  5348. "ext-ctype": "*",
  5349. "ext-iconv": "*",
  5350. "ext-json": "*",
  5351. "ext-libxml": "*",
  5352. "ext-mbstring": "*",
  5353. "ext-openssl": "*",
  5354. "ext-simplexml": "*"
  5355. },
  5356. "type": "library",
  5357. "autoload": {
  5358. "psr-4": {
  5359. "xin\\helper\\": "src/"
  5360. }
  5361. },
  5362. "notification-url": "https://packagist.org/downloads/",
  5363. "license": [
  5364. "Apache-2.0"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "晋",
  5369. "email": "1540175452@qq.com"
  5370. }
  5371. ],
  5372. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  5373. "time": "2019-06-22T08:28:23+00:00"
  5374. },
  5375. {
  5376. "name": "yansongda/artful",
  5377. "version": "v1.1.2",
  5378. "source": {
  5379. "type": "git",
  5380. "url": "https://github.com/yansongda/artful.git",
  5381. "reference": "bad726c6287aca219750823bff46f70287ec3995"
  5382. },
  5383. "dist": {
  5384. "type": "zip",
  5385. "url": "https://api.github.com/repos/yansongda/artful/zipball/bad726c6287aca219750823bff46f70287ec3995",
  5386. "reference": "bad726c6287aca219750823bff46f70287ec3995",
  5387. "shasum": "",
  5388. "mirrors": [
  5389. {
  5390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5391. "preferred": true
  5392. }
  5393. ]
  5394. },
  5395. "require": {
  5396. "guzzlehttp/psr7": "^2.6",
  5397. "php": ">=8.0",
  5398. "psr/container": "^1.1 || ^2.0",
  5399. "psr/event-dispatcher": "^1.0",
  5400. "psr/http-client": "^1.0",
  5401. "psr/http-message": "^1.1 || ^2.0",
  5402. "psr/log": "^1.1 || ^2.0 || ^3.0",
  5403. "yansongda/supports": "~4.0.10"
  5404. },
  5405. "require-dev": {
  5406. "friendsofphp/php-cs-fixer": "^3.44",
  5407. "guzzlehttp/guzzle": "^7.0",
  5408. "hyperf/pimple": "^2.2",
  5409. "mockery/mockery": "^1.4",
  5410. "monolog/monolog": "^2.2",
  5411. "phpstan/phpstan": "^1.0.0 || ^2.0.0",
  5412. "phpunit/phpunit": "^9.0",
  5413. "symfony/event-dispatcher": "^5.2.0",
  5414. "symfony/http-foundation": "^5.2.0",
  5415. "symfony/psr-http-message-bridge": "^2.1",
  5416. "symfony/var-dumper": "^5.1"
  5417. },
  5418. "suggest": {
  5419. "hyperf/pimple": "其它/无框架下使用 SDK,请安装,任选其一",
  5420. "illuminate/container": "其它/无框架下使用 SDK,请安装,任选其一"
  5421. },
  5422. "type": "library",
  5423. "autoload": {
  5424. "files": [
  5425. "src/Functions.php"
  5426. ],
  5427. "psr-4": {
  5428. "Yansongda\\Artful\\": "src"
  5429. }
  5430. },
  5431. "notification-url": "https://packagist.org/downloads/",
  5432. "license": [
  5433. "MIT"
  5434. ],
  5435. "authors": [
  5436. {
  5437. "name": "yansongda",
  5438. "email": "me@yansongda.cn"
  5439. }
  5440. ],
  5441. "description": "Artful 是一个简单易用的 API 请求框架 PHP Api RequesT Framwork U Like。",
  5442. "keywords": [
  5443. "api",
  5444. "artful",
  5445. "framework",
  5446. "request"
  5447. ],
  5448. "support": {
  5449. "homepage": "https://artful.yansongda.cn",
  5450. "issues": "https://github.com/yansongda/artful/issues",
  5451. "source": "https://github.com/yansongda/artful"
  5452. },
  5453. "time": "2025-01-09T12:39:39+00:00"
  5454. },
  5455. {
  5456. "name": "yansongda/pay",
  5457. "version": "v3.7.10",
  5458. "source": {
  5459. "type": "git",
  5460. "url": "https://github.com/yansongda/pay.git",
  5461. "reference": "0aea5b2ddcd3f017fc7e7124dd1d157b7810b16c"
  5462. },
  5463. "dist": {
  5464. "type": "zip",
  5465. "url": "https://api.github.com/repos/yansongda/pay/zipball/0aea5b2ddcd3f017fc7e7124dd1d157b7810b16c",
  5466. "reference": "0aea5b2ddcd3f017fc7e7124dd1d157b7810b16c",
  5467. "shasum": "",
  5468. "mirrors": [
  5469. {
  5470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5471. "preferred": true
  5472. }
  5473. ]
  5474. },
  5475. "require": {
  5476. "ext-bcmath": "*",
  5477. "ext-json": "*",
  5478. "ext-libxml": "*",
  5479. "ext-openssl": "*",
  5480. "ext-simplexml": "*",
  5481. "php": ">=8.0",
  5482. "yansongda/artful": "~1.1.1",
  5483. "yansongda/supports": "~4.0.10"
  5484. },
  5485. "conflict": {
  5486. "hyperf/framework": "<3.0"
  5487. },
  5488. "require-dev": {
  5489. "friendsofphp/php-cs-fixer": "^3.44",
  5490. "guzzlehttp/guzzle": "^7.0",
  5491. "hyperf/pimple": "^2.2",
  5492. "jetbrains/phpstorm-attributes": "^1.1",
  5493. "mockery/mockery": "^1.4",
  5494. "monolog/monolog": "^2.2",
  5495. "phpstan/phpstan": "^1.0.0",
  5496. "phpunit/phpunit": "^9.0",
  5497. "symfony/event-dispatcher": "^5.2.0",
  5498. "symfony/http-foundation": "^5.2.0",
  5499. "symfony/psr-http-message-bridge": "^2.1",
  5500. "symfony/var-dumper": "^5.1"
  5501. },
  5502. "type": "library",
  5503. "autoload": {
  5504. "files": [
  5505. "src/Functions.php"
  5506. ],
  5507. "psr-4": {
  5508. "Yansongda\\Pay\\": "src"
  5509. }
  5510. },
  5511. "notification-url": "https://packagist.org/downloads/",
  5512. "license": [
  5513. "MIT"
  5514. ],
  5515. "authors": [
  5516. {
  5517. "name": "yansongda",
  5518. "email": "me@yansongda.cn"
  5519. }
  5520. ],
  5521. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  5522. "keywords": [
  5523. "alipay",
  5524. "pay",
  5525. "wechat"
  5526. ],
  5527. "support": {
  5528. "homepage": "https://pay.yansongda.cn",
  5529. "issues": "https://github.com/yansongda/pay/issues",
  5530. "source": "https://github.com/yansongda/pay"
  5531. },
  5532. "time": "2024-09-11T03:25:00+00:00"
  5533. },
  5534. {
  5535. "name": "yansongda/supports",
  5536. "version": "v4.0.10",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/yansongda/supports.git",
  5540. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  5545. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  5546. "shasum": "",
  5547. "mirrors": [
  5548. {
  5549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5550. "preferred": true
  5551. }
  5552. ]
  5553. },
  5554. "require": {
  5555. "php": ">=8.0"
  5556. },
  5557. "require-dev": {
  5558. "friendsofphp/php-cs-fixer": "^3.0",
  5559. "mockery/mockery": "^1.4",
  5560. "phpstan/phpstan": "^1.1.0",
  5561. "phpunit/phpunit": "^9.0"
  5562. },
  5563. "suggest": {
  5564. "monolog/monolog": "Use logger",
  5565. "symfony/console": "Use stdout logger"
  5566. },
  5567. "type": "library",
  5568. "autoload": {
  5569. "files": [
  5570. "src/Functions.php"
  5571. ],
  5572. "psr-4": {
  5573. "Yansongda\\Supports\\": "src/"
  5574. }
  5575. },
  5576. "notification-url": "https://packagist.org/downloads/",
  5577. "license": [
  5578. "MIT"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "yansongda",
  5583. "email": "me@yansongda.cn"
  5584. }
  5585. ],
  5586. "description": "common components",
  5587. "keywords": [
  5588. "array",
  5589. "collection",
  5590. "config",
  5591. "support"
  5592. ],
  5593. "support": {
  5594. "issues": "https://github.com/yansongda/supports/issues",
  5595. "source": "https://github.com/yansongda/supports"
  5596. },
  5597. "time": "2024-06-09T15:49:21+00:00"
  5598. },
  5599. {
  5600. "name": "yly-openapi/yly-openapi-sdk",
  5601. "version": "1.0.2",
  5602. "source": {
  5603. "type": "git",
  5604. "url": "https://github.com/Qzm6826/yilianyun-php-sdk.git",
  5605. "reference": "26030adf8d75881d8837d3d52548a4a0917e7e3d"
  5606. },
  5607. "dist": {
  5608. "type": "zip",
  5609. "url": "https://api.github.com/repos/Qzm6826/yilianyun-php-sdk/zipball/26030adf8d75881d8837d3d52548a4a0917e7e3d",
  5610. "reference": "26030adf8d75881d8837d3d52548a4a0917e7e3d",
  5611. "shasum": "",
  5612. "mirrors": [
  5613. {
  5614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5615. "preferred": true
  5616. }
  5617. ]
  5618. },
  5619. "require": {
  5620. "php": ">=5.4.0"
  5621. },
  5622. "require-dev": {
  5623. "phpunit/phpunit": "^4.8"
  5624. },
  5625. "type": "library",
  5626. "autoload": {
  5627. "psr-4": {
  5628. "App\\": "Lib/"
  5629. }
  5630. },
  5631. "notification-url": "https://packagist.org/downloads/",
  5632. "license": [
  5633. "MIT"
  5634. ],
  5635. "authors": [
  5636. {
  5637. "name": "曲子陌",
  5638. "email": "lwy@yilianyun.net"
  5639. }
  5640. ],
  5641. "description": "yly-openapi-php-sdk",
  5642. "keywords": [
  5643. "yly-openapi-php-sdk"
  5644. ],
  5645. "support": {
  5646. "issues": "https://github.com/Qzm6826/yilianyun-php-sdk/issues",
  5647. "source": "https://github.com/Qzm6826/yilianyun-php-sdk/tree/1.0.2"
  5648. },
  5649. "time": "2021-01-19T08:55:59+00:00"
  5650. }
  5651. ],
  5652. "packages-dev": [
  5653. {
  5654. "name": "symfony/polyfill-php72",
  5655. "version": "v1.23.0",
  5656. "source": {
  5657. "type": "git",
  5658. "url": "https://github.com/symfony/polyfill-php72.git",
  5659. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  5660. },
  5661. "dist": {
  5662. "type": "zip",
  5663. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  5664. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  5665. "shasum": "",
  5666. "mirrors": [
  5667. {
  5668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5669. "preferred": true
  5670. }
  5671. ]
  5672. },
  5673. "require": {
  5674. "php": ">=7.1"
  5675. },
  5676. "type": "library",
  5677. "extra": {
  5678. "branch-alias": {
  5679. "dev-main": "1.23-dev"
  5680. },
  5681. "thanks": {
  5682. "name": "symfony/polyfill",
  5683. "url": "https://github.com/symfony/polyfill"
  5684. }
  5685. },
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Symfony\\Polyfill\\Php72\\": ""
  5689. },
  5690. "files": [
  5691. "bootstrap.php"
  5692. ]
  5693. },
  5694. "notification-url": "https://packagist.org/downloads/",
  5695. "license": [
  5696. "MIT"
  5697. ],
  5698. "authors": [
  5699. {
  5700. "name": "Nicolas Grekas",
  5701. "email": "p@tchwork.com"
  5702. },
  5703. {
  5704. "name": "Symfony Community",
  5705. "homepage": "https://symfony.com/contributors"
  5706. }
  5707. ],
  5708. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5709. "homepage": "https://symfony.com",
  5710. "keywords": [
  5711. "compatibility",
  5712. "polyfill",
  5713. "portable",
  5714. "shim"
  5715. ],
  5716. "support": {
  5717. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  5718. },
  5719. "funding": [
  5720. {
  5721. "url": "https://symfony.com/sponsor",
  5722. "type": "custom"
  5723. },
  5724. {
  5725. "url": "https://github.com/fabpot",
  5726. "type": "github"
  5727. },
  5728. {
  5729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5730. "type": "tidelift"
  5731. }
  5732. ],
  5733. "time": "2021-05-27T09:17:38+00:00"
  5734. },
  5735. {
  5736. "name": "symfony/var-dumper",
  5737. "version": "v4.4.27",
  5738. "source": {
  5739. "type": "git",
  5740. "url": "https://github.com/symfony/var-dumper.git",
  5741. "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba"
  5742. },
  5743. "dist": {
  5744. "type": "zip",
  5745. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/391d6d0e7a06ab54eb7c38fab29b8d174471b3ba",
  5746. "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba",
  5747. "shasum": "",
  5748. "mirrors": [
  5749. {
  5750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5751. "preferred": true
  5752. }
  5753. ]
  5754. },
  5755. "require": {
  5756. "php": ">=7.1.3",
  5757. "symfony/polyfill-mbstring": "~1.0",
  5758. "symfony/polyfill-php72": "~1.5",
  5759. "symfony/polyfill-php80": "^1.16"
  5760. },
  5761. "conflict": {
  5762. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  5763. "symfony/console": "<3.4"
  5764. },
  5765. "require-dev": {
  5766. "ext-iconv": "*",
  5767. "symfony/console": "^3.4|^4.0|^5.0",
  5768. "symfony/process": "^4.4|^5.0",
  5769. "twig/twig": "^1.43|^2.13|^3.0.4"
  5770. },
  5771. "suggest": {
  5772. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5773. "ext-intl": "To show region name in time zone dump",
  5774. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5775. },
  5776. "bin": [
  5777. "Resources/bin/var-dump-server"
  5778. ],
  5779. "type": "library",
  5780. "autoload": {
  5781. "files": [
  5782. "Resources/functions/dump.php"
  5783. ],
  5784. "psr-4": {
  5785. "Symfony\\Component\\VarDumper\\": ""
  5786. },
  5787. "exclude-from-classmap": [
  5788. "/Tests/"
  5789. ]
  5790. },
  5791. "notification-url": "https://packagist.org/downloads/",
  5792. "license": [
  5793. "MIT"
  5794. ],
  5795. "authors": [
  5796. {
  5797. "name": "Nicolas Grekas",
  5798. "email": "p@tchwork.com"
  5799. },
  5800. {
  5801. "name": "Symfony Community",
  5802. "homepage": "https://symfony.com/contributors"
  5803. }
  5804. ],
  5805. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5806. "homepage": "https://symfony.com",
  5807. "keywords": [
  5808. "debug",
  5809. "dump"
  5810. ],
  5811. "support": {
  5812. "source": "https://github.com/symfony/var-dumper/tree/v4.4.27"
  5813. },
  5814. "funding": [
  5815. {
  5816. "url": "https://symfony.com/sponsor",
  5817. "type": "custom"
  5818. },
  5819. {
  5820. "url": "https://github.com/fabpot",
  5821. "type": "github"
  5822. },
  5823. {
  5824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5825. "type": "tidelift"
  5826. }
  5827. ],
  5828. "time": "2021-07-23T15:41:52+00:00"
  5829. }
  5830. ],
  5831. "aliases": [],
  5832. "minimum-stability": "stable",
  5833. "stability-flags": [],
  5834. "prefer-stable": false,
  5835. "prefer-lowest": false,
  5836. "platform": {
  5837. "php": ">=8.0",
  5838. "ext-json": "*",
  5839. "ext-curl": "*",
  5840. "ext-openssl": "*",
  5841. "ext-mbstring": "*",
  5842. "ext-bcmath": "*",
  5843. "ext-sodium": "*"
  5844. },
  5845. "platform-dev": [],
  5846. "plugin-api-version": "2.0.0"
  5847. }