composer.lock 191 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277
  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": "e1fde01b79925b9f3a6658bdf3360f89",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/39ece8d385ce2f5e03718c693932d83ab0cb5972",
  20. "reference": "39ece8d385ce2f5e03718c693932d83ab0cb5972",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.3.0"
  65. },
  66. "time": "2022-07-12T02:52:50+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. "files": [
  124. "src/Functions.php"
  125. ],
  126. "psr-4": {
  127. "AlibabaCloud\\Client\\": "src"
  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/credentials",
  161. "version": "1.1.4",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/aliyun/credentials-php.git",
  165. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  170. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  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. "alibabacloud/tea": "^3.0",
  182. "ext-curl": "*",
  183. "ext-json": "*",
  184. "ext-libxml": "*",
  185. "ext-mbstring": "*",
  186. "ext-openssl": "*",
  187. "ext-simplexml": "*",
  188. "ext-xmlwriter": "*",
  189. "guzzlehttp/guzzle": "^6.3|^7.0",
  190. "php": ">=5.6"
  191. },
  192. "require-dev": {
  193. "composer/composer": "^1.8",
  194. "drupal/coder": "^8.3",
  195. "ext-dom": "*",
  196. "ext-pcre": "*",
  197. "ext-sockets": "*",
  198. "ext-spl": "*",
  199. "mikey179/vfsstream": "^1.6",
  200. "monolog/monolog": "^1.24",
  201. "phpunit/phpunit": "^4.8.35|^5.4.3",
  202. "psr/cache": "^1.0",
  203. "symfony/dotenv": "^3.4",
  204. "symfony/var-dumper": "^3.4"
  205. },
  206. "suggest": {
  207. "ext-sockets": "To use client-side monitoring"
  208. },
  209. "type": "library",
  210. "autoload": {
  211. "psr-4": {
  212. "AlibabaCloud\\Credentials\\": "src"
  213. }
  214. },
  215. "notification-url": "https://packagist.org/downloads/",
  216. "license": [
  217. "Apache-2.0"
  218. ],
  219. "authors": [
  220. {
  221. "name": "Alibaba Cloud SDK",
  222. "email": "sdk-team@alibabacloud.com",
  223. "homepage": "http://www.alibabacloud.com"
  224. }
  225. ],
  226. "description": "Alibaba Cloud Credentials for PHP",
  227. "homepage": "https://www.alibabacloud.com/",
  228. "keywords": [
  229. "alibaba",
  230. "alibabacloud",
  231. "aliyun",
  232. "client",
  233. "cloud",
  234. "credentials",
  235. "library",
  236. "sdk",
  237. "tool"
  238. ],
  239. "support": {
  240. "issues": "https://github.com/aliyun/credentials-php/issues",
  241. "source": "https://github.com/aliyun/credentials-php"
  242. },
  243. "time": "2021-06-08T10:49:34+00:00"
  244. },
  245. {
  246. "name": "alibabacloud/darabonba-openapi",
  247. "version": "0.2.6",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  251. "reference": "c64a2bafde3aaf8d11ba5aebfc08f59916b4c742"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/c64a2bafde3aaf8d11ba5aebfc08f59916b4c742",
  256. "reference": "c64a2bafde3aaf8d11ba5aebfc08f59916b4c742",
  257. "shasum": "",
  258. "mirrors": [
  259. {
  260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  261. "preferred": true
  262. }
  263. ]
  264. },
  265. "require": {
  266. "alibabacloud/credentials": "^1.1",
  267. "alibabacloud/gateway-spi": "^1",
  268. "alibabacloud/openapi-util": "^0.1.10",
  269. "alibabacloud/tea-utils": "^0.2.0",
  270. "alibabacloud/tea-xml": "^0.2",
  271. "php": ">5.5"
  272. },
  273. "type": "library",
  274. "autoload": {
  275. "psr-4": {
  276. "Darabonba\\OpenApi\\": "src"
  277. }
  278. },
  279. "notification-url": "https://packagist.org/downloads/",
  280. "license": [
  281. "Apache-2.0"
  282. ],
  283. "authors": [
  284. {
  285. "name": "Alibaba Cloud SDK",
  286. "email": "sdk-team@alibabacloud.com"
  287. }
  288. ],
  289. "description": "Alibaba Cloud OpenApi Client",
  290. "support": {
  291. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  292. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.6"
  293. },
  294. "time": "2022-07-20T08:38:03+00:00"
  295. },
  296. {
  297. "name": "alibabacloud/endpoint-util",
  298. "version": "0.1.1",
  299. "source": {
  300. "type": "git",
  301. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  302. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  303. },
  304. "dist": {
  305. "type": "zip",
  306. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  307. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  308. "shasum": "",
  309. "mirrors": [
  310. {
  311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  312. "preferred": true
  313. }
  314. ]
  315. },
  316. "require": {
  317. "php": ">5.5"
  318. },
  319. "require-dev": {
  320. "phpunit/phpunit": "^4.8.35|^5.4.3"
  321. },
  322. "type": "library",
  323. "autoload": {
  324. "psr-4": {
  325. "AlibabaCloud\\Endpoint\\": "src"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "Apache-2.0"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Alibaba Cloud SDK",
  335. "email": "sdk-team@alibabacloud.com"
  336. }
  337. ],
  338. "description": "Alibaba Cloud Endpoint Library for PHP",
  339. "support": {
  340. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  341. },
  342. "time": "2020-06-04T10:57:15+00:00"
  343. },
  344. {
  345. "name": "alibabacloud/gateway-spi",
  346. "version": "1.0.0",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  350. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  355. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  356. "shasum": "",
  357. "mirrors": [
  358. {
  359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  360. "preferred": true
  361. }
  362. ]
  363. },
  364. "require": {
  365. "alibabacloud/credentials": "^1.1",
  366. "php": ">5.5"
  367. },
  368. "type": "library",
  369. "autoload": {
  370. "psr-4": {
  371. "Darabonba\\GatewaySpi\\": "src"
  372. }
  373. },
  374. "notification-url": "https://packagist.org/downloads/",
  375. "license": [
  376. "Apache-2.0"
  377. ],
  378. "authors": [
  379. {
  380. "name": "Alibaba Cloud SDK",
  381. "email": "sdk-team@alibabacloud.com"
  382. }
  383. ],
  384. "description": "Alibaba Cloud Gateway SPI Client",
  385. "support": {
  386. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  387. },
  388. "time": "2022-07-14T05:31:35+00:00"
  389. },
  390. {
  391. "name": "alibabacloud/openapi-util",
  392. "version": "0.1.11",
  393. "source": {
  394. "type": "git",
  395. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  396. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c"
  397. },
  398. "dist": {
  399. "type": "zip",
  400. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/61ee137955a25c9f5f33170babb6071d4bccf12c",
  401. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c",
  402. "shasum": "",
  403. "mirrors": [
  404. {
  405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  406. "preferred": true
  407. }
  408. ]
  409. },
  410. "require": {
  411. "alibabacloud/tea": "^3.1",
  412. "alibabacloud/tea-utils": "^0.2",
  413. "lizhichao/one-sm": "^1.5",
  414. "php": ">5.5"
  415. },
  416. "require-dev": {
  417. "phpunit/phpunit": "^4.8.35|^5.4.3"
  418. },
  419. "type": "library",
  420. "autoload": {
  421. "psr-4": {
  422. "AlibabaCloud\\OpenApiUtil\\": "src"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "Apache-2.0"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Alibaba Cloud SDK",
  432. "email": "sdk-team@alibabacloud.com"
  433. }
  434. ],
  435. "description": "Alibaba Cloud OpenApi Util",
  436. "support": {
  437. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  438. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.1.11"
  439. },
  440. "time": "2021-12-28T07:57:21+00:00"
  441. },
  442. {
  443. "name": "alibabacloud/opensearch",
  444. "version": "1.8.958",
  445. "source": {
  446. "type": "git",
  447. "url": "https://github.com/alibabacloud-sdk-php/opensearch.git",
  448. "reference": "b2d58b90b55abb32e2ed52ea61638de6faab7e7c"
  449. },
  450. "dist": {
  451. "type": "zip",
  452. "url": "https://api.github.com/repos/alibabacloud-sdk-php/opensearch/zipball/b2d58b90b55abb32e2ed52ea61638de6faab7e7c",
  453. "reference": "b2d58b90b55abb32e2ed52ea61638de6faab7e7c",
  454. "shasum": "",
  455. "mirrors": [
  456. {
  457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  458. "preferred": true
  459. }
  460. ]
  461. },
  462. "require": {
  463. "alibabacloud/client": "^1.5",
  464. "php": ">=5.5"
  465. },
  466. "type": "library",
  467. "autoload": {
  468. "psr-4": {
  469. "AlibabaCloud\\OpenSearch\\": ""
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "Apache-2.0"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Alibaba Cloud SDK",
  479. "email": "sdk-team@alibabacloud.com",
  480. "homepage": "http://www.alibabacloud.com"
  481. }
  482. ],
  483. "description": "Alibaba Cloud OpenSearch SDK for PHP",
  484. "homepage": "https://www.alibabacloud.com/",
  485. "keywords": [
  486. "alibaba",
  487. "alibabacloud",
  488. "aliyun",
  489. "cloud",
  490. "library",
  491. "opensearch",
  492. "sdk"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/alibabacloud-sdk-php/opensearch/issues",
  496. "source": "https://github.com/alibabacloud-sdk-php/opensearch"
  497. },
  498. "time": "2021-04-29T09:14:19+00:00"
  499. },
  500. {
  501. "name": "alibabacloud/sdk",
  502. "version": "1.8.1392",
  503. "source": {
  504. "type": "git",
  505. "url": "https://github.com/aliyun/openapi-sdk-php.git",
  506. "reference": "90b26b8276d325e6930afd9ba4df0dedffcab8ff"
  507. },
  508. "dist": {
  509. "type": "zip",
  510. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php/zipball/90b26b8276d325e6930afd9ba4df0dedffcab8ff",
  511. "reference": "90b26b8276d325e6930afd9ba4df0dedffcab8ff",
  512. "shasum": "",
  513. "mirrors": [
  514. {
  515. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  516. "preferred": true
  517. }
  518. ]
  519. },
  520. "require": {
  521. "alibabacloud/client": "^1.5",
  522. "ext-curl": "*",
  523. "ext-json": "*",
  524. "ext-libxml": "*",
  525. "ext-mbstring": "*",
  526. "ext-openssl": "*",
  527. "ext-simplexml": "*",
  528. "ext-xmlwriter": "*",
  529. "php": ">=5.5"
  530. },
  531. "replace": {
  532. "alibabacloud/aas": "self.version",
  533. "alibabacloud/actiontrail": "self.version",
  534. "alibabacloud/adb": "self.version",
  535. "alibabacloud/aegis": "self.version",
  536. "alibabacloud/afs": "self.version",
  537. "alibabacloud/airec": "self.version",
  538. "alibabacloud/alidns": "self.version",
  539. "alibabacloud/alikafka": "self.version",
  540. "alibabacloud/alimt": "self.version",
  541. "alibabacloud/aliprobe": "self.version",
  542. "alibabacloud/aliyuncvc": "self.version",
  543. "alibabacloud/appmallsservice": "self.version",
  544. "alibabacloud/arms": "self.version",
  545. "alibabacloud/arms4finance": "self.version",
  546. "alibabacloud/baas": "self.version",
  547. "alibabacloud/batchcompute": "self.version",
  548. "alibabacloud/bss": "self.version",
  549. "alibabacloud/bssopenapi": "self.version",
  550. "alibabacloud/cas": "self.version",
  551. "alibabacloud/cbn": "self.version",
  552. "alibabacloud/ccc": "self.version",
  553. "alibabacloud/ccs": "self.version",
  554. "alibabacloud/cdn": "self.version",
  555. "alibabacloud/cds": "self.version",
  556. "alibabacloud/cf": "self.version",
  557. "alibabacloud/chatbot": "self.version",
  558. "alibabacloud/cloudapi": "self.version",
  559. "alibabacloud/cloudauth": "self.version",
  560. "alibabacloud/cloudesl": "self.version",
  561. "alibabacloud/cloudmarketing": "self.version",
  562. "alibabacloud/cloudphoto": "self.version",
  563. "alibabacloud/cloudwf": "self.version",
  564. "alibabacloud/cms": "self.version",
  565. "alibabacloud/commondriver": "self.version",
  566. "alibabacloud/companyreg": "self.version",
  567. "alibabacloud/cr": "self.version",
  568. "alibabacloud/crm": "self.version",
  569. "alibabacloud/cs": "self.version",
  570. "alibabacloud/csb": "self.version",
  571. "alibabacloud/cusanalyticsconline": "self.version",
  572. "alibabacloud/dataworkspublic": "self.version",
  573. "alibabacloud/dbs": "self.version",
  574. "alibabacloud/dcdn": "self.version",
  575. "alibabacloud/dds": "self.version",
  576. "alibabacloud/democenter": "self.version",
  577. "alibabacloud/dm": "self.version",
  578. "alibabacloud/dmsenterprise": "self.version",
  579. "alibabacloud/domain": "self.version",
  580. "alibabacloud/domainintl": "self.version",
  581. "alibabacloud/drcloud": "self.version",
  582. "alibabacloud/drds": "self.version",
  583. "alibabacloud/dts": "self.version",
  584. "alibabacloud/dybaseapi": "self.version",
  585. "alibabacloud/dyplsapi": "self.version",
  586. "alibabacloud/dypnsapi": "self.version",
  587. "alibabacloud/dysmsapi": "self.version",
  588. "alibabacloud/dyvmsapi": "self.version",
  589. "alibabacloud/eci": "self.version",
  590. "alibabacloud/ecs": "self.version",
  591. "alibabacloud/ecsinc": "self.version",
  592. "alibabacloud/edas": "self.version",
  593. "alibabacloud/ehpc": "self.version",
  594. "alibabacloud/elasticsearch": "self.version",
  595. "alibabacloud/emr": "self.version",
  596. "alibabacloud/ess": "self.version",
  597. "alibabacloud/facebody": "self.version",
  598. "alibabacloud/fnf": "self.version",
  599. "alibabacloud/foas": "self.version",
  600. "alibabacloud/ft": "self.version",
  601. "alibabacloud/goodstech": "self.version",
  602. "alibabacloud/gpdb": "self.version",
  603. "alibabacloud/green": "self.version",
  604. "alibabacloud/hbase": "self.version",
  605. "alibabacloud/hiknoengine": "self.version",
  606. "alibabacloud/hpc": "self.version",
  607. "alibabacloud/hsm": "self.version",
  608. "alibabacloud/httpdns": "self.version",
  609. "alibabacloud/idst": "self.version",
  610. "alibabacloud/imageaudit": "self.version",
  611. "alibabacloud/imageenhan": "self.version",
  612. "alibabacloud/imagerecog": "self.version",
  613. "alibabacloud/imagesearch": "self.version",
  614. "alibabacloud/imageseg": "self.version",
  615. "alibabacloud/imm": "self.version",
  616. "alibabacloud/industrybrain": "self.version",
  617. "alibabacloud/iot": "self.version",
  618. "alibabacloud/iqa": "self.version",
  619. "alibabacloud/itaas": "self.version",
  620. "alibabacloud/ivision": "self.version",
  621. "alibabacloud/ivpd": "self.version",
  622. "alibabacloud/jaq": "self.version",
  623. "alibabacloud/jarvis": "self.version",
  624. "alibabacloud/jarvispublic": "self.version",
  625. "alibabacloud/kms": "self.version",
  626. "alibabacloud/linkedmall": "self.version",
  627. "alibabacloud/linkface": "self.version",
  628. "alibabacloud/linkwan": "self.version",
  629. "alibabacloud/live": "self.version",
  630. "alibabacloud/lubancloud": "self.version",
  631. "alibabacloud/lubanruler": "self.version",
  632. "alibabacloud/market": "self.version",
  633. "alibabacloud/mopen": "self.version",
  634. "alibabacloud/mpserverless": "self.version",
  635. "alibabacloud/mts": "self.version",
  636. "alibabacloud/multimediaai": "self.version",
  637. "alibabacloud/nas": "self.version",
  638. "alibabacloud/netana": "self.version",
  639. "alibabacloud/nlp": "self.version",
  640. "alibabacloud/nlpautoml": "self.version",
  641. "alibabacloud/nlscloudmeta": "self.version",
  642. "alibabacloud/nlsfiletrans": "self.version",
  643. "alibabacloud/objectdet": "self.version",
  644. "alibabacloud/ocr": "self.version",
  645. "alibabacloud/ocs": "self.version",
  646. "alibabacloud/oms": "self.version",
  647. "alibabacloud/ons": "self.version",
  648. "alibabacloud/onsmqtt": "self.version",
  649. "alibabacloud/oos": "self.version",
  650. "alibabacloud/openanalytics": "self.version",
  651. "alibabacloud/ossadmin": "self.version",
  652. "alibabacloud/ots": "self.version",
  653. "alibabacloud/outboundbot": "self.version",
  654. "alibabacloud/petadata": "self.version",
  655. "alibabacloud/polardb": "self.version",
  656. "alibabacloud/productcatalog": "self.version",
  657. "alibabacloud/pts": "self.version",
  658. "alibabacloud/push": "self.version",
  659. "alibabacloud/pvtz": "self.version",
  660. "alibabacloud/qualitycheck": "self.version",
  661. "alibabacloud/ram": "self.version",
  662. "alibabacloud/rds": "self.version",
  663. "alibabacloud/reid": "self.version",
  664. "alibabacloud/retailcloud": "self.version",
  665. "alibabacloud/rkvstore": "self.version",
  666. "alibabacloud/ros": "self.version",
  667. "alibabacloud/rtc": "self.version",
  668. "alibabacloud/saf": "self.version",
  669. "alibabacloud/sas": "self.version",
  670. "alibabacloud/sasapi": "self.version",
  671. "alibabacloud/scdn": "self.version",
  672. "alibabacloud/schedulerx2": "self.version",
  673. "alibabacloud/skyeye": "self.version",
  674. "alibabacloud/slb": "self.version",
  675. "alibabacloud/smartag": "self.version",
  676. "alibabacloud/smc": "self.version",
  677. "alibabacloud/sms": "self.version",
  678. "alibabacloud/smsintl": "self.version",
  679. "alibabacloud/snsuapi": "self.version",
  680. "alibabacloud/sts": "self.version",
  681. "alibabacloud/taginner": "self.version",
  682. "alibabacloud/tesladam": "self.version",
  683. "alibabacloud/teslamaxcompute": "self.version",
  684. "alibabacloud/teslastream": "self.version",
  685. "alibabacloud/ubsms": "self.version",
  686. "alibabacloud/ubsmsinner": "self.version",
  687. "alibabacloud/uis": "self.version",
  688. "alibabacloud/unimkt": "self.version",
  689. "alibabacloud/visionai": "self.version",
  690. "alibabacloud/vod": "self.version",
  691. "alibabacloud/voicenavigator": "self.version",
  692. "alibabacloud/vpc": "self.version",
  693. "alibabacloud/vs": "self.version",
  694. "alibabacloud/wafopenapi": "self.version",
  695. "alibabacloud/welfareinner": "self.version",
  696. "alibabacloud/xspace": "self.version",
  697. "alibabacloud/xtrace": "self.version",
  698. "alibabacloud/yqbridge": "self.version",
  699. "alibabacloud/yundun": "self.version"
  700. },
  701. "require-dev": {
  702. "composer/composer": "^1.8",
  703. "league/climate": "^3.2.4",
  704. "phpunit/phpunit": "^4.8",
  705. "symfony/dotenv": "^3.4",
  706. "symfony/var-dumper": "^3.4"
  707. },
  708. "suggest": {
  709. "ext-sockets": "To use client-side monitoring"
  710. },
  711. "type": "library",
  712. "autoload": {
  713. "psr-4": {
  714. "AlibabaCloud\\": "src"
  715. }
  716. },
  717. "notification-url": "https://packagist.org/downloads/",
  718. "license": [
  719. "Apache-2.0"
  720. ],
  721. "authors": [
  722. {
  723. "name": "Alibaba Cloud SDK",
  724. "email": "sdk-team@alibabacloud.com",
  725. "homepage": "http://www.alibabacloud.com"
  726. }
  727. ],
  728. "description": "Alibaba Cloud SDK for PHP - Easier to Use Alibaba Cloud in your PHP project",
  729. "homepage": "https://www.alibabacloud.com/",
  730. "keywords": [
  731. "alibaba",
  732. "alibabacloud",
  733. "aliyun",
  734. "cloud",
  735. "library",
  736. "sdk"
  737. ],
  738. "support": {
  739. "issues": "https://github.com/aliyun/openapi-sdk-php/issues",
  740. "source": "https://github.com/aliyun/openapi-sdk-php"
  741. },
  742. "time": "2022-07-14T07:58:13+00:00"
  743. },
  744. {
  745. "name": "alibabacloud/sts-20150401",
  746. "version": "1.1.1",
  747. "source": {
  748. "type": "git",
  749. "url": "https://github.com/alibabacloud-sdk-php/sts-20150401.git",
  750. "reference": "1273545fb137dcaa63ea877dc7bc8204b534b6e5"
  751. },
  752. "dist": {
  753. "type": "zip",
  754. "url": "https://api.github.com/repos/alibabacloud-sdk-php/sts-20150401/zipball/1273545fb137dcaa63ea877dc7bc8204b534b6e5",
  755. "reference": "1273545fb137dcaa63ea877dc7bc8204b534b6e5",
  756. "shasum": "",
  757. "mirrors": [
  758. {
  759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  760. "preferred": true
  761. }
  762. ]
  763. },
  764. "require": {
  765. "alibabacloud/darabonba-openapi": "^0.2.5",
  766. "alibabacloud/endpoint-util": "^0.1.0",
  767. "alibabacloud/openapi-util": "^0.1.10",
  768. "alibabacloud/tea-utils": "^0.2.0",
  769. "php": ">5.5"
  770. },
  771. "type": "library",
  772. "autoload": {
  773. "psr-4": {
  774. "AlibabaCloud\\SDK\\Sts\\V20150401\\": "src"
  775. }
  776. },
  777. "notification-url": "https://packagist.org/downloads/",
  778. "license": [
  779. "Apache-2.0"
  780. ],
  781. "authors": [
  782. {
  783. "name": "Alibaba Cloud SDK",
  784. "email": "sdk-team@alibabacloud.com"
  785. }
  786. ],
  787. "description": "Alibaba Cloud Sts (20150401) SDK Library for PHP",
  788. "support": {
  789. "source": "https://github.com/alibabacloud-sdk-php/sts-20150401/tree/1.1.1"
  790. },
  791. "time": "2022-03-26T04:28:44+00:00"
  792. },
  793. {
  794. "name": "alibabacloud/tea",
  795. "version": "3.1.24",
  796. "source": {
  797. "type": "git",
  798. "url": "https://github.com/aliyun/tea-php.git",
  799. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb"
  800. },
  801. "dist": {
  802. "type": "zip",
  803. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  804. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  805. "shasum": "",
  806. "mirrors": [
  807. {
  808. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  809. "preferred": true
  810. }
  811. ]
  812. },
  813. "require": {
  814. "adbario/php-dot-notation": "^2.3",
  815. "ext-curl": "*",
  816. "ext-json": "*",
  817. "ext-libxml": "*",
  818. "ext-mbstring": "*",
  819. "ext-openssl": "*",
  820. "ext-simplexml": "*",
  821. "ext-xmlwriter": "*",
  822. "guzzlehttp/guzzle": "^6.3|^7.0",
  823. "php": ">=5.5"
  824. },
  825. "require-dev": {
  826. "phpunit/phpunit": "*",
  827. "symfony/dotenv": "^3.4",
  828. "symfony/var-dumper": "^3.4"
  829. },
  830. "suggest": {
  831. "ext-sockets": "To use client-side monitoring"
  832. },
  833. "type": "library",
  834. "autoload": {
  835. "psr-4": {
  836. "AlibabaCloud\\Tea\\": "src"
  837. }
  838. },
  839. "notification-url": "https://packagist.org/downloads/",
  840. "license": [
  841. "Apache-2.0"
  842. ],
  843. "authors": [
  844. {
  845. "name": "Alibaba Cloud SDK",
  846. "email": "sdk-team@alibabacloud.com",
  847. "homepage": "http://www.alibabacloud.com"
  848. }
  849. ],
  850. "description": "Client of Tea for PHP",
  851. "homepage": "https://www.alibabacloud.com/",
  852. "keywords": [
  853. "alibabacloud",
  854. "client",
  855. "cloud",
  856. "tea"
  857. ],
  858. "support": {
  859. "issues": "https://github.com/aliyun/tea-php/issues",
  860. "source": "https://github.com/aliyun/tea-php"
  861. },
  862. "time": "2022-07-18T11:27:29+00:00"
  863. },
  864. {
  865. "name": "alibabacloud/tea-utils",
  866. "version": "0.2.16",
  867. "source": {
  868. "type": "git",
  869. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  870. "reference": "ae10b306509a196e4af71803db710a0a05c54e60"
  871. },
  872. "dist": {
  873. "type": "zip",
  874. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/ae10b306509a196e4af71803db710a0a05c54e60",
  875. "reference": "ae10b306509a196e4af71803db710a0a05c54e60",
  876. "shasum": "",
  877. "mirrors": [
  878. {
  879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  880. "preferred": true
  881. }
  882. ]
  883. },
  884. "require": {
  885. "alibabacloud/tea": "^3.1",
  886. "php": ">5.5"
  887. },
  888. "type": "library",
  889. "autoload": {
  890. "psr-4": {
  891. "AlibabaCloud\\Tea\\Utils\\": "src"
  892. }
  893. },
  894. "notification-url": "https://packagist.org/downloads/",
  895. "license": [
  896. "Apache-2.0"
  897. ],
  898. "authors": [
  899. {
  900. "name": "Alibaba Cloud SDK",
  901. "email": "sdk-team@alibabacloud.com"
  902. }
  903. ],
  904. "description": "Alibaba Cloud Tea Utils for PHP",
  905. "support": {
  906. "issues": "https://github.com/aliyun/tea-util/issues",
  907. "source": "https://github.com/aliyun/tea-util"
  908. },
  909. "time": "2022-07-05T09:58:20+00:00"
  910. },
  911. {
  912. "name": "alibabacloud/tea-xml",
  913. "version": "0.2.3",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  917. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  922. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  923. "shasum": "",
  924. "mirrors": [
  925. {
  926. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  927. "preferred": true
  928. }
  929. ]
  930. },
  931. "require": {
  932. "php": ">5.5"
  933. },
  934. "require-dev": {
  935. "phpunit/phpunit": "^4.8.35|^5.4.3",
  936. "symfony/var-dumper": "*"
  937. },
  938. "type": "library",
  939. "autoload": {
  940. "psr-4": {
  941. "AlibabaCloud\\Tea\\XML\\": "src"
  942. }
  943. },
  944. "notification-url": "https://packagist.org/downloads/",
  945. "license": [
  946. "Apache-2.0"
  947. ],
  948. "authors": [
  949. {
  950. "name": "Alibaba Cloud SDK",
  951. "email": "sdk-team@alibabacloud.com"
  952. }
  953. ],
  954. "description": "Alibaba Cloud Tea XML Library for PHP",
  955. "support": {
  956. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.3"
  957. },
  958. "time": "2021-12-08T06:43:00+00:00"
  959. },
  960. {
  961. "name": "alibabacloud/vod-20170321",
  962. "version": "2.16.9",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/alibabacloud-sdk-php/vod-20170321.git",
  966. "reference": "0046a6941b332ee6a02e15d0c94e664796cd4b30"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/alibabacloud-sdk-php/vod-20170321/zipball/0046a6941b332ee6a02e15d0c94e664796cd4b30",
  971. "reference": "0046a6941b332ee6a02e15d0c94e664796cd4b30",
  972. "shasum": "",
  973. "mirrors": [
  974. {
  975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  976. "preferred": true
  977. }
  978. ]
  979. },
  980. "require": {
  981. "alibabacloud/darabonba-openapi": "^0.2.5",
  982. "alibabacloud/endpoint-util": "^0.1.0",
  983. "alibabacloud/openapi-util": "^0.1.10",
  984. "alibabacloud/tea-utils": "^0.2.0",
  985. "php": ">5.5"
  986. },
  987. "type": "library",
  988. "autoload": {
  989. "psr-4": {
  990. "AlibabaCloud\\SDK\\Vod\\V20170321\\": "src"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "Apache-2.0"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Alibaba Cloud SDK",
  1000. "email": "sdk-team@alibabacloud.com"
  1001. }
  1002. ],
  1003. "description": "Alibaba Cloud ApsaraVideo for VOD (20170321) SDK Library for PHP",
  1004. "support": {
  1005. "source": "https://github.com/alibabacloud-sdk-php/vod-20170321/tree/2.16.9"
  1006. },
  1007. "time": "2022-04-11T06:08:40+00:00"
  1008. },
  1009. {
  1010. "name": "aliyuncs/oss-sdk-php",
  1011. "version": "v2.5.0",
  1012. "source": {
  1013. "type": "git",
  1014. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  1015. "reference": "f0413667d765855eb0aaa728b596801464ffdb06"
  1016. },
  1017. "dist": {
  1018. "type": "zip",
  1019. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/f0413667d765855eb0aaa728b596801464ffdb06",
  1020. "reference": "f0413667d765855eb0aaa728b596801464ffdb06",
  1021. "shasum": "",
  1022. "mirrors": [
  1023. {
  1024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1025. "preferred": true
  1026. }
  1027. ]
  1028. },
  1029. "require": {
  1030. "php": ">=5.3"
  1031. },
  1032. "require-dev": {
  1033. "phpunit/phpunit": "*",
  1034. "satooshi/php-coveralls": "*"
  1035. },
  1036. "type": "library",
  1037. "autoload": {
  1038. "psr-4": {
  1039. "OSS\\": "src/OSS"
  1040. }
  1041. },
  1042. "notification-url": "https://packagist.org/downloads/",
  1043. "license": [
  1044. "MIT"
  1045. ],
  1046. "authors": [
  1047. {
  1048. "name": "Aliyuncs",
  1049. "homepage": "http://www.aliyun.com"
  1050. }
  1051. ],
  1052. "description": "Aliyun OSS SDK for PHP",
  1053. "homepage": "http://www.aliyun.com/product/oss/",
  1054. "support": {
  1055. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  1056. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.5.0"
  1057. },
  1058. "time": "2022-05-13T07:41:28+00:00"
  1059. },
  1060. {
  1061. "name": "bacon/bacon-qr-code",
  1062. "version": "2.0.7",
  1063. "source": {
  1064. "type": "git",
  1065. "url": "https://github.com/Bacon/BaconQrCode.git",
  1066. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c"
  1067. },
  1068. "dist": {
  1069. "type": "zip",
  1070. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  1071. "reference": "d70c840f68657ce49094b8d91f9ee0cc07fbf66c",
  1072. "shasum": "",
  1073. "mirrors": [
  1074. {
  1075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1076. "preferred": true
  1077. }
  1078. ]
  1079. },
  1080. "require": {
  1081. "dasprid/enum": "^1.0.3",
  1082. "ext-iconv": "*",
  1083. "php": "^7.1 || ^8.0"
  1084. },
  1085. "require-dev": {
  1086. "phly/keep-a-changelog": "^2.1",
  1087. "phpunit/phpunit": "^7 | ^8 | ^9",
  1088. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  1089. "squizlabs/php_codesniffer": "^3.4"
  1090. },
  1091. "suggest": {
  1092. "ext-imagick": "to generate QR code images"
  1093. },
  1094. "type": "library",
  1095. "autoload": {
  1096. "psr-4": {
  1097. "BaconQrCode\\": "src/"
  1098. }
  1099. },
  1100. "notification-url": "https://packagist.org/downloads/",
  1101. "license": [
  1102. "BSD-2-Clause"
  1103. ],
  1104. "authors": [
  1105. {
  1106. "name": "Ben Scholzen 'DASPRiD'",
  1107. "email": "mail@dasprids.de",
  1108. "homepage": "https://dasprids.de/",
  1109. "role": "Developer"
  1110. }
  1111. ],
  1112. "description": "BaconQrCode is a QR code generator for PHP.",
  1113. "homepage": "https://github.com/Bacon/BaconQrCode",
  1114. "support": {
  1115. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  1116. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.7"
  1117. },
  1118. "time": "2022-03-14T02:02:36+00:00"
  1119. },
  1120. {
  1121. "name": "clagiordano/weblibs-configmanager",
  1122. "version": "v1.5.0",
  1123. "source": {
  1124. "type": "git",
  1125. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  1126. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  1127. },
  1128. "dist": {
  1129. "type": "zip",
  1130. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  1131. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  1132. "shasum": "",
  1133. "mirrors": [
  1134. {
  1135. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1136. "preferred": true
  1137. }
  1138. ]
  1139. },
  1140. "require": {
  1141. "ext-json": "*",
  1142. "php": ">=5.4",
  1143. "symfony/yaml": "^2.8"
  1144. },
  1145. "require-dev": {
  1146. "clagiordano/phpunit-result-printer": "^1",
  1147. "php-coveralls/php-coveralls": "^1.1",
  1148. "phpunit/phpunit": "^4.8"
  1149. },
  1150. "type": "library",
  1151. "autoload": {
  1152. "psr-4": {
  1153. "clagiordano\\weblibs\\configmanager\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "LGPL-3.0-or-later"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "Claudio Giordano",
  1163. "email": "claudio.giordano@autistici.org",
  1164. "role": "Developer"
  1165. }
  1166. ],
  1167. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  1168. "keywords": [
  1169. "clagiordano",
  1170. "configuration",
  1171. "manager",
  1172. "tool",
  1173. "weblibs"
  1174. ],
  1175. "support": {
  1176. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  1177. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.5.0"
  1178. },
  1179. "time": "2021-07-12T15:27:21+00:00"
  1180. },
  1181. {
  1182. "name": "danielstjules/stringy",
  1183. "version": "3.1.0",
  1184. "source": {
  1185. "type": "git",
  1186. "url": "https://github.com/danielstjules/Stringy.git",
  1187. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  1188. },
  1189. "dist": {
  1190. "type": "zip",
  1191. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  1192. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  1193. "shasum": "",
  1194. "mirrors": [
  1195. {
  1196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1197. "preferred": true
  1198. }
  1199. ]
  1200. },
  1201. "require": {
  1202. "php": ">=5.4.0",
  1203. "symfony/polyfill-mbstring": "~1.1"
  1204. },
  1205. "require-dev": {
  1206. "phpunit/phpunit": "~4.0"
  1207. },
  1208. "type": "library",
  1209. "autoload": {
  1210. "files": [
  1211. "src/Create.php"
  1212. ],
  1213. "psr-4": {
  1214. "Stringy\\": "src/"
  1215. }
  1216. },
  1217. "notification-url": "https://packagist.org/downloads/",
  1218. "license": [
  1219. "MIT"
  1220. ],
  1221. "authors": [
  1222. {
  1223. "name": "Daniel St. Jules",
  1224. "email": "danielst.jules@gmail.com",
  1225. "homepage": "http://www.danielstjules.com"
  1226. }
  1227. ],
  1228. "description": "A string manipulation library with multibyte support",
  1229. "homepage": "https://github.com/danielstjules/Stringy",
  1230. "keywords": [
  1231. "UTF",
  1232. "helpers",
  1233. "manipulation",
  1234. "methods",
  1235. "multibyte",
  1236. "string",
  1237. "utf-8",
  1238. "utility",
  1239. "utils"
  1240. ],
  1241. "support": {
  1242. "issues": "https://github.com/danielstjules/Stringy/issues",
  1243. "source": "https://github.com/danielstjules/Stringy"
  1244. },
  1245. "time": "2017-06-12T01:10:27+00:00"
  1246. },
  1247. {
  1248. "name": "dasprid/enum",
  1249. "version": "1.0.3",
  1250. "source": {
  1251. "type": "git",
  1252. "url": "https://github.com/DASPRiD/Enum.git",
  1253. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  1254. },
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  1258. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  1259. "shasum": "",
  1260. "mirrors": [
  1261. {
  1262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1263. "preferred": true
  1264. }
  1265. ]
  1266. },
  1267. "require-dev": {
  1268. "phpunit/phpunit": "^7 | ^8 | ^9",
  1269. "squizlabs/php_codesniffer": "^3.4"
  1270. },
  1271. "type": "library",
  1272. "autoload": {
  1273. "psr-4": {
  1274. "DASPRiD\\Enum\\": "src/"
  1275. }
  1276. },
  1277. "notification-url": "https://packagist.org/downloads/",
  1278. "license": [
  1279. "BSD-2-Clause"
  1280. ],
  1281. "authors": [
  1282. {
  1283. "name": "Ben Scholzen 'DASPRiD'",
  1284. "email": "mail@dasprids.de",
  1285. "homepage": "https://dasprids.de/",
  1286. "role": "Developer"
  1287. }
  1288. ],
  1289. "description": "PHP 7.1 enum implementation",
  1290. "keywords": [
  1291. "enum",
  1292. "map"
  1293. ],
  1294. "support": {
  1295. "issues": "https://github.com/DASPRiD/Enum/issues",
  1296. "source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
  1297. },
  1298. "time": "2020-10-02T16:03:48+00:00"
  1299. },
  1300. {
  1301. "name": "easywechat-composer/easywechat-composer",
  1302. "version": "1.4.1",
  1303. "source": {
  1304. "type": "git",
  1305. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1306. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1307. },
  1308. "dist": {
  1309. "type": "zip",
  1310. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1311. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1312. "shasum": "",
  1313. "mirrors": [
  1314. {
  1315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1316. "preferred": true
  1317. }
  1318. ]
  1319. },
  1320. "require": {
  1321. "composer-plugin-api": "^1.0 || ^2.0",
  1322. "php": ">=7.0"
  1323. },
  1324. "require-dev": {
  1325. "composer/composer": "^1.0 || ^2.0",
  1326. "phpunit/phpunit": "^6.5 || ^7.0"
  1327. },
  1328. "type": "composer-plugin",
  1329. "extra": {
  1330. "class": "EasyWeChatComposer\\Plugin"
  1331. },
  1332. "autoload": {
  1333. "psr-4": {
  1334. "EasyWeChatComposer\\": "src/"
  1335. }
  1336. },
  1337. "notification-url": "https://packagist.org/downloads/",
  1338. "license": [
  1339. "MIT"
  1340. ],
  1341. "authors": [
  1342. {
  1343. "name": "张铭阳",
  1344. "email": "mingyoungcheung@gmail.com"
  1345. }
  1346. ],
  1347. "description": "The composer plugin for EasyWeChat",
  1348. "support": {
  1349. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1350. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1351. },
  1352. "time": "2021-07-05T04:03:22+00:00"
  1353. },
  1354. {
  1355. "name": "endroid/qr-code",
  1356. "version": "3.9.7",
  1357. "source": {
  1358. "type": "git",
  1359. "url": "https://github.com/endroid/qr-code.git",
  1360. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1361. },
  1362. "dist": {
  1363. "type": "zip",
  1364. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1365. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1366. "shasum": "",
  1367. "mirrors": [
  1368. {
  1369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1370. "preferred": true
  1371. }
  1372. ]
  1373. },
  1374. "require": {
  1375. "bacon/bacon-qr-code": "^2.0",
  1376. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1377. "myclabs/php-enum": "^1.5",
  1378. "php": "^7.3||^8.0",
  1379. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1380. "symfony/property-access": "^3.4||^4.4||^5.0"
  1381. },
  1382. "require-dev": {
  1383. "endroid/quality": "^1.5.2",
  1384. "setasign/fpdf": "^1.8"
  1385. },
  1386. "suggest": {
  1387. "ext-gd": "Required for generating PNG images",
  1388. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1389. "setasign/fpdf": "Required to use the FPDF writer.",
  1390. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1391. },
  1392. "type": "library",
  1393. "extra": {
  1394. "branch-alias": {
  1395. "dev-master": "3.x-dev"
  1396. }
  1397. },
  1398. "autoload": {
  1399. "psr-4": {
  1400. "Endroid\\QrCode\\": "src/"
  1401. }
  1402. },
  1403. "notification-url": "https://packagist.org/downloads/",
  1404. "license": [
  1405. "MIT"
  1406. ],
  1407. "authors": [
  1408. {
  1409. "name": "Jeroen van den Enden",
  1410. "email": "info@endroid.nl"
  1411. }
  1412. ],
  1413. "description": "Endroid QR Code",
  1414. "homepage": "https://github.com/endroid/qr-code",
  1415. "keywords": [
  1416. "bundle",
  1417. "code",
  1418. "endroid",
  1419. "php",
  1420. "qr",
  1421. "qrcode"
  1422. ],
  1423. "support": {
  1424. "issues": "https://github.com/endroid/qr-code/issues",
  1425. "source": "https://github.com/endroid/qr-code/tree/3.9.7"
  1426. },
  1427. "funding": [
  1428. {
  1429. "url": "https://github.com/endroid",
  1430. "type": "github"
  1431. }
  1432. ],
  1433. "time": "2021-04-20T19:10:54+00:00"
  1434. },
  1435. {
  1436. "name": "firebase/php-jwt",
  1437. "version": "v5.5.1",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/firebase/php-jwt.git",
  1441. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  1446. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  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": ">=5.3.0"
  1457. },
  1458. "require-dev": {
  1459. "phpunit/phpunit": ">=4.8 <=9"
  1460. },
  1461. "suggest": {
  1462. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1463. },
  1464. "type": "library",
  1465. "autoload": {
  1466. "psr-4": {
  1467. "Firebase\\JWT\\": "src"
  1468. }
  1469. },
  1470. "notification-url": "https://packagist.org/downloads/",
  1471. "license": [
  1472. "BSD-3-Clause"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Neuman Vong",
  1477. "email": "neuman+pear@twilio.com",
  1478. "role": "Developer"
  1479. },
  1480. {
  1481. "name": "Anant Narayanan",
  1482. "email": "anant@php.net",
  1483. "role": "Developer"
  1484. }
  1485. ],
  1486. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1487. "homepage": "https://github.com/firebase/php-jwt",
  1488. "keywords": [
  1489. "jwt",
  1490. "php"
  1491. ],
  1492. "support": {
  1493. "issues": "https://github.com/firebase/php-jwt/issues",
  1494. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  1495. },
  1496. "time": "2021-11-08T20:18:51+00:00"
  1497. },
  1498. {
  1499. "name": "guzzlehttp/guzzle",
  1500. "version": "7.4.5",
  1501. "source": {
  1502. "type": "git",
  1503. "url": "https://github.com/guzzle/guzzle.git",
  1504. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  1505. },
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1509. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1510. "shasum": "",
  1511. "mirrors": [
  1512. {
  1513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1514. "preferred": true
  1515. }
  1516. ]
  1517. },
  1518. "require": {
  1519. "ext-json": "*",
  1520. "guzzlehttp/promises": "^1.5",
  1521. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1522. "php": "^7.2.5 || ^8.0",
  1523. "psr/http-client": "^1.0",
  1524. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1525. },
  1526. "provide": {
  1527. "psr/http-client-implementation": "1.0"
  1528. },
  1529. "require-dev": {
  1530. "bamarni/composer-bin-plugin": "^1.4.1",
  1531. "ext-curl": "*",
  1532. "php-http/client-integration-tests": "^3.0",
  1533. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1534. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1535. },
  1536. "suggest": {
  1537. "ext-curl": "Required for CURL handler support",
  1538. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1539. "psr/log": "Required for using the Log middleware"
  1540. },
  1541. "type": "library",
  1542. "extra": {
  1543. "branch-alias": {
  1544. "dev-master": "7.4-dev"
  1545. }
  1546. },
  1547. "autoload": {
  1548. "files": [
  1549. "src/functions_include.php"
  1550. ],
  1551. "psr-4": {
  1552. "GuzzleHttp\\": "src/"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "Graham Campbell",
  1562. "email": "hello@gjcampbell.co.uk",
  1563. "homepage": "https://github.com/GrahamCampbell"
  1564. },
  1565. {
  1566. "name": "Michael Dowling",
  1567. "email": "mtdowling@gmail.com",
  1568. "homepage": "https://github.com/mtdowling"
  1569. },
  1570. {
  1571. "name": "Jeremy Lindblom",
  1572. "email": "jeremeamia@gmail.com",
  1573. "homepage": "https://github.com/jeremeamia"
  1574. },
  1575. {
  1576. "name": "George Mponos",
  1577. "email": "gmponos@gmail.com",
  1578. "homepage": "https://github.com/gmponos"
  1579. },
  1580. {
  1581. "name": "Tobias Nyholm",
  1582. "email": "tobias.nyholm@gmail.com",
  1583. "homepage": "https://github.com/Nyholm"
  1584. },
  1585. {
  1586. "name": "Márk Sági-Kazár",
  1587. "email": "mark.sagikazar@gmail.com",
  1588. "homepage": "https://github.com/sagikazarmark"
  1589. },
  1590. {
  1591. "name": "Tobias Schultze",
  1592. "email": "webmaster@tubo-world.de",
  1593. "homepage": "https://github.com/Tobion"
  1594. }
  1595. ],
  1596. "description": "Guzzle is a PHP HTTP client library",
  1597. "keywords": [
  1598. "client",
  1599. "curl",
  1600. "framework",
  1601. "http",
  1602. "http client",
  1603. "psr-18",
  1604. "psr-7",
  1605. "rest",
  1606. "web service"
  1607. ],
  1608. "support": {
  1609. "issues": "https://github.com/guzzle/guzzle/issues",
  1610. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  1611. },
  1612. "funding": [
  1613. {
  1614. "url": "https://github.com/GrahamCampbell",
  1615. "type": "github"
  1616. },
  1617. {
  1618. "url": "https://github.com/Nyholm",
  1619. "type": "github"
  1620. },
  1621. {
  1622. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1623. "type": "tidelift"
  1624. }
  1625. ],
  1626. "time": "2022-06-20T22:16:13+00:00"
  1627. },
  1628. {
  1629. "name": "guzzlehttp/promises",
  1630. "version": "1.5.1",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/guzzle/promises.git",
  1634. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1639. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1640. "shasum": "",
  1641. "mirrors": [
  1642. {
  1643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1644. "preferred": true
  1645. }
  1646. ]
  1647. },
  1648. "require": {
  1649. "php": ">=5.5"
  1650. },
  1651. "require-dev": {
  1652. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "branch-alias": {
  1657. "dev-master": "1.5-dev"
  1658. }
  1659. },
  1660. "autoload": {
  1661. "files": [
  1662. "src/functions_include.php"
  1663. ],
  1664. "psr-4": {
  1665. "GuzzleHttp\\Promise\\": "src/"
  1666. }
  1667. },
  1668. "notification-url": "https://packagist.org/downloads/",
  1669. "license": [
  1670. "MIT"
  1671. ],
  1672. "authors": [
  1673. {
  1674. "name": "Graham Campbell",
  1675. "email": "hello@gjcampbell.co.uk",
  1676. "homepage": "https://github.com/GrahamCampbell"
  1677. },
  1678. {
  1679. "name": "Michael Dowling",
  1680. "email": "mtdowling@gmail.com",
  1681. "homepage": "https://github.com/mtdowling"
  1682. },
  1683. {
  1684. "name": "Tobias Nyholm",
  1685. "email": "tobias.nyholm@gmail.com",
  1686. "homepage": "https://github.com/Nyholm"
  1687. },
  1688. {
  1689. "name": "Tobias Schultze",
  1690. "email": "webmaster@tubo-world.de",
  1691. "homepage": "https://github.com/Tobion"
  1692. }
  1693. ],
  1694. "description": "Guzzle promises library",
  1695. "keywords": [
  1696. "promise"
  1697. ],
  1698. "support": {
  1699. "issues": "https://github.com/guzzle/promises/issues",
  1700. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1701. },
  1702. "funding": [
  1703. {
  1704. "url": "https://github.com/GrahamCampbell",
  1705. "type": "github"
  1706. },
  1707. {
  1708. "url": "https://github.com/Nyholm",
  1709. "type": "github"
  1710. },
  1711. {
  1712. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1713. "type": "tidelift"
  1714. }
  1715. ],
  1716. "time": "2021-10-22T20:56:57+00:00"
  1717. },
  1718. {
  1719. "name": "guzzlehttp/psr7",
  1720. "version": "2.4.0",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://github.com/guzzle/psr7.git",
  1724. "reference": "13388f00956b1503577598873fffb5ae994b5737"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://api.github.com/repos/guzzle/psr7/zipball/13388f00956b1503577598873fffb5ae994b5737",
  1729. "reference": "13388f00956b1503577598873fffb5ae994b5737",
  1730. "shasum": "",
  1731. "mirrors": [
  1732. {
  1733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1734. "preferred": true
  1735. }
  1736. ]
  1737. },
  1738. "require": {
  1739. "php": "^7.2.5 || ^8.0",
  1740. "psr/http-factory": "^1.0",
  1741. "psr/http-message": "^1.0",
  1742. "ralouphie/getallheaders": "^3.0"
  1743. },
  1744. "provide": {
  1745. "psr/http-factory-implementation": "1.0",
  1746. "psr/http-message-implementation": "1.0"
  1747. },
  1748. "require-dev": {
  1749. "bamarni/composer-bin-plugin": "^1.4.1",
  1750. "http-interop/http-factory-tests": "^0.9",
  1751. "phpunit/phpunit": "^8.5.8 || ^9.3.10"
  1752. },
  1753. "suggest": {
  1754. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1755. },
  1756. "type": "library",
  1757. "extra": {
  1758. "branch-alias": {
  1759. "dev-master": "2.4-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "GuzzleHttp\\Psr7\\": "src/"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "authors": [
  1772. {
  1773. "name": "Graham Campbell",
  1774. "email": "hello@gjcampbell.co.uk",
  1775. "homepage": "https://github.com/GrahamCampbell"
  1776. },
  1777. {
  1778. "name": "Michael Dowling",
  1779. "email": "mtdowling@gmail.com",
  1780. "homepage": "https://github.com/mtdowling"
  1781. },
  1782. {
  1783. "name": "George Mponos",
  1784. "email": "gmponos@gmail.com",
  1785. "homepage": "https://github.com/gmponos"
  1786. },
  1787. {
  1788. "name": "Tobias Nyholm",
  1789. "email": "tobias.nyholm@gmail.com",
  1790. "homepage": "https://github.com/Nyholm"
  1791. },
  1792. {
  1793. "name": "Márk Sági-Kazár",
  1794. "email": "mark.sagikazar@gmail.com",
  1795. "homepage": "https://github.com/sagikazarmark"
  1796. },
  1797. {
  1798. "name": "Tobias Schultze",
  1799. "email": "webmaster@tubo-world.de",
  1800. "homepage": "https://github.com/Tobion"
  1801. },
  1802. {
  1803. "name": "Márk Sági-Kazár",
  1804. "email": "mark.sagikazar@gmail.com",
  1805. "homepage": "https://sagikazarmark.hu"
  1806. }
  1807. ],
  1808. "description": "PSR-7 message implementation that also provides common utility methods",
  1809. "keywords": [
  1810. "http",
  1811. "message",
  1812. "psr-7",
  1813. "request",
  1814. "response",
  1815. "stream",
  1816. "uri",
  1817. "url"
  1818. ],
  1819. "support": {
  1820. "issues": "https://github.com/guzzle/psr7/issues",
  1821. "source": "https://github.com/guzzle/psr7/tree/2.4.0"
  1822. },
  1823. "funding": [
  1824. {
  1825. "url": "https://github.com/GrahamCampbell",
  1826. "type": "github"
  1827. },
  1828. {
  1829. "url": "https://github.com/Nyholm",
  1830. "type": "github"
  1831. },
  1832. {
  1833. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1834. "type": "tidelift"
  1835. }
  1836. ],
  1837. "time": "2022-06-20T21:43:11+00:00"
  1838. },
  1839. {
  1840. "name": "hg/apidoc",
  1841. "version": "v1.1.2",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/HGthecode/thinkphp-apidoc.git",
  1845. "reference": "4925ddf39c22f48acca702843d53bbb70a4687a4"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/HGthecode/thinkphp-apidoc/zipball/4925ddf39c22f48acca702843d53bbb70a4687a4",
  1850. "reference": "4925ddf39c22f48acca702843d53bbb70a4687a4",
  1851. "shasum": "",
  1852. "mirrors": [
  1853. {
  1854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1855. "preferred": true
  1856. }
  1857. ]
  1858. },
  1859. "require": {
  1860. "php": ">=5.6"
  1861. },
  1862. "type": "think-extend",
  1863. "extra": {
  1864. "think": {
  1865. "services": [
  1866. "hg\\apidoc\\Service"
  1867. ],
  1868. "config": {
  1869. "apidoc": "src/config.php"
  1870. }
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "hg\\apidoc\\": "src/"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "authors": [
  1883. {
  1884. "name": "hg-code",
  1885. "email": "376401263@qq.com"
  1886. }
  1887. ],
  1888. "description": "thinkphp API文档自动生成",
  1889. "keywords": [
  1890. "apidoc",
  1891. "api文档",
  1892. "php接口文档",
  1893. "thinkphp",
  1894. "thinkphp6",
  1895. "接口文档",
  1896. "注释生成",
  1897. "自动生成"
  1898. ],
  1899. "support": {
  1900. "issues": "https://github.com/HGthecode/thinkphp-apidoc/issues",
  1901. "source": "https://github.com/HGthecode/thinkphp-apidoc/tree/v1.1.2"
  1902. },
  1903. "time": "2021-02-20T02:40:45+00:00"
  1904. },
  1905. {
  1906. "name": "jpush/jpush",
  1907. "version": "v3.6.8",
  1908. "source": {
  1909. "type": "git",
  1910. "url": "https://github.com/jpush/jpush-api-php-client.git",
  1911. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c"
  1912. },
  1913. "dist": {
  1914. "type": "zip",
  1915. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  1916. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  1917. "shasum": "",
  1918. "mirrors": [
  1919. {
  1920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1921. "preferred": true
  1922. }
  1923. ]
  1924. },
  1925. "require": {
  1926. "ext-curl": "*",
  1927. "php": ">=5.3.3"
  1928. },
  1929. "require-dev": {
  1930. "phpunit/phpunit": "*"
  1931. },
  1932. "type": "library",
  1933. "autoload": {
  1934. "psr-4": {
  1935. "JPush\\": "src/JPush/"
  1936. }
  1937. },
  1938. "notification-url": "https://packagist.org/downloads/",
  1939. "license": [
  1940. "MIT"
  1941. ],
  1942. "authors": [
  1943. {
  1944. "name": "JPush",
  1945. "email": "support@jpush.cn",
  1946. "homepage": "https://www.jpush.cn/",
  1947. "role": "Developer"
  1948. }
  1949. ],
  1950. "description": "JPush API PHP Client",
  1951. "homepage": "https://github.com/jpush/jpush-api-php-client",
  1952. "support": {
  1953. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  1954. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.8"
  1955. },
  1956. "time": "2021-08-12T07:43:39+00:00"
  1957. },
  1958. {
  1959. "name": "khanamiryan/qrcode-detector-decoder",
  1960. "version": "1.0.5.2",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1964. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/04fdd58d86a387065f707dc6d3cc304c719910c1",
  1969. "reference": "04fdd58d86a387065f707dc6d3cc304c719910c1",
  1970. "shasum": "",
  1971. "mirrors": [
  1972. {
  1973. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1974. "preferred": true
  1975. }
  1976. ]
  1977. },
  1978. "require": {
  1979. "php": ">=5.6"
  1980. },
  1981. "require-dev": {
  1982. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  1983. },
  1984. "type": "library",
  1985. "autoload": {
  1986. "files": [
  1987. "lib/Common/customFunctions.php"
  1988. ],
  1989. "psr-4": {
  1990. "Zxing\\": "lib/"
  1991. }
  1992. },
  1993. "notification-url": "https://packagist.org/downloads/",
  1994. "license": [
  1995. "MIT",
  1996. "Apache-2.0"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "Ashot Khanamiryan",
  2001. "email": "a.khanamiryan@gmail.com",
  2002. "homepage": "https://github.com/khanamiryan",
  2003. "role": "Developer"
  2004. }
  2005. ],
  2006. "description": "QR code decoder / reader",
  2007. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  2008. "keywords": [
  2009. "barcode",
  2010. "qr",
  2011. "zxing"
  2012. ],
  2013. "support": {
  2014. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  2015. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5.2"
  2016. },
  2017. "time": "2021-07-13T18:46:38+00:00"
  2018. },
  2019. {
  2020. "name": "lizhichao/one-sm",
  2021. "version": "1.10",
  2022. "source": {
  2023. "type": "git",
  2024. "url": "https://github.com/lizhichao/sm.git",
  2025. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2026. },
  2027. "dist": {
  2028. "type": "zip",
  2029. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2030. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2031. "shasum": "",
  2032. "mirrors": [
  2033. {
  2034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2035. "preferred": true
  2036. }
  2037. ]
  2038. },
  2039. "require": {
  2040. "php": ">=5.6"
  2041. },
  2042. "type": "library",
  2043. "autoload": {
  2044. "psr-4": {
  2045. "OneSm\\": "src/"
  2046. }
  2047. },
  2048. "notification-url": "https://packagist.org/downloads/",
  2049. "license": [
  2050. "Apache-2.0"
  2051. ],
  2052. "authors": [
  2053. {
  2054. "name": "tanszhe",
  2055. "email": "1018595261@qq.com"
  2056. }
  2057. ],
  2058. "description": "国密sm3",
  2059. "keywords": [
  2060. "php",
  2061. "sm3"
  2062. ],
  2063. "support": {
  2064. "issues": "https://github.com/lizhichao/sm/issues",
  2065. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2066. },
  2067. "funding": [
  2068. {
  2069. "url": "https://www.vicsdf.com/img/w.jpg",
  2070. "type": "custom"
  2071. },
  2072. {
  2073. "url": "https://www.vicsdf.com/img/z.jpg",
  2074. "type": "custom"
  2075. }
  2076. ],
  2077. "time": "2021-05-26T06:19:22+00:00"
  2078. },
  2079. {
  2080. "name": "maniac/easemob-php",
  2081. "version": "1.0.0",
  2082. "source": {
  2083. "type": "git",
  2084. "url": "https://github.com/easemob/im-php-server-sdk.git",
  2085. "reference": "36b550328c9911957becde2fd62b9379ba45865c"
  2086. },
  2087. "dist": {
  2088. "type": "zip",
  2089. "url": "https://api.github.com/repos/easemob/im-php-server-sdk/zipball/36b550328c9911957becde2fd62b9379ba45865c",
  2090. "reference": "36b550328c9911957becde2fd62b9379ba45865c",
  2091. "shasum": "",
  2092. "mirrors": [
  2093. {
  2094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2095. "preferred": true
  2096. }
  2097. ]
  2098. },
  2099. "require": {
  2100. "php": ">=5.3.3"
  2101. },
  2102. "type": "library",
  2103. "autoload": {
  2104. "files": [
  2105. "src/functions.php"
  2106. ],
  2107. "psr-4": {
  2108. "tests\\": "tests/",
  2109. "Easemob\\": "src/"
  2110. }
  2111. },
  2112. "notification-url": "https://packagist.org/downloads/",
  2113. "license": [
  2114. "MIT"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "maniac",
  2119. "email": "maniac.liu@easemob.com"
  2120. }
  2121. ],
  2122. "description": "PHP Server SDK for IM.",
  2123. "support": {
  2124. "issues": "https://github.com/easemob/im-php-server-sdk/issues",
  2125. "source": "https://github.com/easemob/im-php-server-sdk/tree/1.0.0"
  2126. },
  2127. "time": "2022-06-13T07:32:04+00:00"
  2128. },
  2129. {
  2130. "name": "monolog/monolog",
  2131. "version": "2.8.0",
  2132. "source": {
  2133. "type": "git",
  2134. "url": "https://github.com/Seldaek/monolog.git",
  2135. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50"
  2136. },
  2137. "dist": {
  2138. "type": "zip",
  2139. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50",
  2140. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  2141. "shasum": "",
  2142. "mirrors": [
  2143. {
  2144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2145. "preferred": true
  2146. }
  2147. ]
  2148. },
  2149. "require": {
  2150. "php": ">=7.2",
  2151. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2152. },
  2153. "provide": {
  2154. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2155. },
  2156. "require-dev": {
  2157. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2158. "doctrine/couchdb": "~1.0@dev",
  2159. "elasticsearch/elasticsearch": "^7 || ^8",
  2160. "ext-json": "*",
  2161. "graylog2/gelf-php": "^1.4.2",
  2162. "guzzlehttp/guzzle": "^7.4",
  2163. "guzzlehttp/psr7": "^2.2",
  2164. "mongodb/mongodb": "^1.8",
  2165. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2166. "phpspec/prophecy": "^1.15",
  2167. "phpstan/phpstan": "^0.12.91",
  2168. "phpunit/phpunit": "^8.5.14",
  2169. "predis/predis": "^1.1 || ^2.0",
  2170. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2171. "ruflin/elastica": "^7",
  2172. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2173. "symfony/mailer": "^5.4 || ^6",
  2174. "symfony/mime": "^5.4 || ^6"
  2175. },
  2176. "suggest": {
  2177. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2178. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2179. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2180. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2181. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2182. "ext-mbstring": "Allow to work properly with unicode symbols",
  2183. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2184. "ext-openssl": "Required to send log messages using SSL",
  2185. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2186. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2187. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2188. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2189. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2190. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2191. },
  2192. "type": "library",
  2193. "extra": {
  2194. "branch-alias": {
  2195. "dev-main": "2.x-dev"
  2196. }
  2197. },
  2198. "autoload": {
  2199. "psr-4": {
  2200. "Monolog\\": "src/Monolog"
  2201. }
  2202. },
  2203. "notification-url": "https://packagist.org/downloads/",
  2204. "license": [
  2205. "MIT"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "Jordi Boggiano",
  2210. "email": "j.boggiano@seld.be",
  2211. "homepage": "https://seld.be"
  2212. }
  2213. ],
  2214. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2215. "homepage": "https://github.com/Seldaek/monolog",
  2216. "keywords": [
  2217. "log",
  2218. "logging",
  2219. "psr-3"
  2220. ],
  2221. "support": {
  2222. "issues": "https://github.com/Seldaek/monolog/issues",
  2223. "source": "https://github.com/Seldaek/monolog/tree/2.8.0"
  2224. },
  2225. "funding": [
  2226. {
  2227. "url": "https://github.com/Seldaek",
  2228. "type": "github"
  2229. },
  2230. {
  2231. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2232. "type": "tidelift"
  2233. }
  2234. ],
  2235. "time": "2022-07-24T11:55:47+00:00"
  2236. },
  2237. {
  2238. "name": "mtdowling/jmespath.php",
  2239. "version": "2.6.1",
  2240. "source": {
  2241. "type": "git",
  2242. "url": "https://github.com/jmespath/jmespath.php.git",
  2243. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  2244. },
  2245. "dist": {
  2246. "type": "zip",
  2247. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  2248. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  2249. "shasum": "",
  2250. "mirrors": [
  2251. {
  2252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2253. "preferred": true
  2254. }
  2255. ]
  2256. },
  2257. "require": {
  2258. "php": "^5.4 || ^7.0 || ^8.0",
  2259. "symfony/polyfill-mbstring": "^1.17"
  2260. },
  2261. "require-dev": {
  2262. "composer/xdebug-handler": "^1.4 || ^2.0",
  2263. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  2264. },
  2265. "bin": [
  2266. "bin/jp.php"
  2267. ],
  2268. "type": "library",
  2269. "extra": {
  2270. "branch-alias": {
  2271. "dev-master": "2.6-dev"
  2272. }
  2273. },
  2274. "autoload": {
  2275. "files": [
  2276. "src/JmesPath.php"
  2277. ],
  2278. "psr-4": {
  2279. "JmesPath\\": "src/"
  2280. }
  2281. },
  2282. "notification-url": "https://packagist.org/downloads/",
  2283. "license": [
  2284. "MIT"
  2285. ],
  2286. "authors": [
  2287. {
  2288. "name": "Michael Dowling",
  2289. "email": "mtdowling@gmail.com",
  2290. "homepage": "https://github.com/mtdowling"
  2291. }
  2292. ],
  2293. "description": "Declaratively specify how to extract elements from a JSON document",
  2294. "keywords": [
  2295. "json",
  2296. "jsonpath"
  2297. ],
  2298. "support": {
  2299. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2300. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  2301. },
  2302. "time": "2021-06-14T00:11:39+00:00"
  2303. },
  2304. {
  2305. "name": "myclabs/php-enum",
  2306. "version": "1.6.6",
  2307. "source": {
  2308. "type": "git",
  2309. "url": "https://github.com/myclabs/php-enum.git",
  2310. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  2311. },
  2312. "dist": {
  2313. "type": "zip",
  2314. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  2315. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  2316. "shasum": "",
  2317. "mirrors": [
  2318. {
  2319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2320. "preferred": true
  2321. }
  2322. ]
  2323. },
  2324. "require": {
  2325. "ext-json": "*",
  2326. "php": ">=5.4"
  2327. },
  2328. "require-dev": {
  2329. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  2330. "squizlabs/php_codesniffer": "1.*"
  2331. },
  2332. "type": "library",
  2333. "autoload": {
  2334. "psr-4": {
  2335. "MyCLabs\\Enum\\": "src/"
  2336. }
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "MIT"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "PHP Enum contributors",
  2345. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2346. }
  2347. ],
  2348. "description": "PHP Enum implementation",
  2349. "homepage": "http://github.com/myclabs/php-enum",
  2350. "keywords": [
  2351. "enum"
  2352. ],
  2353. "support": {
  2354. "issues": "https://github.com/myclabs/php-enum/issues",
  2355. "source": "https://github.com/myclabs/php-enum/tree/master"
  2356. },
  2357. "time": "2019-02-04T21:18:49+00:00"
  2358. },
  2359. {
  2360. "name": "overtrue/socialite",
  2361. "version": "2.0.24",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://github.com/overtrue/socialite.git",
  2365. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  2370. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  2371. "shasum": "",
  2372. "mirrors": [
  2373. {
  2374. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2375. "preferred": true
  2376. }
  2377. ]
  2378. },
  2379. "require": {
  2380. "ext-json": "*",
  2381. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  2382. "php": ">=5.6",
  2383. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  2384. },
  2385. "require-dev": {
  2386. "mockery/mockery": "~1.2",
  2387. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  2388. },
  2389. "type": "library",
  2390. "autoload": {
  2391. "psr-4": {
  2392. "Overtrue\\Socialite\\": "src/"
  2393. }
  2394. },
  2395. "notification-url": "https://packagist.org/downloads/",
  2396. "license": [
  2397. "MIT"
  2398. ],
  2399. "authors": [
  2400. {
  2401. "name": "overtrue",
  2402. "email": "anzhengchao@gmail.com"
  2403. }
  2404. ],
  2405. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  2406. "keywords": [
  2407. "login",
  2408. "oauth",
  2409. "qq",
  2410. "social",
  2411. "wechat",
  2412. "weibo"
  2413. ],
  2414. "support": {
  2415. "issues": "https://github.com/overtrue/socialite/issues",
  2416. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  2417. },
  2418. "funding": [
  2419. {
  2420. "url": "https://www.patreon.com/overtrue",
  2421. "type": "patreon"
  2422. }
  2423. ],
  2424. "time": "2021-05-13T16:04:48+00:00"
  2425. },
  2426. {
  2427. "name": "overtrue/wechat",
  2428. "version": "4.5.0",
  2429. "source": {
  2430. "type": "git",
  2431. "url": "https://github.com/w7corp/easywechat.git",
  2432. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776"
  2433. },
  2434. "dist": {
  2435. "type": "zip",
  2436. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  2437. "reference": "04a940f97d6812a67bb8d5f2dbaebf9ad78ae776",
  2438. "shasum": "",
  2439. "mirrors": [
  2440. {
  2441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2442. "preferred": true
  2443. }
  2444. ]
  2445. },
  2446. "require": {
  2447. "easywechat-composer/easywechat-composer": "^1.1",
  2448. "ext-fileinfo": "*",
  2449. "ext-openssl": "*",
  2450. "ext-simplexml": "*",
  2451. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  2452. "monolog/monolog": "^1.22 || ^2.0",
  2453. "overtrue/socialite": "~2.0",
  2454. "php": ">=7.2",
  2455. "pimple/pimple": "^3.0",
  2456. "psr/simple-cache": "^1.0",
  2457. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  2458. "symfony/event-dispatcher": "^4.3 || ^5.0",
  2459. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  2460. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  2461. },
  2462. "require-dev": {
  2463. "friendsofphp/php-cs-fixer": "^2.15",
  2464. "mikey179/vfsstream": "^1.6",
  2465. "mockery/mockery": "^1.2.3",
  2466. "phpstan/phpstan": "^0.12.0",
  2467. "phpunit/phpunit": "^7.5"
  2468. },
  2469. "type": "library",
  2470. "autoload": {
  2471. "files": [
  2472. "src/Kernel/Support/Helpers.php",
  2473. "src/Kernel/Helpers.php"
  2474. ],
  2475. "psr-4": {
  2476. "EasyWeChat\\": "src/"
  2477. }
  2478. },
  2479. "notification-url": "https://packagist.org/downloads/",
  2480. "license": [
  2481. "MIT"
  2482. ],
  2483. "authors": [
  2484. {
  2485. "name": "overtrue",
  2486. "email": "anzhengchao@gmail.com"
  2487. }
  2488. ],
  2489. "description": "微信SDK",
  2490. "keywords": [
  2491. "easywechat",
  2492. "sdk",
  2493. "wechat",
  2494. "weixin",
  2495. "weixin-sdk"
  2496. ],
  2497. "support": {
  2498. "issues": "https://github.com/w7corp/easywechat/issues",
  2499. "source": "https://github.com/w7corp/easywechat/tree/4.5.0"
  2500. },
  2501. "funding": [
  2502. {
  2503. "url": "https://github.com/overtrue",
  2504. "type": "github"
  2505. }
  2506. ],
  2507. "abandoned": "w7corp/easywechat",
  2508. "time": "2021-12-27T13:56:47+00:00"
  2509. },
  2510. {
  2511. "name": "phpoffice/phpexcel",
  2512. "version": "1.8.2",
  2513. "source": {
  2514. "type": "git",
  2515. "url": "https://github.com/PHPOffice/PHPExcel.git",
  2516. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  2517. },
  2518. "dist": {
  2519. "type": "zip",
  2520. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  2521. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  2522. "shasum": "",
  2523. "mirrors": [
  2524. {
  2525. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2526. "preferred": true
  2527. }
  2528. ]
  2529. },
  2530. "require": {
  2531. "ext-mbstring": "*",
  2532. "ext-xml": "*",
  2533. "ext-xmlwriter": "*",
  2534. "php": "^5.2|^7.0"
  2535. },
  2536. "require-dev": {
  2537. "squizlabs/php_codesniffer": "2.*"
  2538. },
  2539. "type": "library",
  2540. "autoload": {
  2541. "psr-0": {
  2542. "PHPExcel": "Classes/"
  2543. }
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "LGPL-2.1"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Maarten Balliauw",
  2552. "homepage": "http://blog.maartenballiauw.be"
  2553. },
  2554. {
  2555. "name": "Erik Tilt"
  2556. },
  2557. {
  2558. "name": "Franck Lefevre",
  2559. "homepage": "http://rootslabs.net"
  2560. },
  2561. {
  2562. "name": "Mark Baker",
  2563. "homepage": "http://markbakeruk.net"
  2564. }
  2565. ],
  2566. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2567. "homepage": "https://github.com/PHPOffice/PHPExcel",
  2568. "keywords": [
  2569. "OpenXML",
  2570. "excel",
  2571. "php",
  2572. "spreadsheet",
  2573. "xls",
  2574. "xlsx"
  2575. ],
  2576. "support": {
  2577. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  2578. "source": "https://github.com/PHPOffice/PHPExcel/tree/master"
  2579. },
  2580. "abandoned": "phpoffice/phpspreadsheet",
  2581. "time": "2018-11-22T23:07:24+00:00"
  2582. },
  2583. {
  2584. "name": "pimple/pimple",
  2585. "version": "v3.5.0",
  2586. "source": {
  2587. "type": "git",
  2588. "url": "https://github.com/silexphp/Pimple.git",
  2589. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  2590. },
  2591. "dist": {
  2592. "type": "zip",
  2593. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2594. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  2595. "shasum": "",
  2596. "mirrors": [
  2597. {
  2598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2599. "preferred": true
  2600. }
  2601. ]
  2602. },
  2603. "require": {
  2604. "php": ">=7.2.5",
  2605. "psr/container": "^1.1 || ^2.0"
  2606. },
  2607. "require-dev": {
  2608. "symfony/phpunit-bridge": "^5.4@dev"
  2609. },
  2610. "type": "library",
  2611. "extra": {
  2612. "branch-alias": {
  2613. "dev-master": "3.4.x-dev"
  2614. }
  2615. },
  2616. "autoload": {
  2617. "psr-0": {
  2618. "Pimple": "src/"
  2619. }
  2620. },
  2621. "notification-url": "https://packagist.org/downloads/",
  2622. "license": [
  2623. "MIT"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "Fabien Potencier",
  2628. "email": "fabien@symfony.com"
  2629. }
  2630. ],
  2631. "description": "Pimple, a simple Dependency Injection Container",
  2632. "homepage": "https://pimple.symfony.com",
  2633. "keywords": [
  2634. "container",
  2635. "dependency injection"
  2636. ],
  2637. "support": {
  2638. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  2639. },
  2640. "time": "2021-10-28T11:13:42+00:00"
  2641. },
  2642. {
  2643. "name": "psr/cache",
  2644. "version": "1.0.1",
  2645. "source": {
  2646. "type": "git",
  2647. "url": "https://github.com/php-fig/cache.git",
  2648. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2649. },
  2650. "dist": {
  2651. "type": "zip",
  2652. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2653. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2654. "shasum": "",
  2655. "mirrors": [
  2656. {
  2657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2658. "preferred": true
  2659. }
  2660. ]
  2661. },
  2662. "require": {
  2663. "php": ">=5.3.0"
  2664. },
  2665. "type": "library",
  2666. "extra": {
  2667. "branch-alias": {
  2668. "dev-master": "1.0.x-dev"
  2669. }
  2670. },
  2671. "autoload": {
  2672. "psr-4": {
  2673. "Psr\\Cache\\": "src/"
  2674. }
  2675. },
  2676. "notification-url": "https://packagist.org/downloads/",
  2677. "license": [
  2678. "MIT"
  2679. ],
  2680. "authors": [
  2681. {
  2682. "name": "PHP-FIG",
  2683. "homepage": "http://www.php-fig.org/"
  2684. }
  2685. ],
  2686. "description": "Common interface for caching libraries",
  2687. "keywords": [
  2688. "cache",
  2689. "psr",
  2690. "psr-6"
  2691. ],
  2692. "support": {
  2693. "source": "https://github.com/php-fig/cache/tree/master"
  2694. },
  2695. "time": "2016-08-06T20:24:11+00:00"
  2696. },
  2697. {
  2698. "name": "psr/container",
  2699. "version": "2.0.1",
  2700. "source": {
  2701. "type": "git",
  2702. "url": "https://github.com/php-fig/container.git",
  2703. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef"
  2704. },
  2705. "dist": {
  2706. "type": "zip",
  2707. "url": "https://api.github.com/repos/php-fig/container/zipball/2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  2708. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  2709. "shasum": "",
  2710. "mirrors": [
  2711. {
  2712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2713. "preferred": true
  2714. }
  2715. ]
  2716. },
  2717. "require": {
  2718. "php": ">=7.2.0"
  2719. },
  2720. "type": "library",
  2721. "extra": {
  2722. "branch-alias": {
  2723. "dev-master": "2.0.x-dev"
  2724. }
  2725. },
  2726. "autoload": {
  2727. "psr-4": {
  2728. "Psr\\Container\\": "src/"
  2729. }
  2730. },
  2731. "notification-url": "https://packagist.org/downloads/",
  2732. "license": [
  2733. "MIT"
  2734. ],
  2735. "authors": [
  2736. {
  2737. "name": "PHP-FIG",
  2738. "homepage": "https://www.php-fig.org/"
  2739. }
  2740. ],
  2741. "description": "Common Container Interface (PHP FIG PSR-11)",
  2742. "homepage": "https://github.com/php-fig/container",
  2743. "keywords": [
  2744. "PSR-11",
  2745. "container",
  2746. "container-interface",
  2747. "container-interop",
  2748. "psr"
  2749. ],
  2750. "support": {
  2751. "issues": "https://github.com/php-fig/container/issues",
  2752. "source": "https://github.com/php-fig/container/tree/2.0.1"
  2753. },
  2754. "time": "2021-03-24T13:40:57+00:00"
  2755. },
  2756. {
  2757. "name": "psr/event-dispatcher",
  2758. "version": "1.0.0",
  2759. "source": {
  2760. "type": "git",
  2761. "url": "https://github.com/php-fig/event-dispatcher.git",
  2762. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2763. },
  2764. "dist": {
  2765. "type": "zip",
  2766. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2767. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2768. "shasum": "",
  2769. "mirrors": [
  2770. {
  2771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2772. "preferred": true
  2773. }
  2774. ]
  2775. },
  2776. "require": {
  2777. "php": ">=7.2.0"
  2778. },
  2779. "type": "library",
  2780. "extra": {
  2781. "branch-alias": {
  2782. "dev-master": "1.0.x-dev"
  2783. }
  2784. },
  2785. "autoload": {
  2786. "psr-4": {
  2787. "Psr\\EventDispatcher\\": "src/"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "PHP-FIG",
  2797. "homepage": "http://www.php-fig.org/"
  2798. }
  2799. ],
  2800. "description": "Standard interfaces for event handling.",
  2801. "keywords": [
  2802. "events",
  2803. "psr",
  2804. "psr-14"
  2805. ],
  2806. "support": {
  2807. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2808. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2809. },
  2810. "time": "2019-01-08T18:20:26+00:00"
  2811. },
  2812. {
  2813. "name": "psr/http-client",
  2814. "version": "1.0.1",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/php-fig/http-client.git",
  2818. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2823. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  2824. "shasum": "",
  2825. "mirrors": [
  2826. {
  2827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2828. "preferred": true
  2829. }
  2830. ]
  2831. },
  2832. "require": {
  2833. "php": "^7.0 || ^8.0",
  2834. "psr/http-message": "^1.0"
  2835. },
  2836. "type": "library",
  2837. "extra": {
  2838. "branch-alias": {
  2839. "dev-master": "1.0.x-dev"
  2840. }
  2841. },
  2842. "autoload": {
  2843. "psr-4": {
  2844. "Psr\\Http\\Client\\": "src/"
  2845. }
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "MIT"
  2850. ],
  2851. "authors": [
  2852. {
  2853. "name": "PHP-FIG",
  2854. "homepage": "http://www.php-fig.org/"
  2855. }
  2856. ],
  2857. "description": "Common interface for HTTP clients",
  2858. "homepage": "https://github.com/php-fig/http-client",
  2859. "keywords": [
  2860. "http",
  2861. "http-client",
  2862. "psr",
  2863. "psr-18"
  2864. ],
  2865. "support": {
  2866. "source": "https://github.com/php-fig/http-client/tree/master"
  2867. },
  2868. "time": "2020-06-29T06:28:15+00:00"
  2869. },
  2870. {
  2871. "name": "psr/http-factory",
  2872. "version": "1.0.1",
  2873. "source": {
  2874. "type": "git",
  2875. "url": "https://github.com/php-fig/http-factory.git",
  2876. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  2877. },
  2878. "dist": {
  2879. "type": "zip",
  2880. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2881. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  2882. "shasum": "",
  2883. "mirrors": [
  2884. {
  2885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2886. "preferred": true
  2887. }
  2888. ]
  2889. },
  2890. "require": {
  2891. "php": ">=7.0.0",
  2892. "psr/http-message": "^1.0"
  2893. },
  2894. "type": "library",
  2895. "extra": {
  2896. "branch-alias": {
  2897. "dev-master": "1.0.x-dev"
  2898. }
  2899. },
  2900. "autoload": {
  2901. "psr-4": {
  2902. "Psr\\Http\\Message\\": "src/"
  2903. }
  2904. },
  2905. "notification-url": "https://packagist.org/downloads/",
  2906. "license": [
  2907. "MIT"
  2908. ],
  2909. "authors": [
  2910. {
  2911. "name": "PHP-FIG",
  2912. "homepage": "http://www.php-fig.org/"
  2913. }
  2914. ],
  2915. "description": "Common interfaces for PSR-7 HTTP message factories",
  2916. "keywords": [
  2917. "factory",
  2918. "http",
  2919. "message",
  2920. "psr",
  2921. "psr-17",
  2922. "psr-7",
  2923. "request",
  2924. "response"
  2925. ],
  2926. "support": {
  2927. "source": "https://github.com/php-fig/http-factory/tree/master"
  2928. },
  2929. "time": "2019-04-30T12:38:16+00:00"
  2930. },
  2931. {
  2932. "name": "psr/http-message",
  2933. "version": "1.0.1",
  2934. "source": {
  2935. "type": "git",
  2936. "url": "https://github.com/php-fig/http-message.git",
  2937. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2938. },
  2939. "dist": {
  2940. "type": "zip",
  2941. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2942. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2943. "shasum": "",
  2944. "mirrors": [
  2945. {
  2946. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2947. "preferred": true
  2948. }
  2949. ]
  2950. },
  2951. "require": {
  2952. "php": ">=5.3.0"
  2953. },
  2954. "type": "library",
  2955. "extra": {
  2956. "branch-alias": {
  2957. "dev-master": "1.0.x-dev"
  2958. }
  2959. },
  2960. "autoload": {
  2961. "psr-4": {
  2962. "Psr\\Http\\Message\\": "src/"
  2963. }
  2964. },
  2965. "notification-url": "https://packagist.org/downloads/",
  2966. "license": [
  2967. "MIT"
  2968. ],
  2969. "authors": [
  2970. {
  2971. "name": "PHP-FIG",
  2972. "homepage": "http://www.php-fig.org/"
  2973. }
  2974. ],
  2975. "description": "Common interface for HTTP messages",
  2976. "homepage": "https://github.com/php-fig/http-message",
  2977. "keywords": [
  2978. "http",
  2979. "http-message",
  2980. "psr",
  2981. "psr-7",
  2982. "request",
  2983. "response"
  2984. ],
  2985. "support": {
  2986. "source": "https://github.com/php-fig/http-message/tree/master"
  2987. },
  2988. "time": "2016-08-06T14:39:51+00:00"
  2989. },
  2990. {
  2991. "name": "psr/log",
  2992. "version": "1.1.4",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://github.com/php-fig/log.git",
  2996. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3001. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3002. "shasum": "",
  3003. "mirrors": [
  3004. {
  3005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3006. "preferred": true
  3007. }
  3008. ]
  3009. },
  3010. "require": {
  3011. "php": ">=5.3.0"
  3012. },
  3013. "type": "library",
  3014. "extra": {
  3015. "branch-alias": {
  3016. "dev-master": "1.1.x-dev"
  3017. }
  3018. },
  3019. "autoload": {
  3020. "psr-4": {
  3021. "Psr\\Log\\": "Psr/Log/"
  3022. }
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "PHP-FIG",
  3031. "homepage": "https://www.php-fig.org/"
  3032. }
  3033. ],
  3034. "description": "Common interface for logging libraries",
  3035. "homepage": "https://github.com/php-fig/log",
  3036. "keywords": [
  3037. "log",
  3038. "psr",
  3039. "psr-3"
  3040. ],
  3041. "support": {
  3042. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3043. },
  3044. "time": "2021-05-03T11:20:27+00:00"
  3045. },
  3046. {
  3047. "name": "psr/simple-cache",
  3048. "version": "1.0.1",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/php-fig/simple-cache.git",
  3052. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3057. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3058. "shasum": "",
  3059. "mirrors": [
  3060. {
  3061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3062. "preferred": true
  3063. }
  3064. ]
  3065. },
  3066. "require": {
  3067. "php": ">=5.3.0"
  3068. },
  3069. "type": "library",
  3070. "extra": {
  3071. "branch-alias": {
  3072. "dev-master": "1.0.x-dev"
  3073. }
  3074. },
  3075. "autoload": {
  3076. "psr-4": {
  3077. "Psr\\SimpleCache\\": "src/"
  3078. }
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "MIT"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "PHP-FIG",
  3087. "homepage": "http://www.php-fig.org/"
  3088. }
  3089. ],
  3090. "description": "Common interfaces for simple caching",
  3091. "keywords": [
  3092. "cache",
  3093. "caching",
  3094. "psr",
  3095. "psr-16",
  3096. "simple-cache"
  3097. ],
  3098. "support": {
  3099. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3100. },
  3101. "time": "2017-10-23T01:57:42+00:00"
  3102. },
  3103. {
  3104. "name": "qiniu/php-sdk",
  3105. "version": "v7.6.0",
  3106. "source": {
  3107. "type": "git",
  3108. "url": "https://github.com/qiniu/php-sdk.git",
  3109. "reference": "57033fab64c92f8c7ae165222dd958553741e711"
  3110. },
  3111. "dist": {
  3112. "type": "zip",
  3113. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/57033fab64c92f8c7ae165222dd958553741e711",
  3114. "reference": "57033fab64c92f8c7ae165222dd958553741e711",
  3115. "shasum": "",
  3116. "mirrors": [
  3117. {
  3118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3119. "preferred": true
  3120. }
  3121. ]
  3122. },
  3123. "require": {
  3124. "myclabs/php-enum": "1.6.6",
  3125. "php": ">=5.3.3"
  3126. },
  3127. "require-dev": {
  3128. "paragonie/random_compat": ">=2",
  3129. "phpunit/phpunit": "~4.0",
  3130. "squizlabs/php_codesniffer": "~3.6"
  3131. },
  3132. "type": "library",
  3133. "autoload": {
  3134. "files": [
  3135. "src/Qiniu/functions.php"
  3136. ],
  3137. "psr-4": {
  3138. "Qiniu\\": "src/Qiniu"
  3139. }
  3140. },
  3141. "notification-url": "https://packagist.org/downloads/",
  3142. "license": [
  3143. "MIT"
  3144. ],
  3145. "authors": [
  3146. {
  3147. "name": "Qiniu",
  3148. "email": "sdk@qiniu.com",
  3149. "homepage": "http://www.qiniu.com"
  3150. }
  3151. ],
  3152. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  3153. "homepage": "http://developer.qiniu.com/",
  3154. "keywords": [
  3155. "cloud",
  3156. "qiniu",
  3157. "sdk",
  3158. "storage"
  3159. ],
  3160. "support": {
  3161. "issues": "https://github.com/qiniu/php-sdk/issues",
  3162. "source": "https://github.com/qiniu/php-sdk/tree/v7.6.0"
  3163. },
  3164. "time": "2022-06-08T10:05:47+00:00"
  3165. },
  3166. {
  3167. "name": "ralouphie/getallheaders",
  3168. "version": "3.0.3",
  3169. "source": {
  3170. "type": "git",
  3171. "url": "https://github.com/ralouphie/getallheaders.git",
  3172. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3173. },
  3174. "dist": {
  3175. "type": "zip",
  3176. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3177. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3178. "shasum": "",
  3179. "mirrors": [
  3180. {
  3181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3182. "preferred": true
  3183. }
  3184. ]
  3185. },
  3186. "require": {
  3187. "php": ">=5.6"
  3188. },
  3189. "require-dev": {
  3190. "php-coveralls/php-coveralls": "^2.1",
  3191. "phpunit/phpunit": "^5 || ^6.5"
  3192. },
  3193. "type": "library",
  3194. "autoload": {
  3195. "files": [
  3196. "src/getallheaders.php"
  3197. ]
  3198. },
  3199. "notification-url": "https://packagist.org/downloads/",
  3200. "license": [
  3201. "MIT"
  3202. ],
  3203. "authors": [
  3204. {
  3205. "name": "Ralph Khattar",
  3206. "email": "ralph.khattar@gmail.com"
  3207. }
  3208. ],
  3209. "description": "A polyfill for getallheaders.",
  3210. "support": {
  3211. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3212. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3213. },
  3214. "time": "2019-03-08T08:55:37+00:00"
  3215. },
  3216. {
  3217. "name": "symfony/cache",
  3218. "version": "v5.4.10",
  3219. "source": {
  3220. "type": "git",
  3221. "url": "https://github.com/symfony/cache.git",
  3222. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14"
  3223. },
  3224. "dist": {
  3225. "type": "zip",
  3226. "url": "https://api.github.com/repos/symfony/cache/zipball/c4e387b739022fd4b20abd8edb2143c44c5daa14",
  3227. "reference": "c4e387b739022fd4b20abd8edb2143c44c5daa14",
  3228. "shasum": "",
  3229. "mirrors": [
  3230. {
  3231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3232. "preferred": true
  3233. }
  3234. ]
  3235. },
  3236. "require": {
  3237. "php": ">=7.2.5",
  3238. "psr/cache": "^1.0|^2.0",
  3239. "psr/log": "^1.1|^2|^3",
  3240. "symfony/cache-contracts": "^1.1.7|^2",
  3241. "symfony/deprecation-contracts": "^2.1|^3",
  3242. "symfony/polyfill-php73": "^1.9",
  3243. "symfony/polyfill-php80": "^1.16",
  3244. "symfony/service-contracts": "^1.1|^2|^3",
  3245. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  3246. },
  3247. "conflict": {
  3248. "doctrine/dbal": "<2.13.1",
  3249. "symfony/dependency-injection": "<4.4",
  3250. "symfony/http-kernel": "<4.4",
  3251. "symfony/var-dumper": "<4.4"
  3252. },
  3253. "provide": {
  3254. "psr/cache-implementation": "1.0|2.0",
  3255. "psr/simple-cache-implementation": "1.0|2.0",
  3256. "symfony/cache-implementation": "1.0|2.0"
  3257. },
  3258. "require-dev": {
  3259. "cache/integration-tests": "dev-master",
  3260. "doctrine/cache": "^1.6|^2.0",
  3261. "doctrine/dbal": "^2.13.1|^3.0",
  3262. "predis/predis": "^1.1",
  3263. "psr/simple-cache": "^1.0|^2.0",
  3264. "symfony/config": "^4.4|^5.0|^6.0",
  3265. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3266. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3267. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3268. "symfony/messenger": "^4.4|^5.0|^6.0",
  3269. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3270. },
  3271. "type": "library",
  3272. "autoload": {
  3273. "psr-4": {
  3274. "Symfony\\Component\\Cache\\": ""
  3275. },
  3276. "exclude-from-classmap": [
  3277. "/Tests/"
  3278. ]
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "MIT"
  3283. ],
  3284. "authors": [
  3285. {
  3286. "name": "Nicolas Grekas",
  3287. "email": "p@tchwork.com"
  3288. },
  3289. {
  3290. "name": "Symfony Community",
  3291. "homepage": "https://symfony.com/contributors"
  3292. }
  3293. ],
  3294. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  3295. "homepage": "https://symfony.com",
  3296. "keywords": [
  3297. "caching",
  3298. "psr6"
  3299. ],
  3300. "support": {
  3301. "source": "https://github.com/symfony/cache/tree/v5.4.10"
  3302. },
  3303. "funding": [
  3304. {
  3305. "url": "https://symfony.com/sponsor",
  3306. "type": "custom"
  3307. },
  3308. {
  3309. "url": "https://github.com/fabpot",
  3310. "type": "github"
  3311. },
  3312. {
  3313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3314. "type": "tidelift"
  3315. }
  3316. ],
  3317. "time": "2022-06-19T12:03:50+00:00"
  3318. },
  3319. {
  3320. "name": "symfony/cache-contracts",
  3321. "version": "v2.5.2",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/symfony/cache-contracts.git",
  3325. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  3330. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  3331. "shasum": "",
  3332. "mirrors": [
  3333. {
  3334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3335. "preferred": true
  3336. }
  3337. ]
  3338. },
  3339. "require": {
  3340. "php": ">=7.2.5",
  3341. "psr/cache": "^1.0|^2.0|^3.0"
  3342. },
  3343. "suggest": {
  3344. "symfony/cache-implementation": ""
  3345. },
  3346. "type": "library",
  3347. "extra": {
  3348. "branch-alias": {
  3349. "dev-main": "2.5-dev"
  3350. },
  3351. "thanks": {
  3352. "name": "symfony/contracts",
  3353. "url": "https://github.com/symfony/contracts"
  3354. }
  3355. },
  3356. "autoload": {
  3357. "psr-4": {
  3358. "Symfony\\Contracts\\Cache\\": ""
  3359. }
  3360. },
  3361. "notification-url": "https://packagist.org/downloads/",
  3362. "license": [
  3363. "MIT"
  3364. ],
  3365. "authors": [
  3366. {
  3367. "name": "Nicolas Grekas",
  3368. "email": "p@tchwork.com"
  3369. },
  3370. {
  3371. "name": "Symfony Community",
  3372. "homepage": "https://symfony.com/contributors"
  3373. }
  3374. ],
  3375. "description": "Generic abstractions related to caching",
  3376. "homepage": "https://symfony.com",
  3377. "keywords": [
  3378. "abstractions",
  3379. "contracts",
  3380. "decoupling",
  3381. "interfaces",
  3382. "interoperability",
  3383. "standards"
  3384. ],
  3385. "support": {
  3386. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  3387. },
  3388. "funding": [
  3389. {
  3390. "url": "https://symfony.com/sponsor",
  3391. "type": "custom"
  3392. },
  3393. {
  3394. "url": "https://github.com/fabpot",
  3395. "type": "github"
  3396. },
  3397. {
  3398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3399. "type": "tidelift"
  3400. }
  3401. ],
  3402. "time": "2022-01-02T09:53:40+00:00"
  3403. },
  3404. {
  3405. "name": "symfony/deprecation-contracts",
  3406. "version": "v2.5.2",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/symfony/deprecation-contracts.git",
  3410. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3415. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3416. "shasum": "",
  3417. "mirrors": [
  3418. {
  3419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3420. "preferred": true
  3421. }
  3422. ]
  3423. },
  3424. "require": {
  3425. "php": ">=7.1"
  3426. },
  3427. "type": "library",
  3428. "extra": {
  3429. "branch-alias": {
  3430. "dev-main": "2.5-dev"
  3431. },
  3432. "thanks": {
  3433. "name": "symfony/contracts",
  3434. "url": "https://github.com/symfony/contracts"
  3435. }
  3436. },
  3437. "autoload": {
  3438. "files": [
  3439. "function.php"
  3440. ]
  3441. },
  3442. "notification-url": "https://packagist.org/downloads/",
  3443. "license": [
  3444. "MIT"
  3445. ],
  3446. "authors": [
  3447. {
  3448. "name": "Nicolas Grekas",
  3449. "email": "p@tchwork.com"
  3450. },
  3451. {
  3452. "name": "Symfony Community",
  3453. "homepage": "https://symfony.com/contributors"
  3454. }
  3455. ],
  3456. "description": "A generic function and convention to trigger deprecation notices",
  3457. "homepage": "https://symfony.com",
  3458. "support": {
  3459. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3460. },
  3461. "funding": [
  3462. {
  3463. "url": "https://symfony.com/sponsor",
  3464. "type": "custom"
  3465. },
  3466. {
  3467. "url": "https://github.com/fabpot",
  3468. "type": "github"
  3469. },
  3470. {
  3471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3472. "type": "tidelift"
  3473. }
  3474. ],
  3475. "time": "2022-01-02T09:53:40+00:00"
  3476. },
  3477. {
  3478. "name": "symfony/event-dispatcher",
  3479. "version": "v5.4.9",
  3480. "source": {
  3481. "type": "git",
  3482. "url": "https://github.com/symfony/event-dispatcher.git",
  3483. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
  3484. },
  3485. "dist": {
  3486. "type": "zip",
  3487. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3488. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  3489. "shasum": "",
  3490. "mirrors": [
  3491. {
  3492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3493. "preferred": true
  3494. }
  3495. ]
  3496. },
  3497. "require": {
  3498. "php": ">=7.2.5",
  3499. "symfony/deprecation-contracts": "^2.1|^3",
  3500. "symfony/event-dispatcher-contracts": "^2|^3",
  3501. "symfony/polyfill-php80": "^1.16"
  3502. },
  3503. "conflict": {
  3504. "symfony/dependency-injection": "<4.4"
  3505. },
  3506. "provide": {
  3507. "psr/event-dispatcher-implementation": "1.0",
  3508. "symfony/event-dispatcher-implementation": "2.0"
  3509. },
  3510. "require-dev": {
  3511. "psr/log": "^1|^2|^3",
  3512. "symfony/config": "^4.4|^5.0|^6.0",
  3513. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3514. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3515. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3516. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3517. "symfony/service-contracts": "^1.1|^2|^3",
  3518. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3519. },
  3520. "suggest": {
  3521. "symfony/dependency-injection": "",
  3522. "symfony/http-kernel": ""
  3523. },
  3524. "type": "library",
  3525. "autoload": {
  3526. "psr-4": {
  3527. "Symfony\\Component\\EventDispatcher\\": ""
  3528. },
  3529. "exclude-from-classmap": [
  3530. "/Tests/"
  3531. ]
  3532. },
  3533. "notification-url": "https://packagist.org/downloads/",
  3534. "license": [
  3535. "MIT"
  3536. ],
  3537. "authors": [
  3538. {
  3539. "name": "Fabien Potencier",
  3540. "email": "fabien@symfony.com"
  3541. },
  3542. {
  3543. "name": "Symfony Community",
  3544. "homepage": "https://symfony.com/contributors"
  3545. }
  3546. ],
  3547. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3548. "homepage": "https://symfony.com",
  3549. "support": {
  3550. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
  3551. },
  3552. "funding": [
  3553. {
  3554. "url": "https://symfony.com/sponsor",
  3555. "type": "custom"
  3556. },
  3557. {
  3558. "url": "https://github.com/fabpot",
  3559. "type": "github"
  3560. },
  3561. {
  3562. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3563. "type": "tidelift"
  3564. }
  3565. ],
  3566. "time": "2022-05-05T16:45:39+00:00"
  3567. },
  3568. {
  3569. "name": "symfony/event-dispatcher-contracts",
  3570. "version": "v2.5.2",
  3571. "source": {
  3572. "type": "git",
  3573. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3574. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3575. },
  3576. "dist": {
  3577. "type": "zip",
  3578. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3579. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3580. "shasum": "",
  3581. "mirrors": [
  3582. {
  3583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3584. "preferred": true
  3585. }
  3586. ]
  3587. },
  3588. "require": {
  3589. "php": ">=7.2.5",
  3590. "psr/event-dispatcher": "^1"
  3591. },
  3592. "suggest": {
  3593. "symfony/event-dispatcher-implementation": ""
  3594. },
  3595. "type": "library",
  3596. "extra": {
  3597. "branch-alias": {
  3598. "dev-main": "2.5-dev"
  3599. },
  3600. "thanks": {
  3601. "name": "symfony/contracts",
  3602. "url": "https://github.com/symfony/contracts"
  3603. }
  3604. },
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Symfony\\Contracts\\EventDispatcher\\": ""
  3608. }
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Nicolas Grekas",
  3617. "email": "p@tchwork.com"
  3618. },
  3619. {
  3620. "name": "Symfony Community",
  3621. "homepage": "https://symfony.com/contributors"
  3622. }
  3623. ],
  3624. "description": "Generic abstractions related to dispatching event",
  3625. "homepage": "https://symfony.com",
  3626. "keywords": [
  3627. "abstractions",
  3628. "contracts",
  3629. "decoupling",
  3630. "interfaces",
  3631. "interoperability",
  3632. "standards"
  3633. ],
  3634. "support": {
  3635. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3636. },
  3637. "funding": [
  3638. {
  3639. "url": "https://symfony.com/sponsor",
  3640. "type": "custom"
  3641. },
  3642. {
  3643. "url": "https://github.com/fabpot",
  3644. "type": "github"
  3645. },
  3646. {
  3647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3648. "type": "tidelift"
  3649. }
  3650. ],
  3651. "time": "2022-01-02T09:53:40+00:00"
  3652. },
  3653. {
  3654. "name": "symfony/http-foundation",
  3655. "version": "v5.4.10",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/symfony/http-foundation.git",
  3659. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3664. "reference": "e7793b7906f72a8cc51054fbca9dcff7a8af1c1e",
  3665. "shasum": "",
  3666. "mirrors": [
  3667. {
  3668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3669. "preferred": true
  3670. }
  3671. ]
  3672. },
  3673. "require": {
  3674. "php": ">=7.2.5",
  3675. "symfony/deprecation-contracts": "^2.1|^3",
  3676. "symfony/polyfill-mbstring": "~1.1",
  3677. "symfony/polyfill-php80": "^1.16"
  3678. },
  3679. "require-dev": {
  3680. "predis/predis": "~1.0",
  3681. "symfony/cache": "^4.4|^5.0|^6.0",
  3682. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3683. "symfony/mime": "^4.4|^5.0|^6.0"
  3684. },
  3685. "suggest": {
  3686. "symfony/mime": "To use the file extension guesser"
  3687. },
  3688. "type": "library",
  3689. "autoload": {
  3690. "psr-4": {
  3691. "Symfony\\Component\\HttpFoundation\\": ""
  3692. },
  3693. "exclude-from-classmap": [
  3694. "/Tests/"
  3695. ]
  3696. },
  3697. "notification-url": "https://packagist.org/downloads/",
  3698. "license": [
  3699. "MIT"
  3700. ],
  3701. "authors": [
  3702. {
  3703. "name": "Fabien Potencier",
  3704. "email": "fabien@symfony.com"
  3705. },
  3706. {
  3707. "name": "Symfony Community",
  3708. "homepage": "https://symfony.com/contributors"
  3709. }
  3710. ],
  3711. "description": "Defines an object-oriented layer for the HTTP specification",
  3712. "homepage": "https://symfony.com",
  3713. "support": {
  3714. "source": "https://github.com/symfony/http-foundation/tree/v5.4.10"
  3715. },
  3716. "funding": [
  3717. {
  3718. "url": "https://symfony.com/sponsor",
  3719. "type": "custom"
  3720. },
  3721. {
  3722. "url": "https://github.com/fabpot",
  3723. "type": "github"
  3724. },
  3725. {
  3726. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3727. "type": "tidelift"
  3728. }
  3729. ],
  3730. "time": "2022-06-19T13:13:40+00:00"
  3731. },
  3732. {
  3733. "name": "symfony/options-resolver",
  3734. "version": "v5.4.3",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/symfony/options-resolver.git",
  3738. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  3743. "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8",
  3744. "shasum": "",
  3745. "mirrors": [
  3746. {
  3747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3748. "preferred": true
  3749. }
  3750. ]
  3751. },
  3752. "require": {
  3753. "php": ">=7.2.5",
  3754. "symfony/deprecation-contracts": "^2.1|^3",
  3755. "symfony/polyfill-php73": "~1.0",
  3756. "symfony/polyfill-php80": "^1.16"
  3757. },
  3758. "type": "library",
  3759. "autoload": {
  3760. "psr-4": {
  3761. "Symfony\\Component\\OptionsResolver\\": ""
  3762. },
  3763. "exclude-from-classmap": [
  3764. "/Tests/"
  3765. ]
  3766. },
  3767. "notification-url": "https://packagist.org/downloads/",
  3768. "license": [
  3769. "MIT"
  3770. ],
  3771. "authors": [
  3772. {
  3773. "name": "Fabien Potencier",
  3774. "email": "fabien@symfony.com"
  3775. },
  3776. {
  3777. "name": "Symfony Community",
  3778. "homepage": "https://symfony.com/contributors"
  3779. }
  3780. ],
  3781. "description": "Provides an improved replacement for the array_replace PHP function",
  3782. "homepage": "https://symfony.com",
  3783. "keywords": [
  3784. "config",
  3785. "configuration",
  3786. "options"
  3787. ],
  3788. "support": {
  3789. "source": "https://github.com/symfony/options-resolver/tree/v5.4.3"
  3790. },
  3791. "funding": [
  3792. {
  3793. "url": "https://symfony.com/sponsor",
  3794. "type": "custom"
  3795. },
  3796. {
  3797. "url": "https://github.com/fabpot",
  3798. "type": "github"
  3799. },
  3800. {
  3801. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3802. "type": "tidelift"
  3803. }
  3804. ],
  3805. "time": "2022-01-02T09:53:40+00:00"
  3806. },
  3807. {
  3808. "name": "symfony/polyfill-ctype",
  3809. "version": "v1.26.0",
  3810. "source": {
  3811. "type": "git",
  3812. "url": "https://github.com/symfony/polyfill-ctype.git",
  3813. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  3814. },
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3818. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  3819. "shasum": "",
  3820. "mirrors": [
  3821. {
  3822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3823. "preferred": true
  3824. }
  3825. ]
  3826. },
  3827. "require": {
  3828. "php": ">=7.1"
  3829. },
  3830. "provide": {
  3831. "ext-ctype": "*"
  3832. },
  3833. "suggest": {
  3834. "ext-ctype": "For best performance"
  3835. },
  3836. "type": "library",
  3837. "extra": {
  3838. "branch-alias": {
  3839. "dev-main": "1.26-dev"
  3840. },
  3841. "thanks": {
  3842. "name": "symfony/polyfill",
  3843. "url": "https://github.com/symfony/polyfill"
  3844. }
  3845. },
  3846. "autoload": {
  3847. "files": [
  3848. "bootstrap.php"
  3849. ],
  3850. "psr-4": {
  3851. "Symfony\\Polyfill\\Ctype\\": ""
  3852. }
  3853. },
  3854. "notification-url": "https://packagist.org/downloads/",
  3855. "license": [
  3856. "MIT"
  3857. ],
  3858. "authors": [
  3859. {
  3860. "name": "Gert de Pagter",
  3861. "email": "BackEndTea@gmail.com"
  3862. },
  3863. {
  3864. "name": "Symfony Community",
  3865. "homepage": "https://symfony.com/contributors"
  3866. }
  3867. ],
  3868. "description": "Symfony polyfill for ctype functions",
  3869. "homepage": "https://symfony.com",
  3870. "keywords": [
  3871. "compatibility",
  3872. "ctype",
  3873. "polyfill",
  3874. "portable"
  3875. ],
  3876. "support": {
  3877. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  3878. },
  3879. "funding": [
  3880. {
  3881. "url": "https://symfony.com/sponsor",
  3882. "type": "custom"
  3883. },
  3884. {
  3885. "url": "https://github.com/fabpot",
  3886. "type": "github"
  3887. },
  3888. {
  3889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3890. "type": "tidelift"
  3891. }
  3892. ],
  3893. "time": "2022-05-24T11:49:31+00:00"
  3894. },
  3895. {
  3896. "name": "symfony/polyfill-intl-grapheme",
  3897. "version": "v1.26.0",
  3898. "source": {
  3899. "type": "git",
  3900. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  3901. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  3902. },
  3903. "dist": {
  3904. "type": "zip",
  3905. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  3906. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  3907. "shasum": "",
  3908. "mirrors": [
  3909. {
  3910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3911. "preferred": true
  3912. }
  3913. ]
  3914. },
  3915. "require": {
  3916. "php": ">=7.1"
  3917. },
  3918. "suggest": {
  3919. "ext-intl": "For best performance"
  3920. },
  3921. "type": "library",
  3922. "extra": {
  3923. "branch-alias": {
  3924. "dev-main": "1.26-dev"
  3925. },
  3926. "thanks": {
  3927. "name": "symfony/polyfill",
  3928. "url": "https://github.com/symfony/polyfill"
  3929. }
  3930. },
  3931. "autoload": {
  3932. "files": [
  3933. "bootstrap.php"
  3934. ],
  3935. "psr-4": {
  3936. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3937. }
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "MIT"
  3942. ],
  3943. "authors": [
  3944. {
  3945. "name": "Nicolas Grekas",
  3946. "email": "p@tchwork.com"
  3947. },
  3948. {
  3949. "name": "Symfony Community",
  3950. "homepage": "https://symfony.com/contributors"
  3951. }
  3952. ],
  3953. "description": "Symfony polyfill for intl's grapheme_* functions",
  3954. "homepage": "https://symfony.com",
  3955. "keywords": [
  3956. "compatibility",
  3957. "grapheme",
  3958. "intl",
  3959. "polyfill",
  3960. "portable",
  3961. "shim"
  3962. ],
  3963. "support": {
  3964. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  3965. },
  3966. "funding": [
  3967. {
  3968. "url": "https://symfony.com/sponsor",
  3969. "type": "custom"
  3970. },
  3971. {
  3972. "url": "https://github.com/fabpot",
  3973. "type": "github"
  3974. },
  3975. {
  3976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3977. "type": "tidelift"
  3978. }
  3979. ],
  3980. "time": "2022-05-24T11:49:31+00:00"
  3981. },
  3982. {
  3983. "name": "symfony/polyfill-intl-normalizer",
  3984. "version": "v1.26.0",
  3985. "source": {
  3986. "type": "git",
  3987. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3988. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  3989. },
  3990. "dist": {
  3991. "type": "zip",
  3992. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  3993. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  3994. "shasum": "",
  3995. "mirrors": [
  3996. {
  3997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3998. "preferred": true
  3999. }
  4000. ]
  4001. },
  4002. "require": {
  4003. "php": ">=7.1"
  4004. },
  4005. "suggest": {
  4006. "ext-intl": "For best performance"
  4007. },
  4008. "type": "library",
  4009. "extra": {
  4010. "branch-alias": {
  4011. "dev-main": "1.26-dev"
  4012. },
  4013. "thanks": {
  4014. "name": "symfony/polyfill",
  4015. "url": "https://github.com/symfony/polyfill"
  4016. }
  4017. },
  4018. "autoload": {
  4019. "files": [
  4020. "bootstrap.php"
  4021. ],
  4022. "psr-4": {
  4023. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4024. },
  4025. "classmap": [
  4026. "Resources/stubs"
  4027. ]
  4028. },
  4029. "notification-url": "https://packagist.org/downloads/",
  4030. "license": [
  4031. "MIT"
  4032. ],
  4033. "authors": [
  4034. {
  4035. "name": "Nicolas Grekas",
  4036. "email": "p@tchwork.com"
  4037. },
  4038. {
  4039. "name": "Symfony Community",
  4040. "homepage": "https://symfony.com/contributors"
  4041. }
  4042. ],
  4043. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4044. "homepage": "https://symfony.com",
  4045. "keywords": [
  4046. "compatibility",
  4047. "intl",
  4048. "normalizer",
  4049. "polyfill",
  4050. "portable",
  4051. "shim"
  4052. ],
  4053. "support": {
  4054. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  4055. },
  4056. "funding": [
  4057. {
  4058. "url": "https://symfony.com/sponsor",
  4059. "type": "custom"
  4060. },
  4061. {
  4062. "url": "https://github.com/fabpot",
  4063. "type": "github"
  4064. },
  4065. {
  4066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4067. "type": "tidelift"
  4068. }
  4069. ],
  4070. "time": "2022-05-24T11:49:31+00:00"
  4071. },
  4072. {
  4073. "name": "symfony/polyfill-mbstring",
  4074. "version": "v1.26.0",
  4075. "source": {
  4076. "type": "git",
  4077. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4078. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  4079. },
  4080. "dist": {
  4081. "type": "zip",
  4082. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4083. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  4084. "shasum": "",
  4085. "mirrors": [
  4086. {
  4087. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4088. "preferred": true
  4089. }
  4090. ]
  4091. },
  4092. "require": {
  4093. "php": ">=7.1"
  4094. },
  4095. "provide": {
  4096. "ext-mbstring": "*"
  4097. },
  4098. "suggest": {
  4099. "ext-mbstring": "For best performance"
  4100. },
  4101. "type": "library",
  4102. "extra": {
  4103. "branch-alias": {
  4104. "dev-main": "1.26-dev"
  4105. },
  4106. "thanks": {
  4107. "name": "symfony/polyfill",
  4108. "url": "https://github.com/symfony/polyfill"
  4109. }
  4110. },
  4111. "autoload": {
  4112. "files": [
  4113. "bootstrap.php"
  4114. ],
  4115. "psr-4": {
  4116. "Symfony\\Polyfill\\Mbstring\\": ""
  4117. }
  4118. },
  4119. "notification-url": "https://packagist.org/downloads/",
  4120. "license": [
  4121. "MIT"
  4122. ],
  4123. "authors": [
  4124. {
  4125. "name": "Nicolas Grekas",
  4126. "email": "p@tchwork.com"
  4127. },
  4128. {
  4129. "name": "Symfony Community",
  4130. "homepage": "https://symfony.com/contributors"
  4131. }
  4132. ],
  4133. "description": "Symfony polyfill for the Mbstring extension",
  4134. "homepage": "https://symfony.com",
  4135. "keywords": [
  4136. "compatibility",
  4137. "mbstring",
  4138. "polyfill",
  4139. "portable",
  4140. "shim"
  4141. ],
  4142. "support": {
  4143. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  4144. },
  4145. "funding": [
  4146. {
  4147. "url": "https://symfony.com/sponsor",
  4148. "type": "custom"
  4149. },
  4150. {
  4151. "url": "https://github.com/fabpot",
  4152. "type": "github"
  4153. },
  4154. {
  4155. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4156. "type": "tidelift"
  4157. }
  4158. ],
  4159. "time": "2022-05-24T11:49:31+00:00"
  4160. },
  4161. {
  4162. "name": "symfony/polyfill-php73",
  4163. "version": "v1.26.0",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://github.com/symfony/polyfill-php73.git",
  4167. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4172. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  4173. "shasum": "",
  4174. "mirrors": [
  4175. {
  4176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4177. "preferred": true
  4178. }
  4179. ]
  4180. },
  4181. "require": {
  4182. "php": ">=7.1"
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-main": "1.26-dev"
  4188. },
  4189. "thanks": {
  4190. "name": "symfony/polyfill",
  4191. "url": "https://github.com/symfony/polyfill"
  4192. }
  4193. },
  4194. "autoload": {
  4195. "files": [
  4196. "bootstrap.php"
  4197. ],
  4198. "psr-4": {
  4199. "Symfony\\Polyfill\\Php73\\": ""
  4200. },
  4201. "classmap": [
  4202. "Resources/stubs"
  4203. ]
  4204. },
  4205. "notification-url": "https://packagist.org/downloads/",
  4206. "license": [
  4207. "MIT"
  4208. ],
  4209. "authors": [
  4210. {
  4211. "name": "Nicolas Grekas",
  4212. "email": "p@tchwork.com"
  4213. },
  4214. {
  4215. "name": "Symfony Community",
  4216. "homepage": "https://symfony.com/contributors"
  4217. }
  4218. ],
  4219. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4220. "homepage": "https://symfony.com",
  4221. "keywords": [
  4222. "compatibility",
  4223. "polyfill",
  4224. "portable",
  4225. "shim"
  4226. ],
  4227. "support": {
  4228. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  4229. },
  4230. "funding": [
  4231. {
  4232. "url": "https://symfony.com/sponsor",
  4233. "type": "custom"
  4234. },
  4235. {
  4236. "url": "https://github.com/fabpot",
  4237. "type": "github"
  4238. },
  4239. {
  4240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4241. "type": "tidelift"
  4242. }
  4243. ],
  4244. "time": "2022-05-24T11:49:31+00:00"
  4245. },
  4246. {
  4247. "name": "symfony/polyfill-php80",
  4248. "version": "v1.26.0",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://github.com/symfony/polyfill-php80.git",
  4252. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  4253. },
  4254. "dist": {
  4255. "type": "zip",
  4256. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4257. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4258. "shasum": "",
  4259. "mirrors": [
  4260. {
  4261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4262. "preferred": true
  4263. }
  4264. ]
  4265. },
  4266. "require": {
  4267. "php": ">=7.1"
  4268. },
  4269. "type": "library",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-main": "1.26-dev"
  4273. },
  4274. "thanks": {
  4275. "name": "symfony/polyfill",
  4276. "url": "https://github.com/symfony/polyfill"
  4277. }
  4278. },
  4279. "autoload": {
  4280. "files": [
  4281. "bootstrap.php"
  4282. ],
  4283. "psr-4": {
  4284. "Symfony\\Polyfill\\Php80\\": ""
  4285. },
  4286. "classmap": [
  4287. "Resources/stubs"
  4288. ]
  4289. },
  4290. "notification-url": "https://packagist.org/downloads/",
  4291. "license": [
  4292. "MIT"
  4293. ],
  4294. "authors": [
  4295. {
  4296. "name": "Ion Bazan",
  4297. "email": "ion.bazan@gmail.com"
  4298. },
  4299. {
  4300. "name": "Nicolas Grekas",
  4301. "email": "p@tchwork.com"
  4302. },
  4303. {
  4304. "name": "Symfony Community",
  4305. "homepage": "https://symfony.com/contributors"
  4306. }
  4307. ],
  4308. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4309. "homepage": "https://symfony.com",
  4310. "keywords": [
  4311. "compatibility",
  4312. "polyfill",
  4313. "portable",
  4314. "shim"
  4315. ],
  4316. "support": {
  4317. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  4318. },
  4319. "funding": [
  4320. {
  4321. "url": "https://symfony.com/sponsor",
  4322. "type": "custom"
  4323. },
  4324. {
  4325. "url": "https://github.com/fabpot",
  4326. "type": "github"
  4327. },
  4328. {
  4329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4330. "type": "tidelift"
  4331. }
  4332. ],
  4333. "time": "2022-05-10T07:21:04+00:00"
  4334. },
  4335. {
  4336. "name": "symfony/property-access",
  4337. "version": "v5.4.8",
  4338. "source": {
  4339. "type": "git",
  4340. "url": "https://github.com/symfony/property-access.git",
  4341. "reference": "fe501d498d6ec7e9efe928c90fabedf629116495"
  4342. },
  4343. "dist": {
  4344. "type": "zip",
  4345. "url": "https://api.github.com/repos/symfony/property-access/zipball/fe501d498d6ec7e9efe928c90fabedf629116495",
  4346. "reference": "fe501d498d6ec7e9efe928c90fabedf629116495",
  4347. "shasum": "",
  4348. "mirrors": [
  4349. {
  4350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4351. "preferred": true
  4352. }
  4353. ]
  4354. },
  4355. "require": {
  4356. "php": ">=7.2.5",
  4357. "symfony/deprecation-contracts": "^2.1|^3",
  4358. "symfony/polyfill-php80": "^1.16",
  4359. "symfony/property-info": "^5.2|^6.0"
  4360. },
  4361. "require-dev": {
  4362. "symfony/cache": "^4.4|^5.0|^6.0"
  4363. },
  4364. "suggest": {
  4365. "psr/cache-implementation": "To cache access methods."
  4366. },
  4367. "type": "library",
  4368. "autoload": {
  4369. "psr-4": {
  4370. "Symfony\\Component\\PropertyAccess\\": ""
  4371. },
  4372. "exclude-from-classmap": [
  4373. "/Tests/"
  4374. ]
  4375. },
  4376. "notification-url": "https://packagist.org/downloads/",
  4377. "license": [
  4378. "MIT"
  4379. ],
  4380. "authors": [
  4381. {
  4382. "name": "Fabien Potencier",
  4383. "email": "fabien@symfony.com"
  4384. },
  4385. {
  4386. "name": "Symfony Community",
  4387. "homepage": "https://symfony.com/contributors"
  4388. }
  4389. ],
  4390. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  4391. "homepage": "https://symfony.com",
  4392. "keywords": [
  4393. "access",
  4394. "array",
  4395. "extraction",
  4396. "index",
  4397. "injection",
  4398. "object",
  4399. "property",
  4400. "property path",
  4401. "reflection"
  4402. ],
  4403. "support": {
  4404. "source": "https://github.com/symfony/property-access/tree/v5.4.8"
  4405. },
  4406. "funding": [
  4407. {
  4408. "url": "https://symfony.com/sponsor",
  4409. "type": "custom"
  4410. },
  4411. {
  4412. "url": "https://github.com/fabpot",
  4413. "type": "github"
  4414. },
  4415. {
  4416. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4417. "type": "tidelift"
  4418. }
  4419. ],
  4420. "time": "2022-04-12T15:48:08+00:00"
  4421. },
  4422. {
  4423. "name": "symfony/property-info",
  4424. "version": "v5.4.10",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://github.com/symfony/property-info.git",
  4428. "reference": "924406e19365953870517eb7f63ac3f7bfb71875"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://api.github.com/repos/symfony/property-info/zipball/924406e19365953870517eb7f63ac3f7bfb71875",
  4433. "reference": "924406e19365953870517eb7f63ac3f7bfb71875",
  4434. "shasum": "",
  4435. "mirrors": [
  4436. {
  4437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4438. "preferred": true
  4439. }
  4440. ]
  4441. },
  4442. "require": {
  4443. "php": ">=7.2.5",
  4444. "symfony/deprecation-contracts": "^2.1|^3",
  4445. "symfony/polyfill-php80": "^1.16",
  4446. "symfony/string": "^5.1|^6.0"
  4447. },
  4448. "conflict": {
  4449. "phpdocumentor/reflection-docblock": "<3.2.2",
  4450. "phpdocumentor/type-resolver": "<1.4.0",
  4451. "symfony/dependency-injection": "<4.4"
  4452. },
  4453. "require-dev": {
  4454. "doctrine/annotations": "^1.10.4",
  4455. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4456. "phpstan/phpdoc-parser": "^1.0",
  4457. "symfony/cache": "^4.4|^5.0|^6.0",
  4458. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4459. "symfony/serializer": "^4.4|^5.0|^6.0"
  4460. },
  4461. "suggest": {
  4462. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  4463. "psr/cache-implementation": "To cache results",
  4464. "symfony/doctrine-bridge": "To use Doctrine metadata",
  4465. "symfony/serializer": "To use Serializer metadata"
  4466. },
  4467. "type": "library",
  4468. "autoload": {
  4469. "psr-4": {
  4470. "Symfony\\Component\\PropertyInfo\\": ""
  4471. },
  4472. "exclude-from-classmap": [
  4473. "/Tests/"
  4474. ]
  4475. },
  4476. "notification-url": "https://packagist.org/downloads/",
  4477. "license": [
  4478. "MIT"
  4479. ],
  4480. "authors": [
  4481. {
  4482. "name": "Kévin Dunglas",
  4483. "email": "dunglas@gmail.com"
  4484. },
  4485. {
  4486. "name": "Symfony Community",
  4487. "homepage": "https://symfony.com/contributors"
  4488. }
  4489. ],
  4490. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  4491. "homepage": "https://symfony.com",
  4492. "keywords": [
  4493. "doctrine",
  4494. "phpdoc",
  4495. "property",
  4496. "symfony",
  4497. "type",
  4498. "validator"
  4499. ],
  4500. "support": {
  4501. "source": "https://github.com/symfony/property-info/tree/v5.4.10"
  4502. },
  4503. "funding": [
  4504. {
  4505. "url": "https://symfony.com/sponsor",
  4506. "type": "custom"
  4507. },
  4508. {
  4509. "url": "https://github.com/fabpot",
  4510. "type": "github"
  4511. },
  4512. {
  4513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4514. "type": "tidelift"
  4515. }
  4516. ],
  4517. "time": "2022-05-31T05:14:08+00:00"
  4518. },
  4519. {
  4520. "name": "symfony/psr-http-message-bridge",
  4521. "version": "v2.1.2",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  4525. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  4530. "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34",
  4531. "shasum": "",
  4532. "mirrors": [
  4533. {
  4534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4535. "preferred": true
  4536. }
  4537. ]
  4538. },
  4539. "require": {
  4540. "php": ">=7.1",
  4541. "psr/http-message": "^1.0",
  4542. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  4543. },
  4544. "require-dev": {
  4545. "nyholm/psr7": "^1.1",
  4546. "psr/log": "^1.1 || ^2 || ^3",
  4547. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  4548. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  4549. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  4550. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  4551. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  4552. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  4553. },
  4554. "suggest": {
  4555. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  4556. },
  4557. "type": "symfony-bridge",
  4558. "extra": {
  4559. "branch-alias": {
  4560. "dev-main": "2.1-dev"
  4561. }
  4562. },
  4563. "autoload": {
  4564. "psr-4": {
  4565. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  4566. },
  4567. "exclude-from-classmap": [
  4568. "/Tests/"
  4569. ]
  4570. },
  4571. "notification-url": "https://packagist.org/downloads/",
  4572. "license": [
  4573. "MIT"
  4574. ],
  4575. "authors": [
  4576. {
  4577. "name": "Fabien Potencier",
  4578. "email": "fabien@symfony.com"
  4579. },
  4580. {
  4581. "name": "Symfony Community",
  4582. "homepage": "http://symfony.com/contributors"
  4583. }
  4584. ],
  4585. "description": "PSR HTTP message bridge",
  4586. "homepage": "http://symfony.com",
  4587. "keywords": [
  4588. "http",
  4589. "http-message",
  4590. "psr-17",
  4591. "psr-7"
  4592. ],
  4593. "support": {
  4594. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  4595. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2"
  4596. },
  4597. "funding": [
  4598. {
  4599. "url": "https://symfony.com/sponsor",
  4600. "type": "custom"
  4601. },
  4602. {
  4603. "url": "https://github.com/fabpot",
  4604. "type": "github"
  4605. },
  4606. {
  4607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4608. "type": "tidelift"
  4609. }
  4610. ],
  4611. "time": "2021-11-05T13:13:39+00:00"
  4612. },
  4613. {
  4614. "name": "symfony/service-contracts",
  4615. "version": "v1.1.2",
  4616. "source": {
  4617. "type": "git",
  4618. "url": "https://github.com/symfony/service-contracts.git",
  4619. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  4620. },
  4621. "dist": {
  4622. "type": "zip",
  4623. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4624. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4625. "shasum": "",
  4626. "mirrors": [
  4627. {
  4628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4629. "preferred": true
  4630. }
  4631. ]
  4632. },
  4633. "require": {
  4634. "php": "^7.1.3"
  4635. },
  4636. "suggest": {
  4637. "psr/container": "",
  4638. "symfony/service-implementation": ""
  4639. },
  4640. "type": "library",
  4641. "extra": {
  4642. "branch-alias": {
  4643. "dev-master": "1.1-dev"
  4644. }
  4645. },
  4646. "autoload": {
  4647. "psr-4": {
  4648. "Symfony\\Contracts\\Service\\": ""
  4649. }
  4650. },
  4651. "notification-url": "https://packagist.org/downloads/",
  4652. "license": [
  4653. "MIT"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "Nicolas Grekas",
  4658. "email": "p@tchwork.com"
  4659. },
  4660. {
  4661. "name": "Symfony Community",
  4662. "homepage": "https://symfony.com/contributors"
  4663. }
  4664. ],
  4665. "description": "Generic abstractions related to writing services",
  4666. "homepage": "https://symfony.com",
  4667. "keywords": [
  4668. "abstractions",
  4669. "contracts",
  4670. "decoupling",
  4671. "interfaces",
  4672. "interoperability",
  4673. "standards"
  4674. ],
  4675. "support": {
  4676. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  4677. },
  4678. "time": "2019-05-28T07:50:59+00:00"
  4679. },
  4680. {
  4681. "name": "symfony/string",
  4682. "version": "v5.4.10",
  4683. "source": {
  4684. "type": "git",
  4685. "url": "https://github.com/symfony/string.git",
  4686. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
  4687. },
  4688. "dist": {
  4689. "type": "zip",
  4690. "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
  4691. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
  4692. "shasum": "",
  4693. "mirrors": [
  4694. {
  4695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4696. "preferred": true
  4697. }
  4698. ]
  4699. },
  4700. "require": {
  4701. "php": ">=7.2.5",
  4702. "symfony/polyfill-ctype": "~1.8",
  4703. "symfony/polyfill-intl-grapheme": "~1.0",
  4704. "symfony/polyfill-intl-normalizer": "~1.0",
  4705. "symfony/polyfill-mbstring": "~1.0",
  4706. "symfony/polyfill-php80": "~1.15"
  4707. },
  4708. "conflict": {
  4709. "symfony/translation-contracts": ">=3.0"
  4710. },
  4711. "require-dev": {
  4712. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4713. "symfony/http-client": "^4.4|^5.0|^6.0",
  4714. "symfony/translation-contracts": "^1.1|^2",
  4715. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4716. },
  4717. "type": "library",
  4718. "autoload": {
  4719. "files": [
  4720. "Resources/functions.php"
  4721. ],
  4722. "psr-4": {
  4723. "Symfony\\Component\\String\\": ""
  4724. },
  4725. "exclude-from-classmap": [
  4726. "/Tests/"
  4727. ]
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "Nicolas Grekas",
  4736. "email": "p@tchwork.com"
  4737. },
  4738. {
  4739. "name": "Symfony Community",
  4740. "homepage": "https://symfony.com/contributors"
  4741. }
  4742. ],
  4743. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4744. "homepage": "https://symfony.com",
  4745. "keywords": [
  4746. "grapheme",
  4747. "i18n",
  4748. "string",
  4749. "unicode",
  4750. "utf-8",
  4751. "utf8"
  4752. ],
  4753. "support": {
  4754. "source": "https://github.com/symfony/string/tree/v5.4.10"
  4755. },
  4756. "funding": [
  4757. {
  4758. "url": "https://symfony.com/sponsor",
  4759. "type": "custom"
  4760. },
  4761. {
  4762. "url": "https://github.com/fabpot",
  4763. "type": "github"
  4764. },
  4765. {
  4766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4767. "type": "tidelift"
  4768. }
  4769. ],
  4770. "time": "2022-06-26T15:57:47+00:00"
  4771. },
  4772. {
  4773. "name": "symfony/var-exporter",
  4774. "version": "v5.4.10",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/symfony/var-exporter.git",
  4778. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  4783. "reference": "8fc03ee75eeece3d9be1ef47d26d79bea1afb340",
  4784. "shasum": "",
  4785. "mirrors": [
  4786. {
  4787. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4788. "preferred": true
  4789. }
  4790. ]
  4791. },
  4792. "require": {
  4793. "php": ">=7.2.5",
  4794. "symfony/polyfill-php80": "^1.16"
  4795. },
  4796. "require-dev": {
  4797. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  4798. },
  4799. "type": "library",
  4800. "autoload": {
  4801. "psr-4": {
  4802. "Symfony\\Component\\VarExporter\\": ""
  4803. },
  4804. "exclude-from-classmap": [
  4805. "/Tests/"
  4806. ]
  4807. },
  4808. "notification-url": "https://packagist.org/downloads/",
  4809. "license": [
  4810. "MIT"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "Nicolas Grekas",
  4815. "email": "p@tchwork.com"
  4816. },
  4817. {
  4818. "name": "Symfony Community",
  4819. "homepage": "https://symfony.com/contributors"
  4820. }
  4821. ],
  4822. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  4823. "homepage": "https://symfony.com",
  4824. "keywords": [
  4825. "clone",
  4826. "construct",
  4827. "export",
  4828. "hydrate",
  4829. "instantiate",
  4830. "serialize"
  4831. ],
  4832. "support": {
  4833. "source": "https://github.com/symfony/var-exporter/tree/v5.4.10"
  4834. },
  4835. "funding": [
  4836. {
  4837. "url": "https://symfony.com/sponsor",
  4838. "type": "custom"
  4839. },
  4840. {
  4841. "url": "https://github.com/fabpot",
  4842. "type": "github"
  4843. },
  4844. {
  4845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4846. "type": "tidelift"
  4847. }
  4848. ],
  4849. "time": "2022-05-27T12:56:18+00:00"
  4850. },
  4851. {
  4852. "name": "symfony/yaml",
  4853. "version": "v2.8.52",
  4854. "source": {
  4855. "type": "git",
  4856. "url": "https://github.com/symfony/yaml.git",
  4857. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  4858. },
  4859. "dist": {
  4860. "type": "zip",
  4861. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  4862. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  4863. "shasum": "",
  4864. "mirrors": [
  4865. {
  4866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4867. "preferred": true
  4868. }
  4869. ]
  4870. },
  4871. "require": {
  4872. "php": ">=5.3.9",
  4873. "symfony/polyfill-ctype": "~1.8"
  4874. },
  4875. "type": "library",
  4876. "extra": {
  4877. "branch-alias": {
  4878. "dev-master": "2.8-dev"
  4879. }
  4880. },
  4881. "autoload": {
  4882. "psr-4": {
  4883. "Symfony\\Component\\Yaml\\": ""
  4884. },
  4885. "exclude-from-classmap": [
  4886. "/Tests/"
  4887. ]
  4888. },
  4889. "notification-url": "https://packagist.org/downloads/",
  4890. "license": [
  4891. "MIT"
  4892. ],
  4893. "authors": [
  4894. {
  4895. "name": "Fabien Potencier",
  4896. "email": "fabien@symfony.com"
  4897. },
  4898. {
  4899. "name": "Symfony Community",
  4900. "homepage": "https://symfony.com/contributors"
  4901. }
  4902. ],
  4903. "description": "Symfony Yaml Component",
  4904. "homepage": "https://symfony.com",
  4905. "support": {
  4906. "source": "https://github.com/symfony/yaml/tree/v2.8.52"
  4907. },
  4908. "time": "2018-11-11T11:18:13+00:00"
  4909. },
  4910. {
  4911. "name": "topthink/framework",
  4912. "version": "v5.1.41",
  4913. "source": {
  4914. "type": "git",
  4915. "url": "https://github.com/top-think/framework.git",
  4916. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2"
  4917. },
  4918. "dist": {
  4919. "type": "zip",
  4920. "url": "https://api.github.com/repos/top-think/framework/zipball/7137741a323a4a60cfca334507cd1812fac91bb2",
  4921. "reference": "7137741a323a4a60cfca334507cd1812fac91bb2",
  4922. "shasum": "",
  4923. "mirrors": [
  4924. {
  4925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4926. "preferred": true
  4927. }
  4928. ]
  4929. },
  4930. "require": {
  4931. "php": ">=5.6.0",
  4932. "topthink/think-installer": "2.*"
  4933. },
  4934. "require-dev": {
  4935. "johnkary/phpunit-speedtrap": "^1.0",
  4936. "mikey179/vfsstream": "~1.6",
  4937. "phpdocumentor/reflection-docblock": "^2.0",
  4938. "phploc/phploc": "2.*",
  4939. "phpunit/phpunit": "^5.0|^6.0",
  4940. "sebastian/phpcpd": "2.*",
  4941. "squizlabs/php_codesniffer": "2.*"
  4942. },
  4943. "type": "think-framework",
  4944. "notification-url": "https://packagist.org/downloads/",
  4945. "license": [
  4946. "Apache-2.0"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "liu21st",
  4951. "email": "liu21st@gmail.com"
  4952. },
  4953. {
  4954. "name": "yunwuxin",
  4955. "email": "448901948@qq.com"
  4956. }
  4957. ],
  4958. "description": "the new thinkphp framework",
  4959. "homepage": "http://thinkphp.cn/",
  4960. "keywords": [
  4961. "framework",
  4962. "orm",
  4963. "thinkphp"
  4964. ],
  4965. "support": {
  4966. "issues": "https://github.com/top-think/framework/issues",
  4967. "source": "https://github.com/top-think/framework/tree/v5.1.41"
  4968. },
  4969. "time": "2021-01-11T02:51:29+00:00"
  4970. },
  4971. {
  4972. "name": "topthink/think-installer",
  4973. "version": "v2.0.5",
  4974. "source": {
  4975. "type": "git",
  4976. "url": "https://github.com/top-think/think-installer.git",
  4977. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88"
  4978. },
  4979. "dist": {
  4980. "type": "zip",
  4981. "url": "https://api.github.com/repos/top-think/think-installer/zipball/38ba647706e35d6704b5d370c06f8a160b635f88",
  4982. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88",
  4983. "shasum": "",
  4984. "mirrors": [
  4985. {
  4986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4987. "preferred": true
  4988. }
  4989. ]
  4990. },
  4991. "require": {
  4992. "composer-plugin-api": "^1.0||^2.0"
  4993. },
  4994. "require-dev": {
  4995. "composer/composer": "^1.0||^2.0"
  4996. },
  4997. "type": "composer-plugin",
  4998. "extra": {
  4999. "class": "think\\composer\\Plugin"
  5000. },
  5001. "autoload": {
  5002. "psr-4": {
  5003. "think\\composer\\": "src"
  5004. }
  5005. },
  5006. "notification-url": "https://packagist.org/downloads/",
  5007. "license": [
  5008. "Apache-2.0"
  5009. ],
  5010. "authors": [
  5011. {
  5012. "name": "yunwuxin",
  5013. "email": "448901948@qq.com"
  5014. }
  5015. ],
  5016. "support": {
  5017. "issues": "https://github.com/top-think/think-installer/issues",
  5018. "source": "https://github.com/top-think/think-installer/tree/v2.0.5"
  5019. },
  5020. "time": "2021-01-14T12:12:14+00:00"
  5021. },
  5022. {
  5023. "name": "zoujingli/ip2region",
  5024. "version": "v1.0.12",
  5025. "source": {
  5026. "type": "git",
  5027. "url": "https://github.com/zoujingli/ip2region.git",
  5028. "reference": "82cebc7a6be46524797454e98d3b165521065c26"
  5029. },
  5030. "dist": {
  5031. "type": "zip",
  5032. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/82cebc7a6be46524797454e98d3b165521065c26",
  5033. "reference": "82cebc7a6be46524797454e98d3b165521065c26",
  5034. "shasum": "",
  5035. "mirrors": [
  5036. {
  5037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5038. "preferred": true
  5039. }
  5040. ]
  5041. },
  5042. "require": {
  5043. "php": ">=5.3"
  5044. },
  5045. "type": "library",
  5046. "autoload": {
  5047. "classmap": [
  5048. "Ip2Region.php"
  5049. ]
  5050. },
  5051. "notification-url": "https://packagist.org/downloads/",
  5052. "license": [
  5053. "Apache-2.0"
  5054. ],
  5055. "authors": [
  5056. {
  5057. "name": "Anyon",
  5058. "email": "zoujingli@qq.com",
  5059. "homepage": "http://ctolog.com"
  5060. }
  5061. ],
  5062. "description": "Ip2Region for PHP",
  5063. "homepage": "https://github.com/zoujingli/Ip2Region",
  5064. "keywords": [
  5065. "Ip2Region"
  5066. ],
  5067. "support": {
  5068. "issues": "https://github.com/zoujingli/ip2region/issues",
  5069. "source": "https://github.com/zoujingli/ip2region/tree/v1.0.12"
  5070. },
  5071. "time": "2022-03-03T10:24:30+00:00"
  5072. },
  5073. {
  5074. "name": "zoujingli/think-library",
  5075. "version": "v5.1.x-dev",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://github.com/zoujingli/ThinkLibrary.git",
  5079. "reference": "6a5c8b7ad40d19664494522dcf9388a48df43447"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/6a5c8b7ad40d19664494522dcf9388a48df43447",
  5084. "reference": "6a5c8b7ad40d19664494522dcf9388a48df43447",
  5085. "shasum": "",
  5086. "mirrors": [
  5087. {
  5088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5089. "preferred": true
  5090. }
  5091. ]
  5092. },
  5093. "require": {
  5094. "aliyuncs/oss-sdk-php": "^2.3",
  5095. "ext-curl": "*",
  5096. "ext-gd": "*",
  5097. "ext-iconv": "*",
  5098. "ext-json": "*",
  5099. "ext-openssl": "*",
  5100. "php": ">=5.5",
  5101. "qiniu/php-sdk": "^7.2",
  5102. "topthink/framework": "5.1.*"
  5103. },
  5104. "type": "library",
  5105. "autoload": {
  5106. "files": [
  5107. "src/common.php"
  5108. ],
  5109. "psr-4": {
  5110. "library\\": "src"
  5111. }
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "MIT"
  5116. ],
  5117. "description": "ThinkPHP Basic Development Library",
  5118. "homepage": "http://framework.thinkadmin.top",
  5119. "support": {
  5120. "issues": "https://github.com/zoujingli/ThinkLibrary/issues",
  5121. "source": "https://github.com/zoujingli/ThinkLibrary/tree/v5.1"
  5122. },
  5123. "time": "2022-04-15T04:04:37+00:00"
  5124. },
  5125. {
  5126. "name": "zoujingli/wechat-developer",
  5127. "version": "v1.2.35",
  5128. "source": {
  5129. "type": "git",
  5130. "url": "https://github.com/zoujingli/WeChatDeveloper.git",
  5131. "reference": "cfe3e83798d3c7b78855ae214acb6b14321de45d"
  5132. },
  5133. "dist": {
  5134. "type": "zip",
  5135. "url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/cfe3e83798d3c7b78855ae214acb6b14321de45d",
  5136. "reference": "cfe3e83798d3c7b78855ae214acb6b14321de45d",
  5137. "shasum": "",
  5138. "mirrors": [
  5139. {
  5140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5141. "preferred": true
  5142. }
  5143. ]
  5144. },
  5145. "require": {
  5146. "ext-bcmath": "*",
  5147. "ext-curl": "*",
  5148. "ext-json": "*",
  5149. "ext-libxml": "*",
  5150. "ext-mbstring": "*",
  5151. "ext-openssl": "*",
  5152. "ext-simplexml": "*",
  5153. "ext-xml": "*",
  5154. "php": ">=5.4"
  5155. },
  5156. "type": "library",
  5157. "autoload": {
  5158. "psr-4": {
  5159. "WePay\\": "WePay",
  5160. "AliPay\\": "AliPay",
  5161. "WeChat\\": "WeChat",
  5162. "WeMini\\": "WeMini",
  5163. "WePayV3\\": "WePayV3"
  5164. },
  5165. "classmap": [
  5166. "We.php"
  5167. ]
  5168. },
  5169. "notification-url": "https://packagist.org/downloads/",
  5170. "license": [
  5171. "MIT"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "Anyon",
  5176. "email": "zoujingli@qq.com",
  5177. "homepage": "https://thinkadmin.top"
  5178. }
  5179. ],
  5180. "description": "WeChat platform and WeChat payment development tools",
  5181. "homepage": "https://github.com/kentwangit/WeChatDeveloper",
  5182. "keywords": [
  5183. "WeChatDeveloper",
  5184. "WeMini",
  5185. "alipay",
  5186. "wechat",
  5187. "wechatpay",
  5188. "wepay"
  5189. ],
  5190. "support": {
  5191. "issues": "https://github.com/zoujingli/WeChatDeveloper/issues",
  5192. "source": "https://github.com/zoujingli/WeChatDeveloper/tree/v1.2.35"
  5193. },
  5194. "time": "2022-04-26T03:02:29+00:00"
  5195. },
  5196. {
  5197. "name": "zoujingli/weopen-developer",
  5198. "version": "dev-master",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://github.com/zoujingli/WeOpenDeveloper.git",
  5202. "reference": "4d0d3c064e54556621453845fc65ba52de58a880"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://api.github.com/repos/zoujingli/WeOpenDeveloper/zipball/4d0d3c064e54556621453845fc65ba52de58a880",
  5207. "reference": "4d0d3c064e54556621453845fc65ba52de58a880",
  5208. "shasum": "",
  5209. "mirrors": [
  5210. {
  5211. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5212. "preferred": true
  5213. }
  5214. ]
  5215. },
  5216. "require": {
  5217. "ext-curl": "*",
  5218. "ext-json": "*",
  5219. "ext-openssl": "*",
  5220. "php": ">=5.4",
  5221. "zoujingli/wechat-developer": "^1.0"
  5222. },
  5223. "default-branch": true,
  5224. "type": "library",
  5225. "autoload": {
  5226. "psr-4": {
  5227. "WeChat\\": "WeChat",
  5228. "WeMini\\": "WeMini",
  5229. "WeOpen\\": "WeOpen"
  5230. }
  5231. },
  5232. "notification-url": "https://packagist.org/downloads/",
  5233. "license": [
  5234. "MIT"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "Anyon",
  5239. "email": "zoujingli@qq.com",
  5240. "homepage": "http://ctolog.com"
  5241. }
  5242. ],
  5243. "description": "WeChat Open development of SDK",
  5244. "homepage": "https://github.com/zoujingli/WeOpenDeveloper",
  5245. "keywords": [
  5246. "WeChatOpen",
  5247. "WeChatOpenDeveloper",
  5248. "wechat"
  5249. ],
  5250. "support": {
  5251. "issues": "https://github.com/zoujingli/WeOpenDeveloper/issues",
  5252. "source": "https://github.com/zoujingli/WeOpenDeveloper/tree/v1.1.4"
  5253. },
  5254. "time": "2019-10-10T10:18:05+00:00"
  5255. }
  5256. ],
  5257. "packages-dev": [],
  5258. "aliases": [],
  5259. "minimum-stability": "stable",
  5260. "stability-flags": {
  5261. "zoujingli/think-library": 20,
  5262. "zoujingli/weopen-developer": 20
  5263. },
  5264. "prefer-stable": false,
  5265. "prefer-lowest": false,
  5266. "platform": {
  5267. "php": ">=5.6",
  5268. "ext-gd": "*",
  5269. "ext-curl": "*",
  5270. "ext-json": "*",
  5271. "ext-iconv": "*",
  5272. "ext-openssl": "*",
  5273. "ext-mbstring": "*"
  5274. },
  5275. "platform-dev": [],
  5276. "plugin-api-version": "2.3.0"
  5277. }