installed.json 185 KB

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