composer.lock 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "0781ed6346cc7a40ba8459094dbd6b74",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/client",
  70. "version": "1.5.32",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  74. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  79. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.4.1",
  90. "clagiordano/weblibs-configmanager": "^1.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "mtdowling/jmespath.php": "^2.5",
  100. "php": ">=5.5"
  101. },
  102. "require-dev": {
  103. "composer/composer": "^1.8",
  104. "drupal/coder": "^8.3",
  105. "ext-dom": "*",
  106. "ext-pcre": "*",
  107. "ext-sockets": "*",
  108. "ext-spl": "*",
  109. "league/climate": "^3.2.4",
  110. "mikey179/vfsstream": "^1.6",
  111. "monolog/monolog": "^1.24",
  112. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  113. "psr/cache": "^1.0",
  114. "symfony/dotenv": "^3.4",
  115. "symfony/var-dumper": "^3.4"
  116. },
  117. "suggest": {
  118. "ext-sockets": "To use client-side monitoring"
  119. },
  120. "type": "library",
  121. "autoload": {
  122. "files": [
  123. "src/Functions.php"
  124. ],
  125. "psr-4": {
  126. "AlibabaCloud\\Client\\": "src"
  127. }
  128. },
  129. "notification-url": "https://packagist.org/downloads/",
  130. "license": [
  131. "Apache-2.0"
  132. ],
  133. "authors": [
  134. {
  135. "name": "Alibaba Cloud SDK",
  136. "email": "sdk-team@alibabacloud.com",
  137. "homepage": "http://www.alibabacloud.com"
  138. }
  139. ],
  140. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  141. "homepage": "https://www.alibabacloud.com/",
  142. "keywords": [
  143. "alibaba",
  144. "alibabacloud",
  145. "aliyun",
  146. "client",
  147. "cloud",
  148. "library",
  149. "sdk",
  150. "tool"
  151. ],
  152. "support": {
  153. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  154. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  155. },
  156. "time": "2022-12-09T04:05:55+00:00"
  157. },
  158. {
  159. "name": "alibabacloud/sdk",
  160. "version": "1.8.1735",
  161. "source": {
  162. "type": "git",
  163. "url": "https://github.com/aliyun/openapi-sdk-php.git",
  164. "reference": "bca1fd83c618eb2393544a200f2eb99d2aeed3b0"
  165. },
  166. "dist": {
  167. "type": "zip",
  168. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php/zipball/bca1fd83c618eb2393544a200f2eb99d2aeed3b0",
  169. "reference": "bca1fd83c618eb2393544a200f2eb99d2aeed3b0",
  170. "shasum": "",
  171. "mirrors": [
  172. {
  173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  174. "preferred": true
  175. }
  176. ]
  177. },
  178. "require": {
  179. "alibabacloud/client": "^1.5",
  180. "ext-curl": "*",
  181. "ext-json": "*",
  182. "ext-libxml": "*",
  183. "ext-mbstring": "*",
  184. "ext-openssl": "*",
  185. "ext-simplexml": "*",
  186. "ext-xmlwriter": "*",
  187. "php": ">=5.5"
  188. },
  189. "replace": {
  190. "alibabacloud/aas": "self.version",
  191. "alibabacloud/actiontrail": "self.version",
  192. "alibabacloud/adb": "self.version",
  193. "alibabacloud/aegis": "self.version",
  194. "alibabacloud/afs": "self.version",
  195. "alibabacloud/airec": "self.version",
  196. "alibabacloud/alidns": "self.version",
  197. "alibabacloud/alikafka": "self.version",
  198. "alibabacloud/alimt": "self.version",
  199. "alibabacloud/aliprobe": "self.version",
  200. "alibabacloud/aliyuncvc": "self.version",
  201. "alibabacloud/appmallsservice": "self.version",
  202. "alibabacloud/arms": "self.version",
  203. "alibabacloud/arms4finance": "self.version",
  204. "alibabacloud/baas": "self.version",
  205. "alibabacloud/batchcompute": "self.version",
  206. "alibabacloud/bss": "self.version",
  207. "alibabacloud/bssopenapi": "self.version",
  208. "alibabacloud/cas": "self.version",
  209. "alibabacloud/cbn": "self.version",
  210. "alibabacloud/ccc": "self.version",
  211. "alibabacloud/ccs": "self.version",
  212. "alibabacloud/cdn": "self.version",
  213. "alibabacloud/cds": "self.version",
  214. "alibabacloud/cf": "self.version",
  215. "alibabacloud/chatbot": "self.version",
  216. "alibabacloud/cloudapi": "self.version",
  217. "alibabacloud/cloudauth": "self.version",
  218. "alibabacloud/cloudesl": "self.version",
  219. "alibabacloud/cloudmarketing": "self.version",
  220. "alibabacloud/cloudphoto": "self.version",
  221. "alibabacloud/cloudwf": "self.version",
  222. "alibabacloud/cms": "self.version",
  223. "alibabacloud/commondriver": "self.version",
  224. "alibabacloud/companyreg": "self.version",
  225. "alibabacloud/cr": "self.version",
  226. "alibabacloud/crm": "self.version",
  227. "alibabacloud/cs": "self.version",
  228. "alibabacloud/csb": "self.version",
  229. "alibabacloud/cusanalyticsconline": "self.version",
  230. "alibabacloud/dataworkspublic": "self.version",
  231. "alibabacloud/dbs": "self.version",
  232. "alibabacloud/dcdn": "self.version",
  233. "alibabacloud/dds": "self.version",
  234. "alibabacloud/democenter": "self.version",
  235. "alibabacloud/dm": "self.version",
  236. "alibabacloud/dmsenterprise": "self.version",
  237. "alibabacloud/domain": "self.version",
  238. "alibabacloud/domainintl": "self.version",
  239. "alibabacloud/drcloud": "self.version",
  240. "alibabacloud/drds": "self.version",
  241. "alibabacloud/dts": "self.version",
  242. "alibabacloud/dybaseapi": "self.version",
  243. "alibabacloud/dyplsapi": "self.version",
  244. "alibabacloud/dypnsapi": "self.version",
  245. "alibabacloud/dysmsapi": "self.version",
  246. "alibabacloud/dyvmsapi": "self.version",
  247. "alibabacloud/eci": "self.version",
  248. "alibabacloud/ecs": "self.version",
  249. "alibabacloud/ecsinc": "self.version",
  250. "alibabacloud/edas": "self.version",
  251. "alibabacloud/ehpc": "self.version",
  252. "alibabacloud/elasticsearch": "self.version",
  253. "alibabacloud/emr": "self.version",
  254. "alibabacloud/ess": "self.version",
  255. "alibabacloud/facebody": "self.version",
  256. "alibabacloud/fnf": "self.version",
  257. "alibabacloud/foas": "self.version",
  258. "alibabacloud/ft": "self.version",
  259. "alibabacloud/goodstech": "self.version",
  260. "alibabacloud/gpdb": "self.version",
  261. "alibabacloud/green": "self.version",
  262. "alibabacloud/hbase": "self.version",
  263. "alibabacloud/hiknoengine": "self.version",
  264. "alibabacloud/hpc": "self.version",
  265. "alibabacloud/hsm": "self.version",
  266. "alibabacloud/httpdns": "self.version",
  267. "alibabacloud/idst": "self.version",
  268. "alibabacloud/imageaudit": "self.version",
  269. "alibabacloud/imageenhan": "self.version",
  270. "alibabacloud/imagerecog": "self.version",
  271. "alibabacloud/imagesearch": "self.version",
  272. "alibabacloud/imageseg": "self.version",
  273. "alibabacloud/imm": "self.version",
  274. "alibabacloud/industrybrain": "self.version",
  275. "alibabacloud/iot": "self.version",
  276. "alibabacloud/iqa": "self.version",
  277. "alibabacloud/itaas": "self.version",
  278. "alibabacloud/ivision": "self.version",
  279. "alibabacloud/ivpd": "self.version",
  280. "alibabacloud/jaq": "self.version",
  281. "alibabacloud/jarvis": "self.version",
  282. "alibabacloud/jarvispublic": "self.version",
  283. "alibabacloud/kms": "self.version",
  284. "alibabacloud/linkedmall": "self.version",
  285. "alibabacloud/linkface": "self.version",
  286. "alibabacloud/linkwan": "self.version",
  287. "alibabacloud/live": "self.version",
  288. "alibabacloud/lubancloud": "self.version",
  289. "alibabacloud/lubanruler": "self.version",
  290. "alibabacloud/market": "self.version",
  291. "alibabacloud/mopen": "self.version",
  292. "alibabacloud/mpserverless": "self.version",
  293. "alibabacloud/mts": "self.version",
  294. "alibabacloud/multimediaai": "self.version",
  295. "alibabacloud/nas": "self.version",
  296. "alibabacloud/netana": "self.version",
  297. "alibabacloud/nlp": "self.version",
  298. "alibabacloud/nlpautoml": "self.version",
  299. "alibabacloud/nlscloudmeta": "self.version",
  300. "alibabacloud/nlsfiletrans": "self.version",
  301. "alibabacloud/objectdet": "self.version",
  302. "alibabacloud/ocr": "self.version",
  303. "alibabacloud/ocs": "self.version",
  304. "alibabacloud/oms": "self.version",
  305. "alibabacloud/ons": "self.version",
  306. "alibabacloud/onsmqtt": "self.version",
  307. "alibabacloud/oos": "self.version",
  308. "alibabacloud/openanalytics": "self.version",
  309. "alibabacloud/ossadmin": "self.version",
  310. "alibabacloud/ots": "self.version",
  311. "alibabacloud/outboundbot": "self.version",
  312. "alibabacloud/petadata": "self.version",
  313. "alibabacloud/polardb": "self.version",
  314. "alibabacloud/productcatalog": "self.version",
  315. "alibabacloud/pts": "self.version",
  316. "alibabacloud/push": "self.version",
  317. "alibabacloud/pvtz": "self.version",
  318. "alibabacloud/qualitycheck": "self.version",
  319. "alibabacloud/ram": "self.version",
  320. "alibabacloud/rds": "self.version",
  321. "alibabacloud/reid": "self.version",
  322. "alibabacloud/retailcloud": "self.version",
  323. "alibabacloud/rkvstore": "self.version",
  324. "alibabacloud/ros": "self.version",
  325. "alibabacloud/rtc": "self.version",
  326. "alibabacloud/saf": "self.version",
  327. "alibabacloud/sas": "self.version",
  328. "alibabacloud/sasapi": "self.version",
  329. "alibabacloud/scdn": "self.version",
  330. "alibabacloud/schedulerx2": "self.version",
  331. "alibabacloud/skyeye": "self.version",
  332. "alibabacloud/slb": "self.version",
  333. "alibabacloud/smartag": "self.version",
  334. "alibabacloud/smc": "self.version",
  335. "alibabacloud/sms": "self.version",
  336. "alibabacloud/smsintl": "self.version",
  337. "alibabacloud/snsuapi": "self.version",
  338. "alibabacloud/sts": "self.version",
  339. "alibabacloud/taginner": "self.version",
  340. "alibabacloud/tesladam": "self.version",
  341. "alibabacloud/teslamaxcompute": "self.version",
  342. "alibabacloud/teslastream": "self.version",
  343. "alibabacloud/ubsms": "self.version",
  344. "alibabacloud/ubsmsinner": "self.version",
  345. "alibabacloud/uis": "self.version",
  346. "alibabacloud/unimkt": "self.version",
  347. "alibabacloud/visionai": "self.version",
  348. "alibabacloud/vod": "self.version",
  349. "alibabacloud/voicenavigator": "self.version",
  350. "alibabacloud/vpc": "self.version",
  351. "alibabacloud/vs": "self.version",
  352. "alibabacloud/wafopenapi": "self.version",
  353. "alibabacloud/welfareinner": "self.version",
  354. "alibabacloud/xspace": "self.version",
  355. "alibabacloud/xtrace": "self.version",
  356. "alibabacloud/yqbridge": "self.version",
  357. "alibabacloud/yundun": "self.version"
  358. },
  359. "require-dev": {
  360. "composer/composer": "^1.8",
  361. "league/climate": "^3.2.4",
  362. "phpunit/phpunit": "^4.8",
  363. "symfony/dotenv": "^3.4",
  364. "symfony/var-dumper": "^3.4"
  365. },
  366. "suggest": {
  367. "ext-sockets": "To use client-side monitoring"
  368. },
  369. "type": "library",
  370. "autoload": {
  371. "psr-4": {
  372. "AlibabaCloud\\": "src"
  373. }
  374. },
  375. "notification-url": "https://packagist.org/downloads/",
  376. "license": [
  377. "Apache-2.0"
  378. ],
  379. "authors": [
  380. {
  381. "name": "Alibaba Cloud SDK",
  382. "email": "sdk-team@alibabacloud.com",
  383. "homepage": "http://www.alibabacloud.com"
  384. }
  385. ],
  386. "description": "Alibaba Cloud SDK for PHP - Easier to Use Alibaba Cloud in your PHP project",
  387. "homepage": "https://www.alibabacloud.com/",
  388. "keywords": [
  389. "alibaba",
  390. "alibabacloud",
  391. "aliyun",
  392. "cloud",
  393. "library",
  394. "sdk"
  395. ],
  396. "support": {
  397. "issues": "https://github.com/aliyun/openapi-sdk-php/issues",
  398. "source": "https://github.com/aliyun/openapi-sdk-php"
  399. },
  400. "time": "2023-03-09T06:08:51+00:00"
  401. },
  402. {
  403. "name": "aliyuncs/oss-sdk-php",
  404. "version": "v2.6.0",
  405. "source": {
  406. "type": "git",
  407. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  408. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f"
  409. },
  410. "dist": {
  411. "type": "zip",
  412. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  413. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  414. "shasum": "",
  415. "mirrors": [
  416. {
  417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  418. "preferred": true
  419. }
  420. ]
  421. },
  422. "require": {
  423. "php": ">=5.3"
  424. },
  425. "require-dev": {
  426. "phpunit/phpunit": "*",
  427. "satooshi/php-coveralls": "*"
  428. },
  429. "type": "library",
  430. "autoload": {
  431. "psr-4": {
  432. "OSS\\": "src/OSS"
  433. }
  434. },
  435. "notification-url": "https://packagist.org/downloads/",
  436. "license": [
  437. "MIT"
  438. ],
  439. "authors": [
  440. {
  441. "name": "Aliyuncs",
  442. "homepage": "http://www.aliyun.com"
  443. }
  444. ],
  445. "description": "Aliyun OSS SDK for PHP",
  446. "homepage": "http://www.aliyun.com/product/oss/",
  447. "support": {
  448. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  449. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.6.0"
  450. },
  451. "time": "2022-08-03T08:06:01+00:00"
  452. },
  453. {
  454. "name": "clagiordano/weblibs-configmanager",
  455. "version": "v1.5.0",
  456. "source": {
  457. "type": "git",
  458. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  459. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273"
  460. },
  461. "dist": {
  462. "type": "zip",
  463. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/8802c7396d61a923c9a73e37ead062b24bb1b273",
  464. "reference": "8802c7396d61a923c9a73e37ead062b24bb1b273",
  465. "shasum": "",
  466. "mirrors": [
  467. {
  468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  469. "preferred": true
  470. }
  471. ]
  472. },
  473. "require": {
  474. "ext-json": "*",
  475. "php": ">=5.4",
  476. "symfony/yaml": "^2.8"
  477. },
  478. "require-dev": {
  479. "clagiordano/phpunit-result-printer": "^1",
  480. "php-coveralls/php-coveralls": "^1.1",
  481. "phpunit/phpunit": "^4.8"
  482. },
  483. "type": "library",
  484. "autoload": {
  485. "psr-4": {
  486. "clagiordano\\weblibs\\configmanager\\": "src/"
  487. }
  488. },
  489. "notification-url": "https://packagist.org/downloads/",
  490. "license": [
  491. "LGPL-3.0-or-later"
  492. ],
  493. "authors": [
  494. {
  495. "name": "Claudio Giordano",
  496. "email": "claudio.giordano@autistici.org",
  497. "role": "Developer"
  498. }
  499. ],
  500. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  501. "keywords": [
  502. "clagiordano",
  503. "configuration",
  504. "manager",
  505. "tool",
  506. "weblibs"
  507. ],
  508. "support": {
  509. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  510. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.5.0"
  511. },
  512. "time": "2021-07-12T15:27:21+00:00"
  513. },
  514. {
  515. "name": "easywechat-composer/easywechat-composer",
  516. "version": "1.4.1",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/mingyoung/easywechat-composer.git",
  520. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  525. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  526. "shasum": "",
  527. "mirrors": [
  528. {
  529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  530. "preferred": true
  531. }
  532. ]
  533. },
  534. "require": {
  535. "composer-plugin-api": "^1.0 || ^2.0",
  536. "php": ">=7.0"
  537. },
  538. "require-dev": {
  539. "composer/composer": "^1.0 || ^2.0",
  540. "phpunit/phpunit": "^6.5 || ^7.0"
  541. },
  542. "type": "composer-plugin",
  543. "extra": {
  544. "class": "EasyWeChatComposer\\Plugin"
  545. },
  546. "autoload": {
  547. "psr-4": {
  548. "EasyWeChatComposer\\": "src/"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "MIT"
  554. ],
  555. "authors": [
  556. {
  557. "name": "张铭阳",
  558. "email": "mingyoungcheung@gmail.com"
  559. }
  560. ],
  561. "description": "The composer plugin for EasyWeChat",
  562. "support": {
  563. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  564. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  565. },
  566. "time": "2021-07-05T04:03:22+00:00"
  567. },
  568. {
  569. "name": "guzzlehttp/guzzle",
  570. "version": "7.5.0",
  571. "source": {
  572. "type": "git",
  573. "url": "https://github.com/guzzle/guzzle.git",
  574. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  575. },
  576. "dist": {
  577. "type": "zip",
  578. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  579. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  580. "shasum": "",
  581. "mirrors": [
  582. {
  583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  584. "preferred": true
  585. }
  586. ]
  587. },
  588. "require": {
  589. "ext-json": "*",
  590. "guzzlehttp/promises": "^1.5",
  591. "guzzlehttp/psr7": "^1.9 || ^2.4",
  592. "php": "^7.2.5 || ^8.0",
  593. "psr/http-client": "^1.0",
  594. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  595. },
  596. "provide": {
  597. "psr/http-client-implementation": "1.0"
  598. },
  599. "require-dev": {
  600. "bamarni/composer-bin-plugin": "^1.8.1",
  601. "ext-curl": "*",
  602. "php-http/client-integration-tests": "^3.0",
  603. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  604. "psr/log": "^1.1 || ^2.0 || ^3.0"
  605. },
  606. "suggest": {
  607. "ext-curl": "Required for CURL handler support",
  608. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  609. "psr/log": "Required for using the Log middleware"
  610. },
  611. "type": "library",
  612. "extra": {
  613. "bamarni-bin": {
  614. "bin-links": true,
  615. "forward-command": false
  616. },
  617. "branch-alias": {
  618. "dev-master": "7.5-dev"
  619. }
  620. },
  621. "autoload": {
  622. "files": [
  623. "src/functions_include.php"
  624. ],
  625. "psr-4": {
  626. "GuzzleHttp\\": "src/"
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Graham Campbell",
  636. "email": "hello@gjcampbell.co.uk",
  637. "homepage": "https://github.com/GrahamCampbell"
  638. },
  639. {
  640. "name": "Michael Dowling",
  641. "email": "mtdowling@gmail.com",
  642. "homepage": "https://github.com/mtdowling"
  643. },
  644. {
  645. "name": "Jeremy Lindblom",
  646. "email": "jeremeamia@gmail.com",
  647. "homepage": "https://github.com/jeremeamia"
  648. },
  649. {
  650. "name": "George Mponos",
  651. "email": "gmponos@gmail.com",
  652. "homepage": "https://github.com/gmponos"
  653. },
  654. {
  655. "name": "Tobias Nyholm",
  656. "email": "tobias.nyholm@gmail.com",
  657. "homepage": "https://github.com/Nyholm"
  658. },
  659. {
  660. "name": "Márk Sági-Kazár",
  661. "email": "mark.sagikazar@gmail.com",
  662. "homepage": "https://github.com/sagikazarmark"
  663. },
  664. {
  665. "name": "Tobias Schultze",
  666. "email": "webmaster@tubo-world.de",
  667. "homepage": "https://github.com/Tobion"
  668. }
  669. ],
  670. "description": "Guzzle is a PHP HTTP client library",
  671. "keywords": [
  672. "client",
  673. "curl",
  674. "framework",
  675. "http",
  676. "http client",
  677. "psr-18",
  678. "psr-7",
  679. "rest",
  680. "web service"
  681. ],
  682. "support": {
  683. "issues": "https://github.com/guzzle/guzzle/issues",
  684. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  685. },
  686. "funding": [
  687. {
  688. "url": "https://github.com/GrahamCampbell",
  689. "type": "github"
  690. },
  691. {
  692. "url": "https://github.com/Nyholm",
  693. "type": "github"
  694. },
  695. {
  696. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  697. "type": "tidelift"
  698. }
  699. ],
  700. "time": "2022-08-28T15:39:27+00:00"
  701. },
  702. {
  703. "name": "guzzlehttp/promises",
  704. "version": "1.5.2",
  705. "source": {
  706. "type": "git",
  707. "url": "https://github.com/guzzle/promises.git",
  708. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  709. },
  710. "dist": {
  711. "type": "zip",
  712. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  713. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  714. "shasum": "",
  715. "mirrors": [
  716. {
  717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  718. "preferred": true
  719. }
  720. ]
  721. },
  722. "require": {
  723. "php": ">=5.5"
  724. },
  725. "require-dev": {
  726. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  727. },
  728. "type": "library",
  729. "extra": {
  730. "branch-alias": {
  731. "dev-master": "1.5-dev"
  732. }
  733. },
  734. "autoload": {
  735. "files": [
  736. "src/functions_include.php"
  737. ],
  738. "psr-4": {
  739. "GuzzleHttp\\Promise\\": "src/"
  740. }
  741. },
  742. "notification-url": "https://packagist.org/downloads/",
  743. "license": [
  744. "MIT"
  745. ],
  746. "authors": [
  747. {
  748. "name": "Graham Campbell",
  749. "email": "hello@gjcampbell.co.uk",
  750. "homepage": "https://github.com/GrahamCampbell"
  751. },
  752. {
  753. "name": "Michael Dowling",
  754. "email": "mtdowling@gmail.com",
  755. "homepage": "https://github.com/mtdowling"
  756. },
  757. {
  758. "name": "Tobias Nyholm",
  759. "email": "tobias.nyholm@gmail.com",
  760. "homepage": "https://github.com/Nyholm"
  761. },
  762. {
  763. "name": "Tobias Schultze",
  764. "email": "webmaster@tubo-world.de",
  765. "homepage": "https://github.com/Tobion"
  766. }
  767. ],
  768. "description": "Guzzle promises library",
  769. "keywords": [
  770. "promise"
  771. ],
  772. "support": {
  773. "issues": "https://github.com/guzzle/promises/issues",
  774. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  775. },
  776. "funding": [
  777. {
  778. "url": "https://github.com/GrahamCampbell",
  779. "type": "github"
  780. },
  781. {
  782. "url": "https://github.com/Nyholm",
  783. "type": "github"
  784. },
  785. {
  786. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  787. "type": "tidelift"
  788. }
  789. ],
  790. "time": "2022-08-28T14:55:35+00:00"
  791. },
  792. {
  793. "name": "guzzlehttp/psr7",
  794. "version": "2.4.3",
  795. "source": {
  796. "type": "git",
  797. "url": "https://github.com/guzzle/psr7.git",
  798. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  799. },
  800. "dist": {
  801. "type": "zip",
  802. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  803. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  804. "shasum": "",
  805. "mirrors": [
  806. {
  807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  808. "preferred": true
  809. }
  810. ]
  811. },
  812. "require": {
  813. "php": "^7.2.5 || ^8.0",
  814. "psr/http-factory": "^1.0",
  815. "psr/http-message": "^1.0",
  816. "ralouphie/getallheaders": "^3.0"
  817. },
  818. "provide": {
  819. "psr/http-factory-implementation": "1.0",
  820. "psr/http-message-implementation": "1.0"
  821. },
  822. "require-dev": {
  823. "bamarni/composer-bin-plugin": "^1.8.1",
  824. "http-interop/http-factory-tests": "^0.9",
  825. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  826. },
  827. "suggest": {
  828. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  829. },
  830. "type": "library",
  831. "extra": {
  832. "bamarni-bin": {
  833. "bin-links": true,
  834. "forward-command": false
  835. },
  836. "branch-alias": {
  837. "dev-master": "2.4-dev"
  838. }
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "GuzzleHttp\\Psr7\\": "src/"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "MIT"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Graham Campbell",
  852. "email": "hello@gjcampbell.co.uk",
  853. "homepage": "https://github.com/GrahamCampbell"
  854. },
  855. {
  856. "name": "Michael Dowling",
  857. "email": "mtdowling@gmail.com",
  858. "homepage": "https://github.com/mtdowling"
  859. },
  860. {
  861. "name": "George Mponos",
  862. "email": "gmponos@gmail.com",
  863. "homepage": "https://github.com/gmponos"
  864. },
  865. {
  866. "name": "Tobias Nyholm",
  867. "email": "tobias.nyholm@gmail.com",
  868. "homepage": "https://github.com/Nyholm"
  869. },
  870. {
  871. "name": "Márk Sági-Kazár",
  872. "email": "mark.sagikazar@gmail.com",
  873. "homepage": "https://github.com/sagikazarmark"
  874. },
  875. {
  876. "name": "Tobias Schultze",
  877. "email": "webmaster@tubo-world.de",
  878. "homepage": "https://github.com/Tobion"
  879. },
  880. {
  881. "name": "Márk Sági-Kazár",
  882. "email": "mark.sagikazar@gmail.com",
  883. "homepage": "https://sagikazarmark.hu"
  884. }
  885. ],
  886. "description": "PSR-7 message implementation that also provides common utility methods",
  887. "keywords": [
  888. "http",
  889. "message",
  890. "psr-7",
  891. "request",
  892. "response",
  893. "stream",
  894. "uri",
  895. "url"
  896. ],
  897. "support": {
  898. "issues": "https://github.com/guzzle/psr7/issues",
  899. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  900. },
  901. "funding": [
  902. {
  903. "url": "https://github.com/GrahamCampbell",
  904. "type": "github"
  905. },
  906. {
  907. "url": "https://github.com/Nyholm",
  908. "type": "github"
  909. },
  910. {
  911. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  912. "type": "tidelift"
  913. }
  914. ],
  915. "time": "2022-10-26T14:07:24+00:00"
  916. },
  917. {
  918. "name": "league/flysystem",
  919. "version": "1.1.10",
  920. "source": {
  921. "type": "git",
  922. "url": "https://github.com/thephpleague/flysystem.git",
  923. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  924. },
  925. "dist": {
  926. "type": "zip",
  927. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  928. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  929. "shasum": "",
  930. "mirrors": [
  931. {
  932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  933. "preferred": true
  934. }
  935. ]
  936. },
  937. "require": {
  938. "ext-fileinfo": "*",
  939. "league/mime-type-detection": "^1.3",
  940. "php": "^7.2.5 || ^8.0"
  941. },
  942. "conflict": {
  943. "league/flysystem-sftp": "<1.0.6"
  944. },
  945. "require-dev": {
  946. "phpspec/prophecy": "^1.11.1",
  947. "phpunit/phpunit": "^8.5.8"
  948. },
  949. "suggest": {
  950. "ext-ftp": "Allows you to use FTP server storage",
  951. "ext-openssl": "Allows you to use FTPS server storage",
  952. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  953. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  954. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  955. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  956. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  957. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  958. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  959. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  960. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  961. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  962. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  963. },
  964. "type": "library",
  965. "extra": {
  966. "branch-alias": {
  967. "dev-master": "1.1-dev"
  968. }
  969. },
  970. "autoload": {
  971. "psr-4": {
  972. "League\\Flysystem\\": "src/"
  973. }
  974. },
  975. "notification-url": "https://packagist.org/downloads/",
  976. "license": [
  977. "MIT"
  978. ],
  979. "authors": [
  980. {
  981. "name": "Frank de Jonge",
  982. "email": "info@frenky.net"
  983. }
  984. ],
  985. "description": "Filesystem abstraction: Many filesystems, one API.",
  986. "keywords": [
  987. "Cloud Files",
  988. "WebDAV",
  989. "abstraction",
  990. "aws",
  991. "cloud",
  992. "copy.com",
  993. "dropbox",
  994. "file systems",
  995. "files",
  996. "filesystem",
  997. "filesystems",
  998. "ftp",
  999. "rackspace",
  1000. "remote",
  1001. "s3",
  1002. "sftp",
  1003. "storage"
  1004. ],
  1005. "support": {
  1006. "issues": "https://github.com/thephpleague/flysystem/issues",
  1007. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1008. },
  1009. "funding": [
  1010. {
  1011. "url": "https://offset.earth/frankdejonge",
  1012. "type": "other"
  1013. }
  1014. ],
  1015. "time": "2022-10-04T09:16:37+00:00"
  1016. },
  1017. {
  1018. "name": "league/flysystem-cached-adapter",
  1019. "version": "1.1.0",
  1020. "source": {
  1021. "type": "git",
  1022. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1023. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  1024. },
  1025. "dist": {
  1026. "type": "zip",
  1027. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1028. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1029. "shasum": "",
  1030. "mirrors": [
  1031. {
  1032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1033. "preferred": true
  1034. }
  1035. ]
  1036. },
  1037. "require": {
  1038. "league/flysystem": "~1.0",
  1039. "psr/cache": "^1.0.0"
  1040. },
  1041. "require-dev": {
  1042. "mockery/mockery": "~0.9",
  1043. "phpspec/phpspec": "^3.4",
  1044. "phpunit/phpunit": "^5.7",
  1045. "predis/predis": "~1.0",
  1046. "tedivm/stash": "~0.12"
  1047. },
  1048. "suggest": {
  1049. "ext-phpredis": "Pure C implemented extension for PHP"
  1050. },
  1051. "type": "library",
  1052. "autoload": {
  1053. "psr-4": {
  1054. "League\\Flysystem\\Cached\\": "src/"
  1055. }
  1056. },
  1057. "notification-url": "https://packagist.org/downloads/",
  1058. "license": [
  1059. "MIT"
  1060. ],
  1061. "authors": [
  1062. {
  1063. "name": "frankdejonge",
  1064. "email": "info@frenky.net"
  1065. }
  1066. ],
  1067. "description": "An adapter decorator to enable meta-data caching.",
  1068. "support": {
  1069. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  1070. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  1071. },
  1072. "time": "2020-07-25T15:56:04+00:00"
  1073. },
  1074. {
  1075. "name": "league/mime-type-detection",
  1076. "version": "1.11.0",
  1077. "source": {
  1078. "type": "git",
  1079. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1080. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1081. },
  1082. "dist": {
  1083. "type": "zip",
  1084. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1085. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1086. "shasum": "",
  1087. "mirrors": [
  1088. {
  1089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1090. "preferred": true
  1091. }
  1092. ]
  1093. },
  1094. "require": {
  1095. "ext-fileinfo": "*",
  1096. "php": "^7.2 || ^8.0"
  1097. },
  1098. "require-dev": {
  1099. "friendsofphp/php-cs-fixer": "^3.2",
  1100. "phpstan/phpstan": "^0.12.68",
  1101. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1102. },
  1103. "type": "library",
  1104. "autoload": {
  1105. "psr-4": {
  1106. "League\\MimeTypeDetection\\": "src"
  1107. }
  1108. },
  1109. "notification-url": "https://packagist.org/downloads/",
  1110. "license": [
  1111. "MIT"
  1112. ],
  1113. "authors": [
  1114. {
  1115. "name": "Frank de Jonge",
  1116. "email": "info@frankdejonge.nl"
  1117. }
  1118. ],
  1119. "description": "Mime-type detection for Flysystem",
  1120. "support": {
  1121. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1122. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1123. },
  1124. "funding": [
  1125. {
  1126. "url": "https://github.com/frankdejonge",
  1127. "type": "github"
  1128. },
  1129. {
  1130. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1131. "type": "tidelift"
  1132. }
  1133. ],
  1134. "time": "2022-04-17T13:12:02+00:00"
  1135. },
  1136. {
  1137. "name": "monolog/monolog",
  1138. "version": "2.9.0",
  1139. "source": {
  1140. "type": "git",
  1141. "url": "https://github.com/Seldaek/monolog.git",
  1142. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb"
  1143. },
  1144. "dist": {
  1145. "type": "zip",
  1146. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  1147. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  1148. "shasum": "",
  1149. "mirrors": [
  1150. {
  1151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1152. "preferred": true
  1153. }
  1154. ]
  1155. },
  1156. "require": {
  1157. "php": ">=7.2",
  1158. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1159. },
  1160. "provide": {
  1161. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1162. },
  1163. "require-dev": {
  1164. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1165. "doctrine/couchdb": "~1.0@dev",
  1166. "elasticsearch/elasticsearch": "^7 || ^8",
  1167. "ext-json": "*",
  1168. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1169. "guzzlehttp/guzzle": "^7.4",
  1170. "guzzlehttp/psr7": "^2.2",
  1171. "mongodb/mongodb": "^1.8",
  1172. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1173. "phpspec/prophecy": "^1.15",
  1174. "phpstan/phpstan": "^0.12.91",
  1175. "phpunit/phpunit": "^8.5.14",
  1176. "predis/predis": "^1.1 || ^2.0",
  1177. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1178. "ruflin/elastica": "^7",
  1179. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1180. "symfony/mailer": "^5.4 || ^6",
  1181. "symfony/mime": "^5.4 || ^6"
  1182. },
  1183. "suggest": {
  1184. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1185. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1186. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1187. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1188. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1189. "ext-mbstring": "Allow to work properly with unicode symbols",
  1190. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1191. "ext-openssl": "Required to send log messages using SSL",
  1192. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1193. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1194. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1195. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1196. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1197. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1198. },
  1199. "type": "library",
  1200. "extra": {
  1201. "branch-alias": {
  1202. "dev-main": "2.x-dev"
  1203. }
  1204. },
  1205. "autoload": {
  1206. "psr-4": {
  1207. "Monolog\\": "src/Monolog"
  1208. }
  1209. },
  1210. "notification-url": "https://packagist.org/downloads/",
  1211. "license": [
  1212. "MIT"
  1213. ],
  1214. "authors": [
  1215. {
  1216. "name": "Jordi Boggiano",
  1217. "email": "j.boggiano@seld.be",
  1218. "homepage": "https://seld.be"
  1219. }
  1220. ],
  1221. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1222. "homepage": "https://github.com/Seldaek/monolog",
  1223. "keywords": [
  1224. "log",
  1225. "logging",
  1226. "psr-3"
  1227. ],
  1228. "support": {
  1229. "issues": "https://github.com/Seldaek/monolog/issues",
  1230. "source": "https://github.com/Seldaek/monolog/tree/2.9.0"
  1231. },
  1232. "funding": [
  1233. {
  1234. "url": "https://github.com/Seldaek",
  1235. "type": "github"
  1236. },
  1237. {
  1238. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1239. "type": "tidelift"
  1240. }
  1241. ],
  1242. "time": "2023-02-05T13:07:32+00:00"
  1243. },
  1244. {
  1245. "name": "mtdowling/jmespath.php",
  1246. "version": "2.6.1",
  1247. "source": {
  1248. "type": "git",
  1249. "url": "https://github.com/jmespath/jmespath.php.git",
  1250. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  1251. },
  1252. "dist": {
  1253. "type": "zip",
  1254. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1255. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  1256. "shasum": "",
  1257. "mirrors": [
  1258. {
  1259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1260. "preferred": true
  1261. }
  1262. ]
  1263. },
  1264. "require": {
  1265. "php": "^5.4 || ^7.0 || ^8.0",
  1266. "symfony/polyfill-mbstring": "^1.17"
  1267. },
  1268. "require-dev": {
  1269. "composer/xdebug-handler": "^1.4 || ^2.0",
  1270. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  1271. },
  1272. "bin": [
  1273. "bin/jp.php"
  1274. ],
  1275. "type": "library",
  1276. "extra": {
  1277. "branch-alias": {
  1278. "dev-master": "2.6-dev"
  1279. }
  1280. },
  1281. "autoload": {
  1282. "files": [
  1283. "src/JmesPath.php"
  1284. ],
  1285. "psr-4": {
  1286. "JmesPath\\": "src/"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "Michael Dowling",
  1296. "email": "mtdowling@gmail.com",
  1297. "homepage": "https://github.com/mtdowling"
  1298. }
  1299. ],
  1300. "description": "Declaratively specify how to extract elements from a JSON document",
  1301. "keywords": [
  1302. "json",
  1303. "jsonpath"
  1304. ],
  1305. "support": {
  1306. "issues": "https://github.com/jmespath/jmespath.php/issues",
  1307. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  1308. },
  1309. "time": "2021-06-14T00:11:39+00:00"
  1310. },
  1311. {
  1312. "name": "myclabs/php-enum",
  1313. "version": "1.6.6",
  1314. "source": {
  1315. "type": "git",
  1316. "url": "https://github.com/myclabs/php-enum.git",
  1317. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  1318. },
  1319. "dist": {
  1320. "type": "zip",
  1321. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  1322. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  1323. "shasum": "",
  1324. "mirrors": [
  1325. {
  1326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1327. "preferred": true
  1328. }
  1329. ]
  1330. },
  1331. "require": {
  1332. "ext-json": "*",
  1333. "php": ">=5.4"
  1334. },
  1335. "require-dev": {
  1336. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  1337. "squizlabs/php_codesniffer": "1.*"
  1338. },
  1339. "type": "library",
  1340. "autoload": {
  1341. "psr-4": {
  1342. "MyCLabs\\Enum\\": "src/"
  1343. }
  1344. },
  1345. "notification-url": "https://packagist.org/downloads/",
  1346. "license": [
  1347. "MIT"
  1348. ],
  1349. "authors": [
  1350. {
  1351. "name": "PHP Enum contributors",
  1352. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1353. }
  1354. ],
  1355. "description": "PHP Enum implementation",
  1356. "homepage": "http://github.com/myclabs/php-enum",
  1357. "keywords": [
  1358. "enum"
  1359. ],
  1360. "support": {
  1361. "issues": "https://github.com/myclabs/php-enum/issues",
  1362. "source": "https://github.com/myclabs/php-enum/tree/master"
  1363. },
  1364. "time": "2019-02-04T21:18:49+00:00"
  1365. },
  1366. {
  1367. "name": "overtrue/socialite",
  1368. "version": "2.0.24",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/overtrue/socialite.git",
  1372. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1377. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1378. "shasum": "",
  1379. "mirrors": [
  1380. {
  1381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1382. "preferred": true
  1383. }
  1384. ]
  1385. },
  1386. "require": {
  1387. "ext-json": "*",
  1388. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  1389. "php": ">=5.6",
  1390. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  1391. },
  1392. "require-dev": {
  1393. "mockery/mockery": "~1.2",
  1394. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  1395. },
  1396. "type": "library",
  1397. "autoload": {
  1398. "psr-4": {
  1399. "Overtrue\\Socialite\\": "src/"
  1400. }
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "MIT"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "overtrue",
  1409. "email": "anzhengchao@gmail.com"
  1410. }
  1411. ],
  1412. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1413. "keywords": [
  1414. "login",
  1415. "oauth",
  1416. "qq",
  1417. "social",
  1418. "wechat",
  1419. "weibo"
  1420. ],
  1421. "support": {
  1422. "issues": "https://github.com/overtrue/socialite/issues",
  1423. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  1424. },
  1425. "funding": [
  1426. {
  1427. "url": "https://www.patreon.com/overtrue",
  1428. "type": "patreon"
  1429. }
  1430. ],
  1431. "time": "2021-05-13T16:04:48+00:00"
  1432. },
  1433. {
  1434. "name": "overtrue/wechat",
  1435. "version": "4.6.0",
  1436. "source": {
  1437. "type": "git",
  1438. "url": "https://github.com/w7corp/easywechat.git",
  1439. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1"
  1440. },
  1441. "dist": {
  1442. "type": "zip",
  1443. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/52af4cbe777cd4aea307beafa0a4518c347467b1",
  1444. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1",
  1445. "shasum": "",
  1446. "mirrors": [
  1447. {
  1448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1449. "preferred": true
  1450. }
  1451. ]
  1452. },
  1453. "require": {
  1454. "easywechat-composer/easywechat-composer": "^1.1",
  1455. "ext-fileinfo": "*",
  1456. "ext-openssl": "*",
  1457. "ext-simplexml": "*",
  1458. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1459. "monolog/monolog": "^1.22 || ^2.0",
  1460. "overtrue/socialite": "~2.0",
  1461. "php": ">=7.2",
  1462. "pimple/pimple": "^3.0",
  1463. "psr/simple-cache": "^1.0",
  1464. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  1465. "symfony/event-dispatcher": "^4.3 || ^5.0",
  1466. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  1467. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  1468. },
  1469. "require-dev": {
  1470. "friendsofphp/php-cs-fixer": "^2.15",
  1471. "mikey179/vfsstream": "^1.6",
  1472. "mockery/mockery": "^1.2.3",
  1473. "phpstan/phpstan": "^0.12.0",
  1474. "phpunit/phpunit": "^7.5"
  1475. },
  1476. "type": "library",
  1477. "autoload": {
  1478. "files": [
  1479. "src/Kernel/Support/Helpers.php",
  1480. "src/Kernel/Helpers.php"
  1481. ],
  1482. "psr-4": {
  1483. "EasyWeChat\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "overtrue",
  1493. "email": "anzhengchao@gmail.com"
  1494. }
  1495. ],
  1496. "description": "微信SDK",
  1497. "keywords": [
  1498. "easywechat",
  1499. "sdk",
  1500. "wechat",
  1501. "weixin",
  1502. "weixin-sdk"
  1503. ],
  1504. "support": {
  1505. "issues": "https://github.com/w7corp/easywechat/issues",
  1506. "source": "https://github.com/w7corp/easywechat/tree/4.6.0"
  1507. },
  1508. "funding": [
  1509. {
  1510. "url": "https://github.com/overtrue",
  1511. "type": "github"
  1512. }
  1513. ],
  1514. "abandoned": "w7corp/easywechat",
  1515. "time": "2022-08-24T07:30:42+00:00"
  1516. },
  1517. {
  1518. "name": "pimple/pimple",
  1519. "version": "v3.5.0",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/silexphp/Pimple.git",
  1523. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1528. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1529. "shasum": "",
  1530. "mirrors": [
  1531. {
  1532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1533. "preferred": true
  1534. }
  1535. ]
  1536. },
  1537. "require": {
  1538. "php": ">=7.2.5",
  1539. "psr/container": "^1.1 || ^2.0"
  1540. },
  1541. "require-dev": {
  1542. "symfony/phpunit-bridge": "^5.4@dev"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "3.4.x-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-0": {
  1552. "Pimple": "src/"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "Fabien Potencier",
  1562. "email": "fabien@symfony.com"
  1563. }
  1564. ],
  1565. "description": "Pimple, a simple Dependency Injection Container",
  1566. "homepage": "https://pimple.symfony.com",
  1567. "keywords": [
  1568. "container",
  1569. "dependency injection"
  1570. ],
  1571. "support": {
  1572. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  1573. },
  1574. "time": "2021-10-28T11:13:42+00:00"
  1575. },
  1576. {
  1577. "name": "psr/cache",
  1578. "version": "1.0.1",
  1579. "source": {
  1580. "type": "git",
  1581. "url": "https://github.com/php-fig/cache.git",
  1582. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1583. },
  1584. "dist": {
  1585. "type": "zip",
  1586. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1587. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1588. "shasum": "",
  1589. "mirrors": [
  1590. {
  1591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1592. "preferred": true
  1593. }
  1594. ]
  1595. },
  1596. "require": {
  1597. "php": ">=5.3.0"
  1598. },
  1599. "type": "library",
  1600. "extra": {
  1601. "branch-alias": {
  1602. "dev-master": "1.0.x-dev"
  1603. }
  1604. },
  1605. "autoload": {
  1606. "psr-4": {
  1607. "Psr\\Cache\\": "src/"
  1608. }
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "license": [
  1612. "MIT"
  1613. ],
  1614. "authors": [
  1615. {
  1616. "name": "PHP-FIG",
  1617. "homepage": "http://www.php-fig.org/"
  1618. }
  1619. ],
  1620. "description": "Common interface for caching libraries",
  1621. "keywords": [
  1622. "cache",
  1623. "psr",
  1624. "psr-6"
  1625. ],
  1626. "support": {
  1627. "source": "https://github.com/php-fig/cache/tree/master"
  1628. },
  1629. "time": "2016-08-06T20:24:11+00:00"
  1630. },
  1631. {
  1632. "name": "psr/container",
  1633. "version": "1.1.2",
  1634. "source": {
  1635. "type": "git",
  1636. "url": "https://github.com/php-fig/container.git",
  1637. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1638. },
  1639. "dist": {
  1640. "type": "zip",
  1641. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1642. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1643. "shasum": "",
  1644. "mirrors": [
  1645. {
  1646. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1647. "preferred": true
  1648. }
  1649. ]
  1650. },
  1651. "require": {
  1652. "php": ">=7.4.0"
  1653. },
  1654. "type": "library",
  1655. "autoload": {
  1656. "psr-4": {
  1657. "Psr\\Container\\": "src/"
  1658. }
  1659. },
  1660. "notification-url": "https://packagist.org/downloads/",
  1661. "license": [
  1662. "MIT"
  1663. ],
  1664. "authors": [
  1665. {
  1666. "name": "PHP-FIG",
  1667. "homepage": "https://www.php-fig.org/"
  1668. }
  1669. ],
  1670. "description": "Common Container Interface (PHP FIG PSR-11)",
  1671. "homepage": "https://github.com/php-fig/container",
  1672. "keywords": [
  1673. "PSR-11",
  1674. "container",
  1675. "container-interface",
  1676. "container-interop",
  1677. "psr"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/php-fig/container/issues",
  1681. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1682. },
  1683. "time": "2021-11-05T16:50:12+00:00"
  1684. },
  1685. {
  1686. "name": "psr/event-dispatcher",
  1687. "version": "1.0.0",
  1688. "source": {
  1689. "type": "git",
  1690. "url": "https://github.com/php-fig/event-dispatcher.git",
  1691. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1692. },
  1693. "dist": {
  1694. "type": "zip",
  1695. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1696. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1697. "shasum": "",
  1698. "mirrors": [
  1699. {
  1700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1701. "preferred": true
  1702. }
  1703. ]
  1704. },
  1705. "require": {
  1706. "php": ">=7.2.0"
  1707. },
  1708. "type": "library",
  1709. "extra": {
  1710. "branch-alias": {
  1711. "dev-master": "1.0.x-dev"
  1712. }
  1713. },
  1714. "autoload": {
  1715. "psr-4": {
  1716. "Psr\\EventDispatcher\\": "src/"
  1717. }
  1718. },
  1719. "notification-url": "https://packagist.org/downloads/",
  1720. "license": [
  1721. "MIT"
  1722. ],
  1723. "authors": [
  1724. {
  1725. "name": "PHP-FIG",
  1726. "homepage": "http://www.php-fig.org/"
  1727. }
  1728. ],
  1729. "description": "Standard interfaces for event handling.",
  1730. "keywords": [
  1731. "events",
  1732. "psr",
  1733. "psr-14"
  1734. ],
  1735. "support": {
  1736. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1737. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1738. },
  1739. "time": "2019-01-08T18:20:26+00:00"
  1740. },
  1741. {
  1742. "name": "psr/http-client",
  1743. "version": "1.0.1",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/php-fig/http-client.git",
  1747. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1752. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1753. "shasum": "",
  1754. "mirrors": [
  1755. {
  1756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1757. "preferred": true
  1758. }
  1759. ]
  1760. },
  1761. "require": {
  1762. "php": "^7.0 || ^8.0",
  1763. "psr/http-message": "^1.0"
  1764. },
  1765. "type": "library",
  1766. "extra": {
  1767. "branch-alias": {
  1768. "dev-master": "1.0.x-dev"
  1769. }
  1770. },
  1771. "autoload": {
  1772. "psr-4": {
  1773. "Psr\\Http\\Client\\": "src/"
  1774. }
  1775. },
  1776. "notification-url": "https://packagist.org/downloads/",
  1777. "license": [
  1778. "MIT"
  1779. ],
  1780. "authors": [
  1781. {
  1782. "name": "PHP-FIG",
  1783. "homepage": "http://www.php-fig.org/"
  1784. }
  1785. ],
  1786. "description": "Common interface for HTTP clients",
  1787. "homepage": "https://github.com/php-fig/http-client",
  1788. "keywords": [
  1789. "http",
  1790. "http-client",
  1791. "psr",
  1792. "psr-18"
  1793. ],
  1794. "support": {
  1795. "source": "https://github.com/php-fig/http-client/tree/master"
  1796. },
  1797. "time": "2020-06-29T06:28:15+00:00"
  1798. },
  1799. {
  1800. "name": "psr/http-factory",
  1801. "version": "1.0.1",
  1802. "source": {
  1803. "type": "git",
  1804. "url": "https://github.com/php-fig/http-factory.git",
  1805. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1806. },
  1807. "dist": {
  1808. "type": "zip",
  1809. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1810. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1811. "shasum": "",
  1812. "mirrors": [
  1813. {
  1814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1815. "preferred": true
  1816. }
  1817. ]
  1818. },
  1819. "require": {
  1820. "php": ">=7.0.0",
  1821. "psr/http-message": "^1.0"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "branch-alias": {
  1826. "dev-master": "1.0.x-dev"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Psr\\Http\\Message\\": "src/"
  1832. }
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "MIT"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "PHP-FIG",
  1841. "homepage": "http://www.php-fig.org/"
  1842. }
  1843. ],
  1844. "description": "Common interfaces for PSR-7 HTTP message factories",
  1845. "keywords": [
  1846. "factory",
  1847. "http",
  1848. "message",
  1849. "psr",
  1850. "psr-17",
  1851. "psr-7",
  1852. "request",
  1853. "response"
  1854. ],
  1855. "support": {
  1856. "source": "https://github.com/php-fig/http-factory/tree/master"
  1857. },
  1858. "time": "2019-04-30T12:38:16+00:00"
  1859. },
  1860. {
  1861. "name": "psr/http-message",
  1862. "version": "1.0.1",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/php-fig/http-message.git",
  1866. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1871. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1872. "shasum": "",
  1873. "mirrors": [
  1874. {
  1875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1876. "preferred": true
  1877. }
  1878. ]
  1879. },
  1880. "require": {
  1881. "php": ">=5.3.0"
  1882. },
  1883. "type": "library",
  1884. "extra": {
  1885. "branch-alias": {
  1886. "dev-master": "1.0.x-dev"
  1887. }
  1888. },
  1889. "autoload": {
  1890. "psr-4": {
  1891. "Psr\\Http\\Message\\": "src/"
  1892. }
  1893. },
  1894. "notification-url": "https://packagist.org/downloads/",
  1895. "license": [
  1896. "MIT"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "PHP-FIG",
  1901. "homepage": "http://www.php-fig.org/"
  1902. }
  1903. ],
  1904. "description": "Common interface for HTTP messages",
  1905. "homepage": "https://github.com/php-fig/http-message",
  1906. "keywords": [
  1907. "http",
  1908. "http-message",
  1909. "psr",
  1910. "psr-7",
  1911. "request",
  1912. "response"
  1913. ],
  1914. "support": {
  1915. "source": "https://github.com/php-fig/http-message/tree/master"
  1916. },
  1917. "time": "2016-08-06T14:39:51+00:00"
  1918. },
  1919. {
  1920. "name": "psr/log",
  1921. "version": "1.1.4",
  1922. "source": {
  1923. "type": "git",
  1924. "url": "https://github.com/php-fig/log.git",
  1925. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1926. },
  1927. "dist": {
  1928. "type": "zip",
  1929. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1930. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1931. "shasum": "",
  1932. "mirrors": [
  1933. {
  1934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1935. "preferred": true
  1936. }
  1937. ]
  1938. },
  1939. "require": {
  1940. "php": ">=5.3.0"
  1941. },
  1942. "type": "library",
  1943. "extra": {
  1944. "branch-alias": {
  1945. "dev-master": "1.1.x-dev"
  1946. }
  1947. },
  1948. "autoload": {
  1949. "psr-4": {
  1950. "Psr\\Log\\": "Psr/Log/"
  1951. }
  1952. },
  1953. "notification-url": "https://packagist.org/downloads/",
  1954. "license": [
  1955. "MIT"
  1956. ],
  1957. "authors": [
  1958. {
  1959. "name": "PHP-FIG",
  1960. "homepage": "https://www.php-fig.org/"
  1961. }
  1962. ],
  1963. "description": "Common interface for logging libraries",
  1964. "homepage": "https://github.com/php-fig/log",
  1965. "keywords": [
  1966. "log",
  1967. "psr",
  1968. "psr-3"
  1969. ],
  1970. "support": {
  1971. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1972. },
  1973. "time": "2021-05-03T11:20:27+00:00"
  1974. },
  1975. {
  1976. "name": "psr/simple-cache",
  1977. "version": "1.0.1",
  1978. "source": {
  1979. "type": "git",
  1980. "url": "https://github.com/php-fig/simple-cache.git",
  1981. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1982. },
  1983. "dist": {
  1984. "type": "zip",
  1985. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1986. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1987. "shasum": "",
  1988. "mirrors": [
  1989. {
  1990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1991. "preferred": true
  1992. }
  1993. ]
  1994. },
  1995. "require": {
  1996. "php": ">=5.3.0"
  1997. },
  1998. "type": "library",
  1999. "extra": {
  2000. "branch-alias": {
  2001. "dev-master": "1.0.x-dev"
  2002. }
  2003. },
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Psr\\SimpleCache\\": "src/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "PHP-FIG",
  2016. "homepage": "http://www.php-fig.org/"
  2017. }
  2018. ],
  2019. "description": "Common interfaces for simple caching",
  2020. "keywords": [
  2021. "cache",
  2022. "caching",
  2023. "psr",
  2024. "psr-16",
  2025. "simple-cache"
  2026. ],
  2027. "support": {
  2028. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2029. },
  2030. "time": "2017-10-23T01:57:42+00:00"
  2031. },
  2032. {
  2033. "name": "qiniu/php-sdk",
  2034. "version": "v7.7.0",
  2035. "source": {
  2036. "type": "git",
  2037. "url": "https://github.com/qiniu/php-sdk.git",
  2038. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1"
  2039. },
  2040. "dist": {
  2041. "type": "zip",
  2042. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  2043. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  2044. "shasum": "",
  2045. "mirrors": [
  2046. {
  2047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2048. "preferred": true
  2049. }
  2050. ]
  2051. },
  2052. "require": {
  2053. "myclabs/php-enum": "1.6.6",
  2054. "php": ">=5.3.3"
  2055. },
  2056. "require-dev": {
  2057. "paragonie/random_compat": ">=2",
  2058. "phpunit/phpunit": "~4.0",
  2059. "squizlabs/php_codesniffer": "~3.6"
  2060. },
  2061. "type": "library",
  2062. "autoload": {
  2063. "files": [
  2064. "src/Qiniu/functions.php"
  2065. ],
  2066. "psr-4": {
  2067. "Qiniu\\": "src/Qiniu"
  2068. }
  2069. },
  2070. "notification-url": "https://packagist.org/downloads/",
  2071. "license": [
  2072. "MIT"
  2073. ],
  2074. "authors": [
  2075. {
  2076. "name": "Qiniu",
  2077. "email": "sdk@qiniu.com",
  2078. "homepage": "http://www.qiniu.com"
  2079. }
  2080. ],
  2081. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2082. "homepage": "http://developer.qiniu.com/",
  2083. "keywords": [
  2084. "cloud",
  2085. "qiniu",
  2086. "sdk",
  2087. "storage"
  2088. ],
  2089. "support": {
  2090. "issues": "https://github.com/qiniu/php-sdk/issues",
  2091. "source": "https://github.com/qiniu/php-sdk/tree/v7.7.0"
  2092. },
  2093. "time": "2022-09-02T10:53:05+00:00"
  2094. },
  2095. {
  2096. "name": "ralouphie/getallheaders",
  2097. "version": "3.0.3",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/ralouphie/getallheaders.git",
  2101. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2106. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2107. "shasum": "",
  2108. "mirrors": [
  2109. {
  2110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2111. "preferred": true
  2112. }
  2113. ]
  2114. },
  2115. "require": {
  2116. "php": ">=5.6"
  2117. },
  2118. "require-dev": {
  2119. "php-coveralls/php-coveralls": "^2.1",
  2120. "phpunit/phpunit": "^5 || ^6.5"
  2121. },
  2122. "type": "library",
  2123. "autoload": {
  2124. "files": [
  2125. "src/getallheaders.php"
  2126. ]
  2127. },
  2128. "notification-url": "https://packagist.org/downloads/",
  2129. "license": [
  2130. "MIT"
  2131. ],
  2132. "authors": [
  2133. {
  2134. "name": "Ralph Khattar",
  2135. "email": "ralph.khattar@gmail.com"
  2136. }
  2137. ],
  2138. "description": "A polyfill for getallheaders.",
  2139. "support": {
  2140. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2141. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2142. },
  2143. "time": "2019-03-08T08:55:37+00:00"
  2144. },
  2145. {
  2146. "name": "symfony/cache",
  2147. "version": "v5.4.21",
  2148. "source": {
  2149. "type": "git",
  2150. "url": "https://github.com/symfony/cache.git",
  2151. "reference": "32cab695bf99c63aff7d27ac67919944c00530ed"
  2152. },
  2153. "dist": {
  2154. "type": "zip",
  2155. "url": "https://api.github.com/repos/symfony/cache/zipball/32cab695bf99c63aff7d27ac67919944c00530ed",
  2156. "reference": "32cab695bf99c63aff7d27ac67919944c00530ed",
  2157. "shasum": "",
  2158. "mirrors": [
  2159. {
  2160. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2161. "preferred": true
  2162. }
  2163. ]
  2164. },
  2165. "require": {
  2166. "php": ">=7.2.5",
  2167. "psr/cache": "^1.0|^2.0",
  2168. "psr/log": "^1.1|^2|^3",
  2169. "symfony/cache-contracts": "^1.1.7|^2",
  2170. "symfony/deprecation-contracts": "^2.1|^3",
  2171. "symfony/polyfill-php73": "^1.9",
  2172. "symfony/polyfill-php80": "^1.16",
  2173. "symfony/service-contracts": "^1.1|^2|^3",
  2174. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2175. },
  2176. "conflict": {
  2177. "doctrine/dbal": "<2.13.1",
  2178. "symfony/dependency-injection": "<4.4",
  2179. "symfony/http-kernel": "<4.4",
  2180. "symfony/var-dumper": "<4.4"
  2181. },
  2182. "provide": {
  2183. "psr/cache-implementation": "1.0|2.0",
  2184. "psr/simple-cache-implementation": "1.0|2.0",
  2185. "symfony/cache-implementation": "1.0|2.0"
  2186. },
  2187. "require-dev": {
  2188. "cache/integration-tests": "dev-master",
  2189. "doctrine/cache": "^1.6|^2.0",
  2190. "doctrine/dbal": "^2.13.1|^3.0",
  2191. "predis/predis": "^1.1",
  2192. "psr/simple-cache": "^1.0|^2.0",
  2193. "symfony/config": "^4.4|^5.0|^6.0",
  2194. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2195. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2196. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2197. "symfony/messenger": "^4.4|^5.0|^6.0",
  2198. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2199. },
  2200. "type": "library",
  2201. "autoload": {
  2202. "psr-4": {
  2203. "Symfony\\Component\\Cache\\": ""
  2204. },
  2205. "exclude-from-classmap": [
  2206. "/Tests/"
  2207. ]
  2208. },
  2209. "notification-url": "https://packagist.org/downloads/",
  2210. "license": [
  2211. "MIT"
  2212. ],
  2213. "authors": [
  2214. {
  2215. "name": "Nicolas Grekas",
  2216. "email": "p@tchwork.com"
  2217. },
  2218. {
  2219. "name": "Symfony Community",
  2220. "homepage": "https://symfony.com/contributors"
  2221. }
  2222. ],
  2223. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2224. "homepage": "https://symfony.com",
  2225. "keywords": [
  2226. "caching",
  2227. "psr6"
  2228. ],
  2229. "support": {
  2230. "source": "https://github.com/symfony/cache/tree/v5.4.21"
  2231. },
  2232. "funding": [
  2233. {
  2234. "url": "https://symfony.com/sponsor",
  2235. "type": "custom"
  2236. },
  2237. {
  2238. "url": "https://github.com/fabpot",
  2239. "type": "github"
  2240. },
  2241. {
  2242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2243. "type": "tidelift"
  2244. }
  2245. ],
  2246. "time": "2023-02-21T12:11:13+00:00"
  2247. },
  2248. {
  2249. "name": "symfony/cache-contracts",
  2250. "version": "v2.5.2",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/symfony/cache-contracts.git",
  2254. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2259. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2260. "shasum": "",
  2261. "mirrors": [
  2262. {
  2263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2264. "preferred": true
  2265. }
  2266. ]
  2267. },
  2268. "require": {
  2269. "php": ">=7.2.5",
  2270. "psr/cache": "^1.0|^2.0|^3.0"
  2271. },
  2272. "suggest": {
  2273. "symfony/cache-implementation": ""
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "branch-alias": {
  2278. "dev-main": "2.5-dev"
  2279. },
  2280. "thanks": {
  2281. "name": "symfony/contracts",
  2282. "url": "https://github.com/symfony/contracts"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Symfony\\Contracts\\Cache\\": ""
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "authors": [
  2295. {
  2296. "name": "Nicolas Grekas",
  2297. "email": "p@tchwork.com"
  2298. },
  2299. {
  2300. "name": "Symfony Community",
  2301. "homepage": "https://symfony.com/contributors"
  2302. }
  2303. ],
  2304. "description": "Generic abstractions related to caching",
  2305. "homepage": "https://symfony.com",
  2306. "keywords": [
  2307. "abstractions",
  2308. "contracts",
  2309. "decoupling",
  2310. "interfaces",
  2311. "interoperability",
  2312. "standards"
  2313. ],
  2314. "support": {
  2315. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  2316. },
  2317. "funding": [
  2318. {
  2319. "url": "https://symfony.com/sponsor",
  2320. "type": "custom"
  2321. },
  2322. {
  2323. "url": "https://github.com/fabpot",
  2324. "type": "github"
  2325. },
  2326. {
  2327. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2328. "type": "tidelift"
  2329. }
  2330. ],
  2331. "time": "2022-01-02T09:53:40+00:00"
  2332. },
  2333. {
  2334. "name": "symfony/deprecation-contracts",
  2335. "version": "v2.5.2",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://github.com/symfony/deprecation-contracts.git",
  2339. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2340. },
  2341. "dist": {
  2342. "type": "zip",
  2343. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2344. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2345. "shasum": "",
  2346. "mirrors": [
  2347. {
  2348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2349. "preferred": true
  2350. }
  2351. ]
  2352. },
  2353. "require": {
  2354. "php": ">=7.1"
  2355. },
  2356. "type": "library",
  2357. "extra": {
  2358. "branch-alias": {
  2359. "dev-main": "2.5-dev"
  2360. },
  2361. "thanks": {
  2362. "name": "symfony/contracts",
  2363. "url": "https://github.com/symfony/contracts"
  2364. }
  2365. },
  2366. "autoload": {
  2367. "files": [
  2368. "function.php"
  2369. ]
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Nicolas Grekas",
  2378. "email": "p@tchwork.com"
  2379. },
  2380. {
  2381. "name": "Symfony Community",
  2382. "homepage": "https://symfony.com/contributors"
  2383. }
  2384. ],
  2385. "description": "A generic function and convention to trigger deprecation notices",
  2386. "homepage": "https://symfony.com",
  2387. "support": {
  2388. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2389. },
  2390. "funding": [
  2391. {
  2392. "url": "https://symfony.com/sponsor",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://github.com/fabpot",
  2397. "type": "github"
  2398. },
  2399. {
  2400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2401. "type": "tidelift"
  2402. }
  2403. ],
  2404. "time": "2022-01-02T09:53:40+00:00"
  2405. },
  2406. {
  2407. "name": "symfony/event-dispatcher",
  2408. "version": "v5.4.21",
  2409. "source": {
  2410. "type": "git",
  2411. "url": "https://github.com/symfony/event-dispatcher.git",
  2412. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a"
  2413. },
  2414. "dist": {
  2415. "type": "zip",
  2416. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f0ae1383a8285dfc6752b8d8602790953118ff5a",
  2417. "reference": "f0ae1383a8285dfc6752b8d8602790953118ff5a",
  2418. "shasum": "",
  2419. "mirrors": [
  2420. {
  2421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2422. "preferred": true
  2423. }
  2424. ]
  2425. },
  2426. "require": {
  2427. "php": ">=7.2.5",
  2428. "symfony/deprecation-contracts": "^2.1|^3",
  2429. "symfony/event-dispatcher-contracts": "^2|^3",
  2430. "symfony/polyfill-php80": "^1.16"
  2431. },
  2432. "conflict": {
  2433. "symfony/dependency-injection": "<4.4"
  2434. },
  2435. "provide": {
  2436. "psr/event-dispatcher-implementation": "1.0",
  2437. "symfony/event-dispatcher-implementation": "2.0"
  2438. },
  2439. "require-dev": {
  2440. "psr/log": "^1|^2|^3",
  2441. "symfony/config": "^4.4|^5.0|^6.0",
  2442. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2443. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2444. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2445. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  2446. "symfony/service-contracts": "^1.1|^2|^3",
  2447. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  2448. },
  2449. "suggest": {
  2450. "symfony/dependency-injection": "",
  2451. "symfony/http-kernel": ""
  2452. },
  2453. "type": "library",
  2454. "autoload": {
  2455. "psr-4": {
  2456. "Symfony\\Component\\EventDispatcher\\": ""
  2457. },
  2458. "exclude-from-classmap": [
  2459. "/Tests/"
  2460. ]
  2461. },
  2462. "notification-url": "https://packagist.org/downloads/",
  2463. "license": [
  2464. "MIT"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "Fabien Potencier",
  2469. "email": "fabien@symfony.com"
  2470. },
  2471. {
  2472. "name": "Symfony Community",
  2473. "homepage": "https://symfony.com/contributors"
  2474. }
  2475. ],
  2476. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2477. "homepage": "https://symfony.com",
  2478. "support": {
  2479. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.21"
  2480. },
  2481. "funding": [
  2482. {
  2483. "url": "https://symfony.com/sponsor",
  2484. "type": "custom"
  2485. },
  2486. {
  2487. "url": "https://github.com/fabpot",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2492. "type": "tidelift"
  2493. }
  2494. ],
  2495. "time": "2023-02-14T08:03:56+00:00"
  2496. },
  2497. {
  2498. "name": "symfony/event-dispatcher-contracts",
  2499. "version": "v2.5.2",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2503. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  2508. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "require": {
  2518. "php": ">=7.2.5",
  2519. "psr/event-dispatcher": "^1"
  2520. },
  2521. "suggest": {
  2522. "symfony/event-dispatcher-implementation": ""
  2523. },
  2524. "type": "library",
  2525. "extra": {
  2526. "branch-alias": {
  2527. "dev-main": "2.5-dev"
  2528. },
  2529. "thanks": {
  2530. "name": "symfony/contracts",
  2531. "url": "https://github.com/symfony/contracts"
  2532. }
  2533. },
  2534. "autoload": {
  2535. "psr-4": {
  2536. "Symfony\\Contracts\\EventDispatcher\\": ""
  2537. }
  2538. },
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "Nicolas Grekas",
  2546. "email": "p@tchwork.com"
  2547. },
  2548. {
  2549. "name": "Symfony Community",
  2550. "homepage": "https://symfony.com/contributors"
  2551. }
  2552. ],
  2553. "description": "Generic abstractions related to dispatching event",
  2554. "homepage": "https://symfony.com",
  2555. "keywords": [
  2556. "abstractions",
  2557. "contracts",
  2558. "decoupling",
  2559. "interfaces",
  2560. "interoperability",
  2561. "standards"
  2562. ],
  2563. "support": {
  2564. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  2565. },
  2566. "funding": [
  2567. {
  2568. "url": "https://symfony.com/sponsor",
  2569. "type": "custom"
  2570. },
  2571. {
  2572. "url": "https://github.com/fabpot",
  2573. "type": "github"
  2574. },
  2575. {
  2576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2577. "type": "tidelift"
  2578. }
  2579. ],
  2580. "time": "2022-01-02T09:53:40+00:00"
  2581. },
  2582. {
  2583. "name": "symfony/http-foundation",
  2584. "version": "v5.4.21",
  2585. "source": {
  2586. "type": "git",
  2587. "url": "https://github.com/symfony/http-foundation.git",
  2588. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf"
  2589. },
  2590. "dist": {
  2591. "type": "zip",
  2592. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3bb6ee5582366c4176d5ce596b380117c8200bbf",
  2593. "reference": "3bb6ee5582366c4176d5ce596b380117c8200bbf",
  2594. "shasum": "",
  2595. "mirrors": [
  2596. {
  2597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2598. "preferred": true
  2599. }
  2600. ]
  2601. },
  2602. "require": {
  2603. "php": ">=7.2.5",
  2604. "symfony/deprecation-contracts": "^2.1|^3",
  2605. "symfony/polyfill-mbstring": "~1.1",
  2606. "symfony/polyfill-php80": "^1.16"
  2607. },
  2608. "require-dev": {
  2609. "predis/predis": "~1.0",
  2610. "symfony/cache": "^4.4|^5.0|^6.0",
  2611. "symfony/dependency-injection": "^5.4|^6.0",
  2612. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2613. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  2614. "symfony/mime": "^4.4|^5.0|^6.0",
  2615. "symfony/rate-limiter": "^5.2|^6.0"
  2616. },
  2617. "suggest": {
  2618. "symfony/mime": "To use the file extension guesser"
  2619. },
  2620. "type": "library",
  2621. "autoload": {
  2622. "psr-4": {
  2623. "Symfony\\Component\\HttpFoundation\\": ""
  2624. },
  2625. "exclude-from-classmap": [
  2626. "/Tests/"
  2627. ]
  2628. },
  2629. "notification-url": "https://packagist.org/downloads/",
  2630. "license": [
  2631. "MIT"
  2632. ],
  2633. "authors": [
  2634. {
  2635. "name": "Fabien Potencier",
  2636. "email": "fabien@symfony.com"
  2637. },
  2638. {
  2639. "name": "Symfony Community",
  2640. "homepage": "https://symfony.com/contributors"
  2641. }
  2642. ],
  2643. "description": "Defines an object-oriented layer for the HTTP specification",
  2644. "homepage": "https://symfony.com",
  2645. "support": {
  2646. "source": "https://github.com/symfony/http-foundation/tree/v5.4.21"
  2647. },
  2648. "funding": [
  2649. {
  2650. "url": "https://symfony.com/sponsor",
  2651. "type": "custom"
  2652. },
  2653. {
  2654. "url": "https://github.com/fabpot",
  2655. "type": "github"
  2656. },
  2657. {
  2658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2659. "type": "tidelift"
  2660. }
  2661. ],
  2662. "time": "2023-02-17T21:35:35+00:00"
  2663. },
  2664. {
  2665. "name": "symfony/polyfill-ctype",
  2666. "version": "v1.27.0",
  2667. "source": {
  2668. "type": "git",
  2669. "url": "https://github.com/symfony/polyfill-ctype.git",
  2670. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  2671. },
  2672. "dist": {
  2673. "type": "zip",
  2674. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  2675. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  2676. "shasum": "",
  2677. "mirrors": [
  2678. {
  2679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2680. "preferred": true
  2681. }
  2682. ]
  2683. },
  2684. "require": {
  2685. "php": ">=7.1"
  2686. },
  2687. "provide": {
  2688. "ext-ctype": "*"
  2689. },
  2690. "suggest": {
  2691. "ext-ctype": "For best performance"
  2692. },
  2693. "type": "library",
  2694. "extra": {
  2695. "branch-alias": {
  2696. "dev-main": "1.27-dev"
  2697. },
  2698. "thanks": {
  2699. "name": "symfony/polyfill",
  2700. "url": "https://github.com/symfony/polyfill"
  2701. }
  2702. },
  2703. "autoload": {
  2704. "files": [
  2705. "bootstrap.php"
  2706. ],
  2707. "psr-4": {
  2708. "Symfony\\Polyfill\\Ctype\\": ""
  2709. }
  2710. },
  2711. "notification-url": "https://packagist.org/downloads/",
  2712. "license": [
  2713. "MIT"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "Gert de Pagter",
  2718. "email": "BackEndTea@gmail.com"
  2719. },
  2720. {
  2721. "name": "Symfony Community",
  2722. "homepage": "https://symfony.com/contributors"
  2723. }
  2724. ],
  2725. "description": "Symfony polyfill for ctype functions",
  2726. "homepage": "https://symfony.com",
  2727. "keywords": [
  2728. "compatibility",
  2729. "ctype",
  2730. "polyfill",
  2731. "portable"
  2732. ],
  2733. "support": {
  2734. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  2735. },
  2736. "funding": [
  2737. {
  2738. "url": "https://symfony.com/sponsor",
  2739. "type": "custom"
  2740. },
  2741. {
  2742. "url": "https://github.com/fabpot",
  2743. "type": "github"
  2744. },
  2745. {
  2746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2747. "type": "tidelift"
  2748. }
  2749. ],
  2750. "time": "2022-11-03T14:55:06+00:00"
  2751. },
  2752. {
  2753. "name": "symfony/polyfill-mbstring",
  2754. "version": "v1.27.0",
  2755. "source": {
  2756. "type": "git",
  2757. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2758. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  2759. },
  2760. "dist": {
  2761. "type": "zip",
  2762. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2763. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2764. "shasum": "",
  2765. "mirrors": [
  2766. {
  2767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2768. "preferred": true
  2769. }
  2770. ]
  2771. },
  2772. "require": {
  2773. "php": ">=7.1"
  2774. },
  2775. "provide": {
  2776. "ext-mbstring": "*"
  2777. },
  2778. "suggest": {
  2779. "ext-mbstring": "For best performance"
  2780. },
  2781. "type": "library",
  2782. "extra": {
  2783. "branch-alias": {
  2784. "dev-main": "1.27-dev"
  2785. },
  2786. "thanks": {
  2787. "name": "symfony/polyfill",
  2788. "url": "https://github.com/symfony/polyfill"
  2789. }
  2790. },
  2791. "autoload": {
  2792. "files": [
  2793. "bootstrap.php"
  2794. ],
  2795. "psr-4": {
  2796. "Symfony\\Polyfill\\Mbstring\\": ""
  2797. }
  2798. },
  2799. "notification-url": "https://packagist.org/downloads/",
  2800. "license": [
  2801. "MIT"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Nicolas Grekas",
  2806. "email": "p@tchwork.com"
  2807. },
  2808. {
  2809. "name": "Symfony Community",
  2810. "homepage": "https://symfony.com/contributors"
  2811. }
  2812. ],
  2813. "description": "Symfony polyfill for the Mbstring extension",
  2814. "homepage": "https://symfony.com",
  2815. "keywords": [
  2816. "compatibility",
  2817. "mbstring",
  2818. "polyfill",
  2819. "portable",
  2820. "shim"
  2821. ],
  2822. "support": {
  2823. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  2824. },
  2825. "funding": [
  2826. {
  2827. "url": "https://symfony.com/sponsor",
  2828. "type": "custom"
  2829. },
  2830. {
  2831. "url": "https://github.com/fabpot",
  2832. "type": "github"
  2833. },
  2834. {
  2835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2836. "type": "tidelift"
  2837. }
  2838. ],
  2839. "time": "2022-11-03T14:55:06+00:00"
  2840. },
  2841. {
  2842. "name": "symfony/polyfill-php73",
  2843. "version": "v1.27.0",
  2844. "source": {
  2845. "type": "git",
  2846. "url": "https://github.com/symfony/polyfill-php73.git",
  2847. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  2848. },
  2849. "dist": {
  2850. "type": "zip",
  2851. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  2852. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  2853. "shasum": "",
  2854. "mirrors": [
  2855. {
  2856. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2857. "preferred": true
  2858. }
  2859. ]
  2860. },
  2861. "require": {
  2862. "php": ">=7.1"
  2863. },
  2864. "type": "library",
  2865. "extra": {
  2866. "branch-alias": {
  2867. "dev-main": "1.27-dev"
  2868. },
  2869. "thanks": {
  2870. "name": "symfony/polyfill",
  2871. "url": "https://github.com/symfony/polyfill"
  2872. }
  2873. },
  2874. "autoload": {
  2875. "files": [
  2876. "bootstrap.php"
  2877. ],
  2878. "psr-4": {
  2879. "Symfony\\Polyfill\\Php73\\": ""
  2880. },
  2881. "classmap": [
  2882. "Resources/stubs"
  2883. ]
  2884. },
  2885. "notification-url": "https://packagist.org/downloads/",
  2886. "license": [
  2887. "MIT"
  2888. ],
  2889. "authors": [
  2890. {
  2891. "name": "Nicolas Grekas",
  2892. "email": "p@tchwork.com"
  2893. },
  2894. {
  2895. "name": "Symfony Community",
  2896. "homepage": "https://symfony.com/contributors"
  2897. }
  2898. ],
  2899. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2900. "homepage": "https://symfony.com",
  2901. "keywords": [
  2902. "compatibility",
  2903. "polyfill",
  2904. "portable",
  2905. "shim"
  2906. ],
  2907. "support": {
  2908. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  2909. },
  2910. "funding": [
  2911. {
  2912. "url": "https://symfony.com/sponsor",
  2913. "type": "custom"
  2914. },
  2915. {
  2916. "url": "https://github.com/fabpot",
  2917. "type": "github"
  2918. },
  2919. {
  2920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2921. "type": "tidelift"
  2922. }
  2923. ],
  2924. "time": "2022-11-03T14:55:06+00:00"
  2925. },
  2926. {
  2927. "name": "symfony/polyfill-php80",
  2928. "version": "v1.27.0",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/symfony/polyfill-php80.git",
  2932. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2937. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2938. "shasum": "",
  2939. "mirrors": [
  2940. {
  2941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2942. "preferred": true
  2943. }
  2944. ]
  2945. },
  2946. "require": {
  2947. "php": ">=7.1"
  2948. },
  2949. "type": "library",
  2950. "extra": {
  2951. "branch-alias": {
  2952. "dev-main": "1.27-dev"
  2953. },
  2954. "thanks": {
  2955. "name": "symfony/polyfill",
  2956. "url": "https://github.com/symfony/polyfill"
  2957. }
  2958. },
  2959. "autoload": {
  2960. "files": [
  2961. "bootstrap.php"
  2962. ],
  2963. "psr-4": {
  2964. "Symfony\\Polyfill\\Php80\\": ""
  2965. },
  2966. "classmap": [
  2967. "Resources/stubs"
  2968. ]
  2969. },
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "MIT"
  2973. ],
  2974. "authors": [
  2975. {
  2976. "name": "Ion Bazan",
  2977. "email": "ion.bazan@gmail.com"
  2978. },
  2979. {
  2980. "name": "Nicolas Grekas",
  2981. "email": "p@tchwork.com"
  2982. },
  2983. {
  2984. "name": "Symfony Community",
  2985. "homepage": "https://symfony.com/contributors"
  2986. }
  2987. ],
  2988. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2989. "homepage": "https://symfony.com",
  2990. "keywords": [
  2991. "compatibility",
  2992. "polyfill",
  2993. "portable",
  2994. "shim"
  2995. ],
  2996. "support": {
  2997. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  2998. },
  2999. "funding": [
  3000. {
  3001. "url": "https://symfony.com/sponsor",
  3002. "type": "custom"
  3003. },
  3004. {
  3005. "url": "https://github.com/fabpot",
  3006. "type": "github"
  3007. },
  3008. {
  3009. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3010. "type": "tidelift"
  3011. }
  3012. ],
  3013. "time": "2022-11-03T14:55:06+00:00"
  3014. },
  3015. {
  3016. "name": "symfony/psr-http-message-bridge",
  3017. "version": "v2.1.3",
  3018. "source": {
  3019. "type": "git",
  3020. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  3021. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840"
  3022. },
  3023. "dist": {
  3024. "type": "zip",
  3025. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  3026. "reference": "d444f85dddf65c7e57c58d8e5b3a4dbb593b1840",
  3027. "shasum": "",
  3028. "mirrors": [
  3029. {
  3030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3031. "preferred": true
  3032. }
  3033. ]
  3034. },
  3035. "require": {
  3036. "php": ">=7.1",
  3037. "psr/http-message": "^1.0",
  3038. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  3039. },
  3040. "require-dev": {
  3041. "nyholm/psr7": "^1.1",
  3042. "psr/log": "^1.1 || ^2 || ^3",
  3043. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  3044. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  3045. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  3046. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  3047. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  3048. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  3049. },
  3050. "suggest": {
  3051. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  3052. },
  3053. "type": "symfony-bridge",
  3054. "extra": {
  3055. "branch-alias": {
  3056. "dev-main": "2.1-dev"
  3057. }
  3058. },
  3059. "autoload": {
  3060. "psr-4": {
  3061. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  3062. },
  3063. "exclude-from-classmap": [
  3064. "/Tests/"
  3065. ]
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "MIT"
  3070. ],
  3071. "authors": [
  3072. {
  3073. "name": "Fabien Potencier",
  3074. "email": "fabien@symfony.com"
  3075. },
  3076. {
  3077. "name": "Symfony Community",
  3078. "homepage": "http://symfony.com/contributors"
  3079. }
  3080. ],
  3081. "description": "PSR HTTP message bridge",
  3082. "homepage": "http://symfony.com",
  3083. "keywords": [
  3084. "http",
  3085. "http-message",
  3086. "psr-17",
  3087. "psr-7"
  3088. ],
  3089. "support": {
  3090. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  3091. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.3"
  3092. },
  3093. "funding": [
  3094. {
  3095. "url": "https://symfony.com/sponsor",
  3096. "type": "custom"
  3097. },
  3098. {
  3099. "url": "https://github.com/fabpot",
  3100. "type": "github"
  3101. },
  3102. {
  3103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3104. "type": "tidelift"
  3105. }
  3106. ],
  3107. "time": "2022-09-05T10:34:54+00:00"
  3108. },
  3109. {
  3110. "name": "symfony/service-contracts",
  3111. "version": "v2.5.2",
  3112. "source": {
  3113. "type": "git",
  3114. "url": "https://github.com/symfony/service-contracts.git",
  3115. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  3116. },
  3117. "dist": {
  3118. "type": "zip",
  3119. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  3120. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  3121. "shasum": "",
  3122. "mirrors": [
  3123. {
  3124. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3125. "preferred": true
  3126. }
  3127. ]
  3128. },
  3129. "require": {
  3130. "php": ">=7.2.5",
  3131. "psr/container": "^1.1",
  3132. "symfony/deprecation-contracts": "^2.1|^3"
  3133. },
  3134. "conflict": {
  3135. "ext-psr": "<1.1|>=2"
  3136. },
  3137. "suggest": {
  3138. "symfony/service-implementation": ""
  3139. },
  3140. "type": "library",
  3141. "extra": {
  3142. "branch-alias": {
  3143. "dev-main": "2.5-dev"
  3144. },
  3145. "thanks": {
  3146. "name": "symfony/contracts",
  3147. "url": "https://github.com/symfony/contracts"
  3148. }
  3149. },
  3150. "autoload": {
  3151. "psr-4": {
  3152. "Symfony\\Contracts\\Service\\": ""
  3153. }
  3154. },
  3155. "notification-url": "https://packagist.org/downloads/",
  3156. "license": [
  3157. "MIT"
  3158. ],
  3159. "authors": [
  3160. {
  3161. "name": "Nicolas Grekas",
  3162. "email": "p@tchwork.com"
  3163. },
  3164. {
  3165. "name": "Symfony Community",
  3166. "homepage": "https://symfony.com/contributors"
  3167. }
  3168. ],
  3169. "description": "Generic abstractions related to writing services",
  3170. "homepage": "https://symfony.com",
  3171. "keywords": [
  3172. "abstractions",
  3173. "contracts",
  3174. "decoupling",
  3175. "interfaces",
  3176. "interoperability",
  3177. "standards"
  3178. ],
  3179. "support": {
  3180. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  3181. },
  3182. "funding": [
  3183. {
  3184. "url": "https://symfony.com/sponsor",
  3185. "type": "custom"
  3186. },
  3187. {
  3188. "url": "https://github.com/fabpot",
  3189. "type": "github"
  3190. },
  3191. {
  3192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3193. "type": "tidelift"
  3194. }
  3195. ],
  3196. "time": "2022-05-30T19:17:29+00:00"
  3197. },
  3198. {
  3199. "name": "symfony/var-exporter",
  3200. "version": "v5.4.21",
  3201. "source": {
  3202. "type": "git",
  3203. "url": "https://github.com/symfony/var-exporter.git",
  3204. "reference": "be74908a6942fdd331554b3cec27ff41b45ccad4"
  3205. },
  3206. "dist": {
  3207. "type": "zip",
  3208. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/be74908a6942fdd331554b3cec27ff41b45ccad4",
  3209. "reference": "be74908a6942fdd331554b3cec27ff41b45ccad4",
  3210. "shasum": "",
  3211. "mirrors": [
  3212. {
  3213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3214. "preferred": true
  3215. }
  3216. ]
  3217. },
  3218. "require": {
  3219. "php": ">=7.2.5",
  3220. "symfony/polyfill-php80": "^1.16"
  3221. },
  3222. "require-dev": {
  3223. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  3224. },
  3225. "type": "library",
  3226. "autoload": {
  3227. "psr-4": {
  3228. "Symfony\\Component\\VarExporter\\": ""
  3229. },
  3230. "exclude-from-classmap": [
  3231. "/Tests/"
  3232. ]
  3233. },
  3234. "notification-url": "https://packagist.org/downloads/",
  3235. "license": [
  3236. "MIT"
  3237. ],
  3238. "authors": [
  3239. {
  3240. "name": "Nicolas Grekas",
  3241. "email": "p@tchwork.com"
  3242. },
  3243. {
  3244. "name": "Symfony Community",
  3245. "homepage": "https://symfony.com/contributors"
  3246. }
  3247. ],
  3248. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3249. "homepage": "https://symfony.com",
  3250. "keywords": [
  3251. "clone",
  3252. "construct",
  3253. "export",
  3254. "hydrate",
  3255. "instantiate",
  3256. "serialize"
  3257. ],
  3258. "support": {
  3259. "source": "https://github.com/symfony/var-exporter/tree/v5.4.21"
  3260. },
  3261. "funding": [
  3262. {
  3263. "url": "https://symfony.com/sponsor",
  3264. "type": "custom"
  3265. },
  3266. {
  3267. "url": "https://github.com/fabpot",
  3268. "type": "github"
  3269. },
  3270. {
  3271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3272. "type": "tidelift"
  3273. }
  3274. ],
  3275. "time": "2023-02-21T19:46:44+00:00"
  3276. },
  3277. {
  3278. "name": "symfony/yaml",
  3279. "version": "v2.8.52",
  3280. "source": {
  3281. "type": "git",
  3282. "url": "https://github.com/symfony/yaml.git",
  3283. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b"
  3284. },
  3285. "dist": {
  3286. "type": "zip",
  3287. "url": "https://api.github.com/repos/symfony/yaml/zipball/02c1859112aa779d9ab394ae4f3381911d84052b",
  3288. "reference": "02c1859112aa779d9ab394ae4f3381911d84052b",
  3289. "shasum": "",
  3290. "mirrors": [
  3291. {
  3292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3293. "preferred": true
  3294. }
  3295. ]
  3296. },
  3297. "require": {
  3298. "php": ">=5.3.9",
  3299. "symfony/polyfill-ctype": "~1.8"
  3300. },
  3301. "type": "library",
  3302. "extra": {
  3303. "branch-alias": {
  3304. "dev-master": "2.8-dev"
  3305. }
  3306. },
  3307. "autoload": {
  3308. "psr-4": {
  3309. "Symfony\\Component\\Yaml\\": ""
  3310. },
  3311. "exclude-from-classmap": [
  3312. "/Tests/"
  3313. ]
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "MIT"
  3318. ],
  3319. "authors": [
  3320. {
  3321. "name": "Fabien Potencier",
  3322. "email": "fabien@symfony.com"
  3323. },
  3324. {
  3325. "name": "Symfony Community",
  3326. "homepage": "https://symfony.com/contributors"
  3327. }
  3328. ],
  3329. "description": "Symfony Yaml Component",
  3330. "homepage": "https://symfony.com",
  3331. "support": {
  3332. "source": "https://github.com/symfony/yaml/tree/v2.8.52"
  3333. },
  3334. "time": "2018-11-11T11:18:13+00:00"
  3335. },
  3336. {
  3337. "name": "topthink/framework",
  3338. "version": "v6.0.14",
  3339. "source": {
  3340. "type": "git",
  3341. "url": "https://github.com/top-think/framework.git",
  3342. "reference": "e621c239492d4f7e276e166b16aba3fb933d501e"
  3343. },
  3344. "dist": {
  3345. "type": "zip",
  3346. "url": "https://api.github.com/repos/top-think/framework/zipball/e621c239492d4f7e276e166b16aba3fb933d501e",
  3347. "reference": "e621c239492d4f7e276e166b16aba3fb933d501e",
  3348. "shasum": "",
  3349. "mirrors": [
  3350. {
  3351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3352. "preferred": true
  3353. }
  3354. ]
  3355. },
  3356. "require": {
  3357. "ext-json": "*",
  3358. "ext-mbstring": "*",
  3359. "league/flysystem": "^1.1.4",
  3360. "league/flysystem-cached-adapter": "^1.0",
  3361. "php": ">=7.2.5",
  3362. "psr/container": "~1.0",
  3363. "psr/http-message": "^1.0",
  3364. "psr/log": "~1.0",
  3365. "psr/simple-cache": "^1.0",
  3366. "topthink/think-helper": "^3.1.1",
  3367. "topthink/think-orm": "^2.0"
  3368. },
  3369. "require-dev": {
  3370. "guzzlehttp/psr7": "^2.1.0",
  3371. "mikey179/vfsstream": "^1.6",
  3372. "mockery/mockery": "^1.2",
  3373. "phpunit/phpunit": "^7.0"
  3374. },
  3375. "type": "library",
  3376. "autoload": {
  3377. "files": [],
  3378. "psr-4": {
  3379. "think\\": "src/think/"
  3380. }
  3381. },
  3382. "notification-url": "https://packagist.org/downloads/",
  3383. "license": [
  3384. "Apache-2.0"
  3385. ],
  3386. "authors": [
  3387. {
  3388. "name": "liu21st",
  3389. "email": "liu21st@gmail.com"
  3390. },
  3391. {
  3392. "name": "yunwuxin",
  3393. "email": "448901948@qq.com"
  3394. }
  3395. ],
  3396. "description": "The ThinkPHP Framework.",
  3397. "homepage": "http://thinkphp.cn/",
  3398. "keywords": [
  3399. "framework",
  3400. "orm",
  3401. "thinkphp"
  3402. ],
  3403. "support": {
  3404. "issues": "https://github.com/top-think/framework/issues",
  3405. "source": "https://github.com/top-think/framework/tree/v6.0.14"
  3406. },
  3407. "time": "2022-10-25T14:45:56+00:00"
  3408. },
  3409. {
  3410. "name": "topthink/think-captcha",
  3411. "version": "v3.0.8",
  3412. "source": {
  3413. "type": "git",
  3414. "url": "https://github.com/top-think/think-captcha.git",
  3415. "reference": "52fba122c953995bec3013c635025172491ae299"
  3416. },
  3417. "dist": {
  3418. "type": "zip",
  3419. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/52fba122c953995bec3013c635025172491ae299",
  3420. "reference": "52fba122c953995bec3013c635025172491ae299",
  3421. "shasum": "",
  3422. "mirrors": [
  3423. {
  3424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3425. "preferred": true
  3426. }
  3427. ]
  3428. },
  3429. "require": {
  3430. "topthink/framework": "^6.0"
  3431. },
  3432. "type": "library",
  3433. "extra": {
  3434. "think": {
  3435. "services": [
  3436. "think\\captcha\\CaptchaService"
  3437. ],
  3438. "config": {
  3439. "captcha": "src/config.php"
  3440. }
  3441. }
  3442. },
  3443. "autoload": {
  3444. "files": [
  3445. "src/helper.php"
  3446. ],
  3447. "psr-4": {
  3448. "think\\captcha\\": "src/"
  3449. }
  3450. },
  3451. "notification-url": "https://packagist.org/downloads/",
  3452. "license": [
  3453. "Apache-2.0"
  3454. ],
  3455. "authors": [
  3456. {
  3457. "name": "yunwuxin",
  3458. "email": "448901948@qq.com"
  3459. }
  3460. ],
  3461. "description": "captcha package for thinkphp",
  3462. "support": {
  3463. "issues": "https://github.com/top-think/think-captcha/issues",
  3464. "source": "https://github.com/top-think/think-captcha/tree/v3.0.8"
  3465. },
  3466. "time": "2022-10-26T07:59:42+00:00"
  3467. },
  3468. {
  3469. "name": "topthink/think-helper",
  3470. "version": "v3.1.6",
  3471. "source": {
  3472. "type": "git",
  3473. "url": "https://github.com/top-think/think-helper.git",
  3474. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  3475. },
  3476. "dist": {
  3477. "type": "zip",
  3478. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  3479. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  3480. "shasum": "",
  3481. "mirrors": [
  3482. {
  3483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3484. "preferred": true
  3485. }
  3486. ]
  3487. },
  3488. "require": {
  3489. "php": ">=7.1.0"
  3490. },
  3491. "require-dev": {
  3492. "phpunit/phpunit": "^9.5"
  3493. },
  3494. "type": "library",
  3495. "autoload": {
  3496. "files": [
  3497. "src/helper.php"
  3498. ],
  3499. "psr-4": {
  3500. "think\\": "src"
  3501. }
  3502. },
  3503. "notification-url": "https://packagist.org/downloads/",
  3504. "license": [
  3505. "Apache-2.0"
  3506. ],
  3507. "authors": [
  3508. {
  3509. "name": "yunwuxin",
  3510. "email": "448901948@qq.com"
  3511. }
  3512. ],
  3513. "description": "The ThinkPHP6 Helper Package",
  3514. "support": {
  3515. "issues": "https://github.com/top-think/think-helper/issues",
  3516. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  3517. },
  3518. "time": "2021-12-15T04:27:55+00:00"
  3519. },
  3520. {
  3521. "name": "topthink/think-migration",
  3522. "version": "v3.0.4",
  3523. "source": {
  3524. "type": "git",
  3525. "url": "https://github.com/top-think/think-migration.git",
  3526. "reference": "c5880669b277762d5ff935e551bc0d5c71de6811"
  3527. },
  3528. "dist": {
  3529. "type": "zip",
  3530. "url": "https://api.github.com/repos/top-think/think-migration/zipball/c5880669b277762d5ff935e551bc0d5c71de6811",
  3531. "reference": "c5880669b277762d5ff935e551bc0d5c71de6811",
  3532. "shasum": "",
  3533. "mirrors": [
  3534. {
  3535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3536. "preferred": true
  3537. }
  3538. ]
  3539. },
  3540. "require": {
  3541. "topthink/framework": "^6.0",
  3542. "topthink/think-helper": "^3.0.3"
  3543. },
  3544. "require-dev": {
  3545. "fzaninotto/faker": "^1.8"
  3546. },
  3547. "suggest": {
  3548. "fzaninotto/faker": "Required to use the factory builder (^1.8)."
  3549. },
  3550. "type": "library",
  3551. "extra": {
  3552. "think": {
  3553. "services": [
  3554. "think\\migration\\Service"
  3555. ]
  3556. }
  3557. },
  3558. "autoload": {
  3559. "psr-4": {
  3560. "Phinx\\": "phinx/src/Phinx",
  3561. "think\\migration\\": "src"
  3562. }
  3563. },
  3564. "notification-url": "https://packagist.org/downloads/",
  3565. "license": [
  3566. "Apache-2.0"
  3567. ],
  3568. "authors": [
  3569. {
  3570. "name": "yunwuxin",
  3571. "email": "448901948@qq.com"
  3572. }
  3573. ],
  3574. "support": {
  3575. "issues": "https://github.com/top-think/think-migration/issues",
  3576. "source": "https://github.com/top-think/think-migration/tree/v3.0.4"
  3577. },
  3578. "time": "2022-10-26T07:57:54+00:00"
  3579. },
  3580. {
  3581. "name": "topthink/think-orm",
  3582. "version": "v2.0.59",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/top-think/think-orm.git",
  3586. "reference": "ac0f18bc3063ca924ed5b4af6e405d74f44d2870"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/top-think/think-orm/zipball/ac0f18bc3063ca924ed5b4af6e405d74f44d2870",
  3591. "reference": "ac0f18bc3063ca924ed5b4af6e405d74f44d2870",
  3592. "shasum": "",
  3593. "mirrors": [
  3594. {
  3595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3596. "preferred": true
  3597. }
  3598. ]
  3599. },
  3600. "require": {
  3601. "ext-json": "*",
  3602. "ext-pdo": "*",
  3603. "php": ">=7.1.0",
  3604. "psr/log": "^1.0|^2.0",
  3605. "psr/simple-cache": "^1.0|^2.0",
  3606. "topthink/think-helper": "^3.1"
  3607. },
  3608. "require-dev": {
  3609. "phpunit/phpunit": "^7|^8|^9.5"
  3610. },
  3611. "type": "library",
  3612. "autoload": {
  3613. "files": [
  3614. "stubs/load_stubs.php"
  3615. ],
  3616. "psr-4": {
  3617. "think\\": "src"
  3618. }
  3619. },
  3620. "notification-url": "https://packagist.org/downloads/",
  3621. "license": [
  3622. "Apache-2.0"
  3623. ],
  3624. "authors": [
  3625. {
  3626. "name": "liu21st",
  3627. "email": "liu21st@gmail.com"
  3628. }
  3629. ],
  3630. "description": "think orm",
  3631. "keywords": [
  3632. "database",
  3633. "orm"
  3634. ],
  3635. "support": {
  3636. "issues": "https://github.com/top-think/think-orm/issues",
  3637. "source": "https://github.com/top-think/think-orm/tree/v2.0.59"
  3638. },
  3639. "time": "2023-03-06T10:12:41+00:00"
  3640. },
  3641. {
  3642. "name": "topthink/think-template",
  3643. "version": "v2.0.9",
  3644. "source": {
  3645. "type": "git",
  3646. "url": "https://github.com/top-think/think-template.git",
  3647. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c"
  3648. },
  3649. "dist": {
  3650. "type": "zip",
  3651. "url": "https://api.github.com/repos/top-think/think-template/zipball/6d25642ae0e306166742fd7073dc7a159e18073c",
  3652. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c",
  3653. "shasum": "",
  3654. "mirrors": [
  3655. {
  3656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3657. "preferred": true
  3658. }
  3659. ]
  3660. },
  3661. "require": {
  3662. "php": ">=7.1.0",
  3663. "psr/simple-cache": "^1.0"
  3664. },
  3665. "type": "library",
  3666. "autoload": {
  3667. "psr-4": {
  3668. "think\\": "src"
  3669. }
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "Apache-2.0"
  3674. ],
  3675. "authors": [
  3676. {
  3677. "name": "liu21st",
  3678. "email": "liu21st@gmail.com"
  3679. }
  3680. ],
  3681. "description": "the php template engine",
  3682. "support": {
  3683. "issues": "https://github.com/top-think/think-template/issues",
  3684. "source": "https://github.com/top-think/think-template/tree/v2.0.9"
  3685. },
  3686. "time": "2023-02-14T10:50:39+00:00"
  3687. },
  3688. {
  3689. "name": "topthink/think-view",
  3690. "version": "v1.0.14",
  3691. "source": {
  3692. "type": "git",
  3693. "url": "https://github.com/top-think/think-view.git",
  3694. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  3695. },
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  3699. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  3700. "shasum": "",
  3701. "mirrors": [
  3702. {
  3703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3704. "preferred": true
  3705. }
  3706. ]
  3707. },
  3708. "require": {
  3709. "php": ">=7.1.0",
  3710. "topthink/think-template": "^2.0"
  3711. },
  3712. "type": "library",
  3713. "autoload": {
  3714. "psr-4": {
  3715. "think\\view\\driver\\": "src"
  3716. }
  3717. },
  3718. "notification-url": "https://packagist.org/downloads/",
  3719. "license": [
  3720. "Apache-2.0"
  3721. ],
  3722. "authors": [
  3723. {
  3724. "name": "liu21st",
  3725. "email": "liu21st@gmail.com"
  3726. }
  3727. ],
  3728. "description": "thinkphp template driver",
  3729. "support": {
  3730. "issues": "https://github.com/top-think/think-view/issues",
  3731. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  3732. },
  3733. "time": "2019-11-06T11:40:13+00:00"
  3734. },
  3735. {
  3736. "name": "topthink/think-worker",
  3737. "version": "v3.0.7",
  3738. "source": {
  3739. "type": "git",
  3740. "url": "https://github.com/top-think/think-worker.git",
  3741. "reference": "9ba54333f337ee2c3f06054bb896bba9696d926c"
  3742. },
  3743. "dist": {
  3744. "type": "zip",
  3745. "url": "https://api.github.com/repos/top-think/think-worker/zipball/9ba54333f337ee2c3f06054bb896bba9696d926c",
  3746. "reference": "9ba54333f337ee2c3f06054bb896bba9696d926c",
  3747. "shasum": "",
  3748. "mirrors": [
  3749. {
  3750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3751. "preferred": true
  3752. }
  3753. ]
  3754. },
  3755. "require": {
  3756. "ext-fileinfo": "*",
  3757. "topthink/framework": "^6.0",
  3758. "workerman/gateway-worker": "^3.0.0",
  3759. "workerman/workerman": "^3.5.23"
  3760. },
  3761. "type": "library",
  3762. "extra": {
  3763. "think": {
  3764. "services": [
  3765. "think\\worker\\Service"
  3766. ],
  3767. "config": {
  3768. "worker": "src/config/worker.php",
  3769. "worker_server": "src/config/server.php",
  3770. "gateway_worker": "src/config/gateway.php"
  3771. }
  3772. }
  3773. },
  3774. "autoload": {
  3775. "psr-4": {
  3776. "think\\worker\\": "src"
  3777. }
  3778. },
  3779. "notification-url": "https://packagist.org/downloads/",
  3780. "license": [
  3781. "Apache-2.0"
  3782. ],
  3783. "authors": [
  3784. {
  3785. "name": "liu21st",
  3786. "email": "liu21st@gmail.com"
  3787. }
  3788. ],
  3789. "description": "workerman extend for thinkphp6.0",
  3790. "support": {
  3791. "issues": "https://github.com/top-think/think-worker/issues",
  3792. "source": "https://github.com/top-think/think-worker/tree/v3.0.7"
  3793. },
  3794. "time": "2022-10-26T08:04:08+00:00"
  3795. },
  3796. {
  3797. "name": "workerman/gateway-worker",
  3798. "version": "v3.0.22",
  3799. "source": {
  3800. "type": "git",
  3801. "url": "https://github.com/walkor/GatewayWorker.git",
  3802. "reference": "a615036c482d11f68b693998575e804752ef9068"
  3803. },
  3804. "dist": {
  3805. "type": "zip",
  3806. "url": "https://api.github.com/repos/walkor/GatewayWorker/zipball/a615036c482d11f68b693998575e804752ef9068",
  3807. "reference": "a615036c482d11f68b693998575e804752ef9068",
  3808. "shasum": "",
  3809. "mirrors": [
  3810. {
  3811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3812. "preferred": true
  3813. }
  3814. ]
  3815. },
  3816. "require": {
  3817. "workerman/workerman": ">=3.5.0"
  3818. },
  3819. "type": "library",
  3820. "autoload": {
  3821. "psr-4": {
  3822. "GatewayWorker\\": "./src"
  3823. }
  3824. },
  3825. "notification-url": "https://packagist.org/downloads/",
  3826. "license": [
  3827. "MIT"
  3828. ],
  3829. "homepage": "http://www.workerman.net",
  3830. "keywords": [
  3831. "communication",
  3832. "distributed"
  3833. ],
  3834. "support": {
  3835. "issues": "https://github.com/walkor/GatewayWorker/issues",
  3836. "source": "https://github.com/walkor/GatewayWorker/tree/v3.0.22"
  3837. },
  3838. "funding": [
  3839. {
  3840. "url": "https://opencollective.com/walkor",
  3841. "type": "open_collective"
  3842. },
  3843. {
  3844. "url": "https://www.patreon.com/walkor",
  3845. "type": "patreon"
  3846. }
  3847. ],
  3848. "time": "2021-12-23T13:13:09+00:00"
  3849. },
  3850. {
  3851. "name": "workerman/gatewayclient",
  3852. "version": "v3.0.14",
  3853. "source": {
  3854. "type": "git",
  3855. "url": "https://github.com/walkor/GatewayClient.git",
  3856. "reference": "4362468d68251015b2b385c310252afb4d6648ed"
  3857. },
  3858. "dist": {
  3859. "type": "zip",
  3860. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/4362468d68251015b2b385c310252afb4d6648ed",
  3861. "reference": "4362468d68251015b2b385c310252afb4d6648ed",
  3862. "shasum": "",
  3863. "mirrors": [
  3864. {
  3865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3866. "preferred": true
  3867. }
  3868. ]
  3869. },
  3870. "type": "library",
  3871. "autoload": {
  3872. "psr-4": {
  3873. "GatewayClient\\": "./"
  3874. }
  3875. },
  3876. "notification-url": "https://packagist.org/downloads/",
  3877. "license": [
  3878. "MIT"
  3879. ],
  3880. "homepage": "http://www.workerman.net",
  3881. "support": {
  3882. "issues": "https://github.com/walkor/GatewayClient/issues",
  3883. "source": "https://github.com/walkor/GatewayClient/tree/v3.0.14"
  3884. },
  3885. "time": "2021-11-29T07:03:50+00:00"
  3886. },
  3887. {
  3888. "name": "workerman/workerman",
  3889. "version": "v3.5.34",
  3890. "source": {
  3891. "type": "git",
  3892. "url": "https://github.com/walkor/workerman.git",
  3893. "reference": "fe4fc5ecc44d0410a22214d9e8679e2fc3795f5a"
  3894. },
  3895. "dist": {
  3896. "type": "zip",
  3897. "url": "https://api.github.com/repos/walkor/workerman/zipball/fe4fc5ecc44d0410a22214d9e8679e2fc3795f5a",
  3898. "reference": "fe4fc5ecc44d0410a22214d9e8679e2fc3795f5a",
  3899. "shasum": "",
  3900. "mirrors": [
  3901. {
  3902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3903. "preferred": true
  3904. }
  3905. ]
  3906. },
  3907. "require": {
  3908. "php": ">=5.3"
  3909. },
  3910. "suggest": {
  3911. "ext-event": "For better performance. "
  3912. },
  3913. "type": "library",
  3914. "autoload": {
  3915. "psr-4": {
  3916. "Workerman\\": "./"
  3917. }
  3918. },
  3919. "notification-url": "https://packagist.org/downloads/",
  3920. "license": [
  3921. "MIT"
  3922. ],
  3923. "authors": [
  3924. {
  3925. "name": "walkor",
  3926. "email": "walkor@workerman.net",
  3927. "homepage": "http://www.workerman.net",
  3928. "role": "Developer"
  3929. }
  3930. ],
  3931. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  3932. "homepage": "http://www.workerman.net",
  3933. "keywords": [
  3934. "asynchronous",
  3935. "event-loop"
  3936. ],
  3937. "support": {
  3938. "email": "walkor@workerman.net",
  3939. "forum": "http://wenda.workerman.net/",
  3940. "issues": "https://github.com/walkor/workerman/issues",
  3941. "source": "https://github.com/walkor/workerman",
  3942. "wiki": "http://doc.workerman.net/"
  3943. },
  3944. "funding": [
  3945. {
  3946. "url": "https://opencollective.com/workerman",
  3947. "type": "open_collective"
  3948. },
  3949. {
  3950. "url": "https://www.patreon.com/walkor",
  3951. "type": "patreon"
  3952. }
  3953. ],
  3954. "time": "2022-12-16T02:47:08+00:00"
  3955. },
  3956. {
  3957. "name": "xunhu/hupijiao",
  3958. "version": "dev-master",
  3959. "source": {
  3960. "type": "git",
  3961. "url": "https://gitee.com/wpweixin/hupijiao.git",
  3962. "reference": "f2b30c60125768d23c3b853626a58456c5cd6091"
  3963. },
  3964. "require": {
  3965. "php": ">=5.4"
  3966. },
  3967. "default-branch": true,
  3968. "type": "library",
  3969. "autoload": {
  3970. "psr-4": {
  3971. "Xunhu\\Hupijiao\\": "src/"
  3972. }
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "MIT"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "Xunhu",
  3981. "email": "jeff@xunhuweb.com"
  3982. }
  3983. ],
  3984. "description": "本项目是基于 hupijiao 的 API 开发的 Composer Package,申请地址:https://www.xunhupay.com",
  3985. "time": "2021-09-06T08:03:01+00:00"
  3986. }
  3987. ],
  3988. "packages-dev": [
  3989. {
  3990. "name": "symfony/polyfill-php72",
  3991. "version": "v1.27.0",
  3992. "source": {
  3993. "type": "git",
  3994. "url": "https://github.com/symfony/polyfill-php72.git",
  3995. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  3996. },
  3997. "dist": {
  3998. "type": "zip",
  3999. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  4000. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  4001. "shasum": "",
  4002. "mirrors": [
  4003. {
  4004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4005. "preferred": true
  4006. }
  4007. ]
  4008. },
  4009. "require": {
  4010. "php": ">=7.1"
  4011. },
  4012. "type": "library",
  4013. "extra": {
  4014. "branch-alias": {
  4015. "dev-main": "1.27-dev"
  4016. },
  4017. "thanks": {
  4018. "name": "symfony/polyfill",
  4019. "url": "https://github.com/symfony/polyfill"
  4020. }
  4021. },
  4022. "autoload": {
  4023. "files": [
  4024. "bootstrap.php"
  4025. ],
  4026. "psr-4": {
  4027. "Symfony\\Polyfill\\Php72\\": ""
  4028. }
  4029. },
  4030. "notification-url": "https://packagist.org/downloads/",
  4031. "license": [
  4032. "MIT"
  4033. ],
  4034. "authors": [
  4035. {
  4036. "name": "Nicolas Grekas",
  4037. "email": "p@tchwork.com"
  4038. },
  4039. {
  4040. "name": "Symfony Community",
  4041. "homepage": "https://symfony.com/contributors"
  4042. }
  4043. ],
  4044. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4045. "homepage": "https://symfony.com",
  4046. "keywords": [
  4047. "compatibility",
  4048. "polyfill",
  4049. "portable",
  4050. "shim"
  4051. ],
  4052. "support": {
  4053. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  4054. },
  4055. "funding": [
  4056. {
  4057. "url": "https://symfony.com/sponsor",
  4058. "type": "custom"
  4059. },
  4060. {
  4061. "url": "https://github.com/fabpot",
  4062. "type": "github"
  4063. },
  4064. {
  4065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4066. "type": "tidelift"
  4067. }
  4068. ],
  4069. "time": "2022-11-03T14:55:06+00:00"
  4070. },
  4071. {
  4072. "name": "symfony/var-dumper",
  4073. "version": "v4.4.47",
  4074. "source": {
  4075. "type": "git",
  4076. "url": "https://github.com/symfony/var-dumper.git",
  4077. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  4078. },
  4079. "dist": {
  4080. "type": "zip",
  4081. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  4082. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  4083. "shasum": "",
  4084. "mirrors": [
  4085. {
  4086. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4087. "preferred": true
  4088. }
  4089. ]
  4090. },
  4091. "require": {
  4092. "php": ">=7.1.3",
  4093. "symfony/polyfill-mbstring": "~1.0",
  4094. "symfony/polyfill-php72": "~1.5",
  4095. "symfony/polyfill-php80": "^1.16"
  4096. },
  4097. "conflict": {
  4098. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  4099. "symfony/console": "<3.4"
  4100. },
  4101. "require-dev": {
  4102. "ext-iconv": "*",
  4103. "symfony/console": "^3.4|^4.0|^5.0",
  4104. "symfony/process": "^4.4|^5.0",
  4105. "twig/twig": "^1.43|^2.13|^3.0.4"
  4106. },
  4107. "suggest": {
  4108. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  4109. "ext-intl": "To show region name in time zone dump",
  4110. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  4111. },
  4112. "bin": [
  4113. "Resources/bin/var-dump-server"
  4114. ],
  4115. "type": "library",
  4116. "autoload": {
  4117. "files": [
  4118. "Resources/functions/dump.php"
  4119. ],
  4120. "psr-4": {
  4121. "Symfony\\Component\\VarDumper\\": ""
  4122. },
  4123. "exclude-from-classmap": [
  4124. "/Tests/"
  4125. ]
  4126. },
  4127. "notification-url": "https://packagist.org/downloads/",
  4128. "license": [
  4129. "MIT"
  4130. ],
  4131. "authors": [
  4132. {
  4133. "name": "Nicolas Grekas",
  4134. "email": "p@tchwork.com"
  4135. },
  4136. {
  4137. "name": "Symfony Community",
  4138. "homepage": "https://symfony.com/contributors"
  4139. }
  4140. ],
  4141. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4142. "homepage": "https://symfony.com",
  4143. "keywords": [
  4144. "debug",
  4145. "dump"
  4146. ],
  4147. "support": {
  4148. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  4149. },
  4150. "funding": [
  4151. {
  4152. "url": "https://symfony.com/sponsor",
  4153. "type": "custom"
  4154. },
  4155. {
  4156. "url": "https://github.com/fabpot",
  4157. "type": "github"
  4158. },
  4159. {
  4160. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4161. "type": "tidelift"
  4162. }
  4163. ],
  4164. "time": "2022-10-03T15:15:11+00:00"
  4165. },
  4166. {
  4167. "name": "topthink/think-trace",
  4168. "version": "v1.6",
  4169. "source": {
  4170. "type": "git",
  4171. "url": "https://github.com/top-think/think-trace.git",
  4172. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  4173. },
  4174. "dist": {
  4175. "type": "zip",
  4176. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  4177. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  4178. "shasum": "",
  4179. "mirrors": [
  4180. {
  4181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4182. "preferred": true
  4183. }
  4184. ]
  4185. },
  4186. "require": {
  4187. "php": ">=7.1.0",
  4188. "topthink/framework": "^6.0|^8.0"
  4189. },
  4190. "type": "library",
  4191. "extra": {
  4192. "think": {
  4193. "services": [
  4194. "think\\trace\\Service"
  4195. ],
  4196. "config": {
  4197. "trace": "src/config.php"
  4198. }
  4199. }
  4200. },
  4201. "autoload": {
  4202. "psr-4": {
  4203. "think\\trace\\": "src"
  4204. }
  4205. },
  4206. "notification-url": "https://packagist.org/downloads/",
  4207. "license": [
  4208. "Apache-2.0"
  4209. ],
  4210. "authors": [
  4211. {
  4212. "name": "liu21st",
  4213. "email": "liu21st@gmail.com"
  4214. }
  4215. ],
  4216. "description": "thinkphp debug trace",
  4217. "support": {
  4218. "issues": "https://github.com/top-think/think-trace/issues",
  4219. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  4220. },
  4221. "time": "2023-02-07T08:36:32+00:00"
  4222. }
  4223. ],
  4224. "aliases": [],
  4225. "minimum-stability": "stable",
  4226. "stability-flags": {
  4227. "xunhu/hupijiao": 20
  4228. },
  4229. "prefer-stable": false,
  4230. "prefer-lowest": false,
  4231. "platform": {
  4232. "php": ">=7.1.0"
  4233. },
  4234. "platform-dev": [],
  4235. "plugin-api-version": "2.0.0"
  4236. }