composer.lock 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  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": "3b64ee641edb09ff4430dcb298cc4a49",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.4.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "3bfe67895d26697d20485343499532234eeb7c08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/3bfe67895d26697d20485343499532234eeb7c08",
  20. "reference": "3bfe67895d26697d20485343499532234eeb7c08",
  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.4.1"
  65. },
  66. "time": "2022-08-25T19:47:20+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/credentials",
  70. "version": "1.1.4",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  79. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^4.8.35|^5.4.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2021-06-08T10:49:34+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba-openapi",
  156. "version": "0.2.6",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  160. "reference": "c64a2bafde3aaf8d11ba5aebfc08f59916b4c742"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/c64a2bafde3aaf8d11ba5aebfc08f59916b4c742",
  165. "reference": "c64a2bafde3aaf8d11ba5aebfc08f59916b4c742",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "alibabacloud/credentials": "^1.1",
  176. "alibabacloud/gateway-spi": "^1",
  177. "alibabacloud/openapi-util": "^0.1.10",
  178. "alibabacloud/tea-utils": "^0.2.0",
  179. "alibabacloud/tea-xml": "^0.2",
  180. "php": ">5.5"
  181. },
  182. "type": "library",
  183. "autoload": {
  184. "psr-4": {
  185. "Darabonba\\OpenApi\\": "src"
  186. }
  187. },
  188. "notification-url": "https://packagist.org/downloads/",
  189. "license": [
  190. "Apache-2.0"
  191. ],
  192. "authors": [
  193. {
  194. "name": "Alibaba Cloud SDK",
  195. "email": "sdk-team@alibabacloud.com"
  196. }
  197. ],
  198. "description": "Alibaba Cloud OpenApi Client",
  199. "support": {
  200. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  201. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.6"
  202. },
  203. "time": "2022-07-20T08:38:03+00:00"
  204. },
  205. {
  206. "name": "alibabacloud/dysmsapi-20170525",
  207. "version": "2.0.15",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  211. "reference": "eac3afefece753052aeffedb83abfd65dbe603e3"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/eac3afefece753052aeffedb83abfd65dbe603e3",
  216. "reference": "eac3afefece753052aeffedb83abfd65dbe603e3",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "alibabacloud/darabonba-openapi": "^0.2.5",
  227. "alibabacloud/endpoint-util": "^0.1.0",
  228. "alibabacloud/openapi-util": "^0.1.10",
  229. "alibabacloud/tea-utils": "^0.2.16",
  230. "php": ">5.5"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "Apache-2.0"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Alibaba Cloud SDK",
  245. "email": "sdk-team@alibabacloud.com"
  246. }
  247. ],
  248. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  249. "support": {
  250. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.15"
  251. },
  252. "time": "2022-07-06T11:52:14+00:00"
  253. },
  254. {
  255. "name": "alibabacloud/endpoint-util",
  256. "version": "0.1.1",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  260. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  265. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  266. "shasum": "",
  267. "mirrors": [
  268. {
  269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  270. "preferred": true
  271. }
  272. ]
  273. },
  274. "require": {
  275. "php": ">5.5"
  276. },
  277. "require-dev": {
  278. "phpunit/phpunit": "^4.8.35|^5.4.3"
  279. },
  280. "type": "library",
  281. "autoload": {
  282. "psr-4": {
  283. "AlibabaCloud\\Endpoint\\": "src"
  284. }
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "Apache-2.0"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Alibaba Cloud SDK",
  293. "email": "sdk-team@alibabacloud.com"
  294. }
  295. ],
  296. "description": "Alibaba Cloud Endpoint Library for PHP",
  297. "support": {
  298. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  299. },
  300. "time": "2020-06-04T10:57:15+00:00"
  301. },
  302. {
  303. "name": "alibabacloud/gateway-spi",
  304. "version": "1.0.0",
  305. "source": {
  306. "type": "git",
  307. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  308. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  313. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  314. "shasum": "",
  315. "mirrors": [
  316. {
  317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  318. "preferred": true
  319. }
  320. ]
  321. },
  322. "require": {
  323. "alibabacloud/credentials": "^1.1",
  324. "php": ">5.5"
  325. },
  326. "type": "library",
  327. "autoload": {
  328. "psr-4": {
  329. "Darabonba\\GatewaySpi\\": "src"
  330. }
  331. },
  332. "notification-url": "https://packagist.org/downloads/",
  333. "license": [
  334. "Apache-2.0"
  335. ],
  336. "authors": [
  337. {
  338. "name": "Alibaba Cloud SDK",
  339. "email": "sdk-team@alibabacloud.com"
  340. }
  341. ],
  342. "description": "Alibaba Cloud Gateway SPI Client",
  343. "support": {
  344. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  345. },
  346. "time": "2022-07-14T05:31:35+00:00"
  347. },
  348. {
  349. "name": "alibabacloud/openapi-util",
  350. "version": "0.1.11",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  354. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/61ee137955a25c9f5f33170babb6071d4bccf12c",
  359. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c",
  360. "shasum": "",
  361. "mirrors": [
  362. {
  363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  364. "preferred": true
  365. }
  366. ]
  367. },
  368. "require": {
  369. "alibabacloud/tea": "^3.1",
  370. "alibabacloud/tea-utils": "^0.2",
  371. "lizhichao/one-sm": "^1.5",
  372. "php": ">5.5"
  373. },
  374. "require-dev": {
  375. "phpunit/phpunit": "^4.8.35|^5.4.3"
  376. },
  377. "type": "library",
  378. "autoload": {
  379. "psr-4": {
  380. "AlibabaCloud\\OpenApiUtil\\": "src"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "Apache-2.0"
  386. ],
  387. "authors": [
  388. {
  389. "name": "Alibaba Cloud SDK",
  390. "email": "sdk-team@alibabacloud.com"
  391. }
  392. ],
  393. "description": "Alibaba Cloud OpenApi Util",
  394. "support": {
  395. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  396. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.1.11"
  397. },
  398. "time": "2021-12-28T07:57:21+00:00"
  399. },
  400. {
  401. "name": "alibabacloud/tea",
  402. "version": "3.1.24",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/aliyun/tea-php.git",
  406. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  411. "reference": "bb33395f47db3847d1940d6eb8ba1e56cd0623cb",
  412. "shasum": "",
  413. "mirrors": [
  414. {
  415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  416. "preferred": true
  417. }
  418. ]
  419. },
  420. "require": {
  421. "adbario/php-dot-notation": "^2.3",
  422. "ext-curl": "*",
  423. "ext-json": "*",
  424. "ext-libxml": "*",
  425. "ext-mbstring": "*",
  426. "ext-openssl": "*",
  427. "ext-simplexml": "*",
  428. "ext-xmlwriter": "*",
  429. "guzzlehttp/guzzle": "^6.3|^7.0",
  430. "php": ">=5.5"
  431. },
  432. "require-dev": {
  433. "phpunit/phpunit": "*",
  434. "symfony/dotenv": "^3.4",
  435. "symfony/var-dumper": "^3.4"
  436. },
  437. "suggest": {
  438. "ext-sockets": "To use client-side monitoring"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "AlibabaCloud\\Tea\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "Apache-2.0"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Alibaba Cloud SDK",
  453. "email": "sdk-team@alibabacloud.com",
  454. "homepage": "http://www.alibabacloud.com"
  455. }
  456. ],
  457. "description": "Client of Tea for PHP",
  458. "homepage": "https://www.alibabacloud.com/",
  459. "keywords": [
  460. "alibabacloud",
  461. "client",
  462. "cloud",
  463. "tea"
  464. ],
  465. "support": {
  466. "issues": "https://github.com/aliyun/tea-php/issues",
  467. "source": "https://github.com/aliyun/tea-php"
  468. },
  469. "time": "2022-07-18T11:27:29+00:00"
  470. },
  471. {
  472. "name": "alibabacloud/tea-utils",
  473. "version": "0.2.16",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  477. "reference": "ae10b306509a196e4af71803db710a0a05c54e60"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/ae10b306509a196e4af71803db710a0a05c54e60",
  482. "reference": "ae10b306509a196e4af71803db710a0a05c54e60",
  483. "shasum": "",
  484. "mirrors": [
  485. {
  486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  487. "preferred": true
  488. }
  489. ]
  490. },
  491. "require": {
  492. "alibabacloud/tea": "^3.1",
  493. "php": ">5.5"
  494. },
  495. "type": "library",
  496. "autoload": {
  497. "psr-4": {
  498. "AlibabaCloud\\Tea\\Utils\\": "src"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "Apache-2.0"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Alibaba Cloud SDK",
  508. "email": "sdk-team@alibabacloud.com"
  509. }
  510. ],
  511. "description": "Alibaba Cloud Tea Utils for PHP",
  512. "support": {
  513. "issues": "https://github.com/aliyun/tea-util/issues",
  514. "source": "https://github.com/aliyun/tea-util"
  515. },
  516. "time": "2022-07-05T09:58:20+00:00"
  517. },
  518. {
  519. "name": "alibabacloud/tea-xml",
  520. "version": "0.2.3",
  521. "source": {
  522. "type": "git",
  523. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  524. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b"
  525. },
  526. "dist": {
  527. "type": "zip",
  528. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  529. "reference": "4bd2303d71c968cb7ae4e487c5fa3023aed3ff3b",
  530. "shasum": "",
  531. "mirrors": [
  532. {
  533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  534. "preferred": true
  535. }
  536. ]
  537. },
  538. "require": {
  539. "php": ">5.5"
  540. },
  541. "require-dev": {
  542. "phpunit/phpunit": "^4.8.35|^5.4.3",
  543. "symfony/var-dumper": "*"
  544. },
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "AlibabaCloud\\Tea\\XML\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "Apache-2.0"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Alibaba Cloud SDK",
  558. "email": "sdk-team@alibabacloud.com"
  559. }
  560. ],
  561. "description": "Alibaba Cloud Tea XML Library for PHP",
  562. "support": {
  563. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.3"
  564. },
  565. "time": "2021-12-08T06:43:00+00:00"
  566. },
  567. {
  568. "name": "dodgepudding/wechat-php-sdk",
  569. "version": "dev-master",
  570. "source": {
  571. "type": "git",
  572. "url": "http://gogs.renlianiot.com:4000/zmcoding/wechat-php-sdk.git",
  573. "reference": "cba751772f462e1a1385a99ea44929a6a3d82098"
  574. },
  575. "require": {
  576. "php": ">=5.1.0"
  577. },
  578. "type": "library",
  579. "autoload": {
  580. "psr-4": {
  581. "dodgepudding\\wechat\\sdk\\": ""
  582. }
  583. },
  584. "license": [
  585. "LGPL"
  586. ],
  587. "authors": [
  588. {
  589. "name": "dodgepudding",
  590. "email": "dodgepudding@gmail.com"
  591. },
  592. {
  593. "name": "binsee",
  594. "email": "binsee@163.com"
  595. }
  596. ],
  597. "description": "the wechat api library without framework dependency",
  598. "keywords": [
  599. "sample",
  600. "thinkphp",
  601. "wechat",
  602. "weixin"
  603. ],
  604. "support": {
  605. "issues": "https://github.com/dodgepudding/wechat-php-sdk/issues",
  606. "wiki": "https://github.com/dodgepudding/wechat-php-sdk/wiki",
  607. "source": "https://github.com/dodgepudding/wechat-php-sdk"
  608. },
  609. "time": "2018-01-17T03:47:32+00:00"
  610. },
  611. {
  612. "name": "guzzlehttp/guzzle",
  613. "version": "6.5.5",
  614. "source": {
  615. "type": "git",
  616. "url": "http://gogs.renlianiot.com:4000/zmcoding/guzzle.git",
  617. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  618. },
  619. "require": {
  620. "ext-json": "*",
  621. "guzzlehttp/promises": "^1.0",
  622. "guzzlehttp/psr7": "^1.6.1",
  623. "php": ">=5.5",
  624. "symfony/polyfill-intl-idn": "^1.17.0"
  625. },
  626. "require-dev": {
  627. "ext-curl": "*",
  628. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  629. "psr/log": "^1.1"
  630. },
  631. "suggest": {
  632. "psr/log": "Required for using the Log middleware"
  633. },
  634. "type": "library",
  635. "extra": {
  636. "branch-alias": {
  637. "dev-master": "6.5-dev"
  638. }
  639. },
  640. "autoload": {
  641. "psr-4": {
  642. "GuzzleHttp\\": "src/"
  643. },
  644. "files": [
  645. "src/functions_include.php"
  646. ]
  647. },
  648. "autoload-dev": {
  649. "psr-4": {
  650. "GuzzleHttp\\Tests\\": "tests/"
  651. }
  652. },
  653. "license": [
  654. "MIT"
  655. ],
  656. "authors": [
  657. {
  658. "name": "Michael Dowling",
  659. "email": "mtdowling@gmail.com",
  660. "homepage": "https://github.com/mtdowling"
  661. }
  662. ],
  663. "description": "Guzzle is a PHP HTTP client library",
  664. "homepage": "http://guzzlephp.org/",
  665. "keywords": [
  666. "HTTP client",
  667. "client",
  668. "curl",
  669. "framework",
  670. "http",
  671. "rest",
  672. "web service"
  673. ],
  674. "time": "2020-06-16T21:01:06+00:00"
  675. },
  676. {
  677. "name": "guzzlehttp/promises",
  678. "version": "1.4.1",
  679. "source": {
  680. "type": "git",
  681. "url": "http://gogs.renlianiot.com:4000/zmcoding/promises.git",
  682. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  683. },
  684. "require": {
  685. "php": ">=5.5"
  686. },
  687. "require-dev": {
  688. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  689. },
  690. "type": "library",
  691. "extra": {
  692. "branch-alias": {
  693. "dev-master": "1.4-dev"
  694. }
  695. },
  696. "autoload": {
  697. "psr-4": {
  698. "GuzzleHttp\\Promise\\": "src/"
  699. },
  700. "files": [
  701. "src/functions_include.php"
  702. ]
  703. },
  704. "autoload-dev": {
  705. "psr-4": {
  706. "GuzzleHttp\\Promise\\Tests\\": "tests/"
  707. }
  708. },
  709. "scripts": {
  710. "test": [
  711. "vendor/bin/simple-phpunit"
  712. ],
  713. "test-ci": [
  714. "vendor/bin/simple-phpunit --coverage-text"
  715. ]
  716. },
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Michael Dowling",
  723. "email": "mtdowling@gmail.com",
  724. "homepage": "https://github.com/mtdowling"
  725. }
  726. ],
  727. "description": "Guzzle promises library",
  728. "keywords": [
  729. "promise"
  730. ],
  731. "time": "2021-03-07T09:25:29+00:00"
  732. },
  733. {
  734. "name": "guzzlehttp/psr7",
  735. "version": "1.8.2",
  736. "source": {
  737. "type": "git",
  738. "url": "http://gogs.renlianiot.com:4000/zmcoding/psr7.git",
  739. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  740. },
  741. "require": {
  742. "php": ">=5.4.0",
  743. "psr/http-message": "~1.0",
  744. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  745. },
  746. "provide": {
  747. "psr/http-message-implementation": "1.0"
  748. },
  749. "require-dev": {
  750. "ext-zlib": "*",
  751. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  752. },
  753. "suggest": {
  754. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  755. },
  756. "type": "library",
  757. "extra": {
  758. "branch-alias": {
  759. "dev-master": "1.7-dev"
  760. }
  761. },
  762. "autoload": {
  763. "psr-4": {
  764. "GuzzleHttp\\Psr7\\": "src/"
  765. },
  766. "files": [
  767. "src/functions_include.php"
  768. ]
  769. },
  770. "autoload-dev": {
  771. "psr-4": {
  772. "GuzzleHttp\\Tests\\Psr7\\": "tests/"
  773. }
  774. },
  775. "license": [
  776. "MIT"
  777. ],
  778. "authors": [
  779. {
  780. "name": "Michael Dowling",
  781. "email": "mtdowling@gmail.com",
  782. "homepage": "https://github.com/mtdowling"
  783. },
  784. {
  785. "name": "Tobias Schultze",
  786. "homepage": "https://github.com/Tobion"
  787. }
  788. ],
  789. "description": "PSR-7 message implementation that also provides common utility methods",
  790. "keywords": [
  791. "http",
  792. "message",
  793. "psr-7",
  794. "request",
  795. "response",
  796. "stream",
  797. "uri",
  798. "url"
  799. ],
  800. "time": "2021-04-26T09:17:50+00:00"
  801. },
  802. {
  803. "name": "jrtk/aliyun-oss-sdk-php",
  804. "version": "dev-master",
  805. "source": {
  806. "type": "git",
  807. "url": "http://gogs.renlianiot.com:4000/jrtk/aliyun-oss-sdk-php.git",
  808. "reference": "59df0e450930a0b6a868a0a1a1fd8767d9821044"
  809. },
  810. "require": {
  811. "php": ">=5.3"
  812. },
  813. "require-dev": {
  814. "phpunit/phpunit": "~4.0",
  815. "satooshi/php-coveralls": "~1.0"
  816. },
  817. "type": "library",
  818. "autoload": {
  819. "psr-4": {
  820. "OSS\\": "src/OSS"
  821. }
  822. },
  823. "license": [
  824. "MIT"
  825. ],
  826. "authors": [
  827. {
  828. "name": "Aliyuncs",
  829. "homepage": "http://www.aliyun.com"
  830. }
  831. ],
  832. "description": "Aliyun OSS SDK for PHP",
  833. "homepage": "http://www.aliyun.com/product/oss/",
  834. "time": "2018-12-12T09:51:03+00:00"
  835. },
  836. {
  837. "name": "jrtk/aliyun-ots-sdk-php",
  838. "version": "2.1.1",
  839. "source": {
  840. "type": "git",
  841. "url": "http://gogs.renlianiot.com:4000/jrtk/aliyun-ots-sdk-php.git",
  842. "reference": "f1f345506b13d32c76c2fca3a2bc09e263b023d5"
  843. },
  844. "require": {
  845. "guzzlehttp/guzzle": "^6.3",
  846. "php": ">=5.3"
  847. },
  848. "type": "library",
  849. "autoload": {
  850. "files": [
  851. "src/ProtoBuffer/pb_message.php",
  852. "src/ProtoBuffer/pb_proto_ots.php"
  853. ],
  854. "psr-4": {
  855. "Aliyun\\OTS\\": "src"
  856. }
  857. },
  858. "license": [
  859. "MIT"
  860. ],
  861. "authors": [
  862. {
  863. "name": "Aliyuncs",
  864. "homepage": "http://www.aliyun.com"
  865. }
  866. ],
  867. "description": "Aliyun OTS SDK for PHP",
  868. "homepage": "http://www.aliyun.com/product/ots/",
  869. "time": "2018-12-17T08:31:44+00:00"
  870. },
  871. {
  872. "name": "jrtk/fd_logs",
  873. "version": "dev-master",
  874. "source": {
  875. "type": "git",
  876. "url": "http://gogs.renlianiot.com:4000/jrtk/fd_logs.git",
  877. "reference": "b584c8c18feee1dbe982767e574c3162ed899b79"
  878. },
  879. "require": {
  880. "jrtk/jr-phpcls2": "dev-master",
  881. "php": ">=5.6.0",
  882. "zmcoding/php-tp313": "dev-master"
  883. },
  884. "type": "project",
  885. "time": "2021-12-06T06:47:01+00:00"
  886. },
  887. {
  888. "name": "jrtk/jr-phpcls2",
  889. "version": "dev-master",
  890. "source": {
  891. "type": "git",
  892. "url": "http://gogs.renlianiot.com:4000/jrtk/jr-phpcls2.git",
  893. "reference": "6474095850cb39eaf3521993bb38dabef2f1603c"
  894. },
  895. "type": "library",
  896. "autoload": {
  897. "psr-4": {
  898. "Jiaruan\\": "Home/Lib/ShareClass/Jiaruan/",
  899. "Jms\\Gui\\": "Home/Lib/ShareClass/Jms/Gui/",
  900. "Jms\\DB\\": "Home/Lib/ShareClass/Jms/DB/",
  901. "Jms\\File\\": "Home/Lib/ShareClass/Jms/File/",
  902. "Jms\\String\\": "Home/Lib/ShareClass/Jms/String/",
  903. "Jms\\Excel\\": "Home/Lib/ShareClass/Jms/Excel/",
  904. "Jms\\Log\\": "Home/Lib/ShareClass/Jms/Log/",
  905. "Jms\\Network\\": "Home/Lib/ShareClass/Jms/Network/",
  906. "Jms\\Security\\": "Home/Lib/ShareClass/Jms/Security/",
  907. "Jms\\Test\\": "Home/Lib/ShareClass/Jms/Test/",
  908. "Jms\\Pay\\": "Home/Lib/ShareClass/Jms/Pay/",
  909. "Jms\\Algo\\": "Home/Lib/ShareClass/Jms/Algo/",
  910. "Jms\\Ucenter\\": "Home/Lib/ShareClass/Jms/Ucenter/",
  911. "Jms\\Sms\\": "Home/Lib/ShareClass/Jms/Sms/",
  912. "Zcgl\\": "Home/Lib/ShareClass/Zcgl/",
  913. "Rlfd\\Insure\\": "Home/Lib/ShareClass/Rlfd/Insure/",
  914. "Rlfd\\Area\\": "Home/Lib/ShareClass/Rlfd/Area/",
  915. "Rlfd\\EBicycle\\": "Home/Lib/ShareClass/Rlfd/EBicycle/",
  916. "Rlfd\\Station\\": "Home/Lib/ShareClass/Rlfd/Station/",
  917. "Rlfd\\Route\\": "Home/Lib/ShareClass/Rlfd/Route/",
  918. "Rlfd\\Alarm\\": "Home/Lib/ShareClass/Rlfd/Alarm/",
  919. "Rlfd\\User\\": "Home/Lib/ShareClass/Rlfd/User/",
  920. "Rlfd\\Stat\\": "Home/Lib/ShareClass/Rlfd/Stat/",
  921. "Rlfd\\Log\\": "Home/Lib/ShareClass/Rlfd/Log/",
  922. "Rlfd\\Ftp\\": "Home/Lib/ShareClass/Rlfd/Ftp/",
  923. "Rlfd\\Cache\\": "Home/Lib/ShareClass/Rlfd/Cache/",
  924. "Rlfd\\Cczc\\": "Home/Lib/ShareClass/Rlfd/Cczc/",
  925. "Dcjk\\User\\": "Home/Lib/ShareClass/Dcjk/User/",
  926. "Zndp\\User\\": "Home/Lib/ShareClass/Zndp/User/",
  927. "Zndp\\Api\\": "Home/Lib/ShareClass/Zndp/Api/",
  928. "Rchy\\": "Home/Lib/ShareClass/Rchy/",
  929. "Rchy\\Cache\\": "Home/Lib/ShareClass/Rchy/Cache/",
  930. "Rchy\\Enum\\": "Home/Lib/ShareClass/Rchy/Enum/",
  931. "Rlgs\\Proto\\": "Home/Lib/ShareClass/Rlgs/Proto/"
  932. }
  933. },
  934. "authors": [
  935. {
  936. "name": "git",
  937. "email": "git@jrtk.net"
  938. }
  939. ],
  940. "time": "2022-03-29T06:07:42+00:00"
  941. },
  942. {
  943. "name": "jrtk/jr-ucenter-tp31",
  944. "version": "dev-develop",
  945. "source": {
  946. "type": "git",
  947. "url": "http://gogs.renlianiot.com:4000/jrtk/jr-ucenter-tp31.git",
  948. "reference": "5d11122f29a485656151c8077f104a778f53d27b"
  949. },
  950. "type": "library",
  951. "time": "2019-02-26T08:36:29+00:00"
  952. },
  953. {
  954. "name": "jrtk/php-crypto",
  955. "version": "dev-master",
  956. "source": {
  957. "type": "git",
  958. "url": "http://gogs.renlianiot.com:4000/jrtk/php-crypto.git",
  959. "reference": "33ad80fd59faf5a1cb85e3a5d8272ce827b13570"
  960. },
  961. "require": {
  962. "php": ">=5.6.0"
  963. },
  964. "require-dev": {
  965. "phpunit/phpunit": "^5"
  966. },
  967. "type": "library",
  968. "autoload": {
  969. "psr-4": {
  970. "Crypto\\": "src/"
  971. }
  972. },
  973. "license": [
  974. "MIT"
  975. ],
  976. "description": "crypto",
  977. "keywords": [
  978. "crypto"
  979. ],
  980. "time": "2018-12-21T06:57:59+00:00"
  981. },
  982. {
  983. "name": "league/url",
  984. "version": "3.3.5",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/thephpleague/url.git",
  988. "reference": "1ae2c3ce29a7c5438339ff6388225844e6479da8"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/thephpleague/url/zipball/1ae2c3ce29a7c5438339ff6388225844e6479da8",
  993. "reference": "1ae2c3ce29a7c5438339ff6388225844e6479da8",
  994. "shasum": "",
  995. "mirrors": [
  996. {
  997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  998. "preferred": true
  999. }
  1000. ]
  1001. },
  1002. "require": {
  1003. "ext-mbstring": "*",
  1004. "php": ">=5.3.0",
  1005. "true/punycode": "^2.0"
  1006. },
  1007. "require-dev": {
  1008. "phpunit/phpunit": "^4.0"
  1009. },
  1010. "type": "library",
  1011. "extra": {
  1012. "branch-alias": {
  1013. "dev-master": "3.3-dev"
  1014. }
  1015. },
  1016. "autoload": {
  1017. "psr-4": {
  1018. "League\\Url\\": "src"
  1019. }
  1020. },
  1021. "notification-url": "https://packagist.org/downloads/",
  1022. "license": [
  1023. "MIT"
  1024. ],
  1025. "authors": [
  1026. {
  1027. "name": "Ignace Nyamagana Butera",
  1028. "email": "nyamsprod@gmail.com",
  1029. "homepage": "https://github.com/nyamsprod/",
  1030. "role": "Developer"
  1031. }
  1032. ],
  1033. "description": "League/url is a lightweight PHP Url manipulating library",
  1034. "homepage": "http://url.thephpleague.com",
  1035. "keywords": [
  1036. "parse_url",
  1037. "php",
  1038. "url"
  1039. ],
  1040. "support": {
  1041. "forum": "https://groups.google.com/forum/#!forum/thephpleague",
  1042. "issues": "https://github.com/thephpleague/url/issues",
  1043. "source": "https://github.com/thephpleague/url/tree/3.x"
  1044. },
  1045. "abandoned": "league/uri",
  1046. "time": "2015-07-15T08:24:12+00:00"
  1047. },
  1048. {
  1049. "name": "lizhichao/one-sm",
  1050. "version": "1.10",
  1051. "source": {
  1052. "type": "git",
  1053. "url": "https://github.com/lizhichao/sm.git",
  1054. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  1055. },
  1056. "dist": {
  1057. "type": "zip",
  1058. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  1059. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  1060. "shasum": "",
  1061. "mirrors": [
  1062. {
  1063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1064. "preferred": true
  1065. }
  1066. ]
  1067. },
  1068. "require": {
  1069. "php": ">=5.6"
  1070. },
  1071. "type": "library",
  1072. "autoload": {
  1073. "psr-4": {
  1074. "OneSm\\": "src/"
  1075. }
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "Apache-2.0"
  1080. ],
  1081. "authors": [
  1082. {
  1083. "name": "tanszhe",
  1084. "email": "1018595261@qq.com"
  1085. }
  1086. ],
  1087. "description": "国密sm3",
  1088. "keywords": [
  1089. "php",
  1090. "sm3"
  1091. ],
  1092. "support": {
  1093. "issues": "https://github.com/lizhichao/sm/issues",
  1094. "source": "https://github.com/lizhichao/sm/tree/1.10"
  1095. },
  1096. "funding": [
  1097. {
  1098. "url": "https://www.vicsdf.com/img/w.jpg",
  1099. "type": "custom"
  1100. },
  1101. {
  1102. "url": "https://www.vicsdf.com/img/z.jpg",
  1103. "type": "custom"
  1104. }
  1105. ],
  1106. "time": "2021-05-26T06:19:22+00:00"
  1107. },
  1108. {
  1109. "name": "paragonie/random_compat",
  1110. "version": "v2.0.21",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/paragonie/random_compat.git",
  1114. "reference": "96c132c7f2f7bc3230723b66e89f8f150b29d5ae"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/96c132c7f2f7bc3230723b66e89f8f150b29d5ae",
  1119. "reference": "96c132c7f2f7bc3230723b66e89f8f150b29d5ae",
  1120. "shasum": "",
  1121. "mirrors": [
  1122. {
  1123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1124. "preferred": true
  1125. }
  1126. ]
  1127. },
  1128. "require": {
  1129. "php": ">=5.2.0"
  1130. },
  1131. "require-dev": {
  1132. "phpunit/phpunit": "*"
  1133. },
  1134. "suggest": {
  1135. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1136. },
  1137. "type": "library",
  1138. "autoload": {
  1139. "files": [
  1140. "lib/random.php"
  1141. ]
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "MIT"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "Paragon Initiative Enterprises",
  1150. "email": "security@paragonie.com",
  1151. "homepage": "https://paragonie.com"
  1152. }
  1153. ],
  1154. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1155. "keywords": [
  1156. "csprng",
  1157. "polyfill",
  1158. "pseudorandom",
  1159. "random"
  1160. ],
  1161. "support": {
  1162. "email": "info@paragonie.com",
  1163. "issues": "https://github.com/paragonie/random_compat/issues",
  1164. "source": "https://github.com/paragonie/random_compat"
  1165. },
  1166. "time": "2022-02-16T17:07:03+00:00"
  1167. },
  1168. {
  1169. "name": "psr/http-message",
  1170. "version": "1.0.1",
  1171. "source": {
  1172. "type": "git",
  1173. "url": "http://gogs.renlianiot.com:4000/zmcoding/http-message.git",
  1174. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1175. },
  1176. "require": {
  1177. "php": ">=5.3.0"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "1.0.x-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-4": {
  1187. "Psr\\Http\\Message\\": "src/"
  1188. }
  1189. },
  1190. "license": [
  1191. "MIT"
  1192. ],
  1193. "authors": [
  1194. {
  1195. "name": "PHP-FIG",
  1196. "homepage": "http://www.php-fig.org/"
  1197. }
  1198. ],
  1199. "description": "Common interface for HTTP messages",
  1200. "homepage": "https://github.com/php-fig/http-message",
  1201. "keywords": [
  1202. "http",
  1203. "http-message",
  1204. "psr",
  1205. "psr-7",
  1206. "request",
  1207. "response"
  1208. ],
  1209. "time": "2016-08-06T14:39:51+00:00"
  1210. },
  1211. {
  1212. "name": "ralouphie/getallheaders",
  1213. "version": "3.0.3",
  1214. "source": {
  1215. "type": "git",
  1216. "url": "http://gogs.renlianiot.com:4000/zmcoding/getallheaders.git",
  1217. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1218. },
  1219. "require": {
  1220. "php": ">=5.6"
  1221. },
  1222. "require-dev": {
  1223. "php-coveralls/php-coveralls": "^2.1",
  1224. "phpunit/phpunit": "^5 || ^6.5"
  1225. },
  1226. "type": "library",
  1227. "autoload": {
  1228. "files": [
  1229. "src/getallheaders.php"
  1230. ]
  1231. },
  1232. "autoload-dev": {
  1233. "psr-4": {
  1234. "getallheaders\\Tests\\": "tests/"
  1235. }
  1236. },
  1237. "license": [
  1238. "MIT"
  1239. ],
  1240. "authors": [
  1241. {
  1242. "name": "Ralph Khattar",
  1243. "email": "ralph.khattar@gmail.com"
  1244. }
  1245. ],
  1246. "description": "A polyfill for getallheaders.",
  1247. "time": "2019-03-08T08:55:37+00:00"
  1248. },
  1249. {
  1250. "name": "spatie/url-signer",
  1251. "version": "1.0.2",
  1252. "source": {
  1253. "type": "git",
  1254. "url": "https://github.com/spatie/url-signer.git",
  1255. "reference": "945bf049d50eeaadd774e777114c6507eb6df58a"
  1256. },
  1257. "dist": {
  1258. "type": "zip",
  1259. "url": "https://api.github.com/repos/spatie/url-signer/zipball/945bf049d50eeaadd774e777114c6507eb6df58a",
  1260. "reference": "945bf049d50eeaadd774e777114c6507eb6df58a",
  1261. "shasum": "",
  1262. "mirrors": [
  1263. {
  1264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1265. "preferred": true
  1266. }
  1267. ]
  1268. },
  1269. "require": {
  1270. "league/url": "^3.3",
  1271. "php": ">=5.6.0"
  1272. },
  1273. "require-dev": {
  1274. "henrikbjorn/phpspec-code-coverage": "^1.0",
  1275. "phpspec/phpspec": "^2.2"
  1276. },
  1277. "type": "library",
  1278. "extra": {
  1279. "branch-alias": {
  1280. "dev-master": "1.0-dev"
  1281. }
  1282. },
  1283. "autoload": {
  1284. "psr-4": {
  1285. "Spatie\\UrlSigner\\": "src"
  1286. }
  1287. },
  1288. "notification-url": "https://packagist.org/downloads/",
  1289. "license": [
  1290. "MIT"
  1291. ],
  1292. "authors": [
  1293. {
  1294. "name": "Sebastian De Deyne",
  1295. "email": "sebastian@spatie.be",
  1296. "homepage": "https://github.com/sebastiandedeyne",
  1297. "role": "Developer"
  1298. }
  1299. ],
  1300. "description": "Generate a url with an expiration date and signature to prevent unauthorized access",
  1301. "homepage": "https://github.com/spatie/url-signer",
  1302. "keywords": [
  1303. "encryption",
  1304. "security",
  1305. "sign",
  1306. "spatie",
  1307. "url"
  1308. ],
  1309. "support": {
  1310. "issues": "https://github.com/spatie/url-signer/issues",
  1311. "source": "https://github.com/spatie/url-signer/tree/master"
  1312. },
  1313. "time": "2017-04-09T08:13:03+00:00"
  1314. },
  1315. {
  1316. "name": "symfony/polyfill-intl-idn",
  1317. "version": "v1.19.0",
  1318. "source": {
  1319. "type": "git",
  1320. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1321. "reference": "4ad5115c0f5d5172a9fe8147675ec6de266d8826"
  1322. },
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/4ad5115c0f5d5172a9fe8147675ec6de266d8826",
  1326. "reference": "4ad5115c0f5d5172a9fe8147675ec6de266d8826",
  1327. "shasum": "",
  1328. "mirrors": [
  1329. {
  1330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1331. "preferred": true
  1332. }
  1333. ]
  1334. },
  1335. "require": {
  1336. "php": ">=5.3.3",
  1337. "symfony/polyfill-intl-normalizer": "^1.10",
  1338. "symfony/polyfill-php70": "^1.10",
  1339. "symfony/polyfill-php72": "^1.10"
  1340. },
  1341. "suggest": {
  1342. "ext-intl": "For best performance"
  1343. },
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-main": "1.19-dev"
  1348. },
  1349. "thanks": {
  1350. "name": "symfony/polyfill",
  1351. "url": "https://github.com/symfony/polyfill"
  1352. }
  1353. },
  1354. "autoload": {
  1355. "files": [
  1356. "bootstrap.php"
  1357. ],
  1358. "psr-4": {
  1359. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1360. }
  1361. },
  1362. "notification-url": "https://packagist.org/downloads/",
  1363. "license": [
  1364. "MIT"
  1365. ],
  1366. "authors": [
  1367. {
  1368. "name": "Laurent Bassin",
  1369. "email": "laurent@bassin.info"
  1370. },
  1371. {
  1372. "name": "Trevor Rowbotham",
  1373. "email": "trevor.rowbotham@pm.me"
  1374. },
  1375. {
  1376. "name": "Symfony Community",
  1377. "homepage": "https://symfony.com/contributors"
  1378. }
  1379. ],
  1380. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1381. "homepage": "https://symfony.com",
  1382. "keywords": [
  1383. "compatibility",
  1384. "idn",
  1385. "intl",
  1386. "polyfill",
  1387. "portable",
  1388. "shim"
  1389. ],
  1390. "support": {
  1391. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.19.0"
  1392. },
  1393. "funding": [
  1394. {
  1395. "url": "https://symfony.com/sponsor",
  1396. "type": "custom"
  1397. },
  1398. {
  1399. "url": "https://github.com/fabpot",
  1400. "type": "github"
  1401. },
  1402. {
  1403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1404. "type": "tidelift"
  1405. }
  1406. ],
  1407. "time": "2020-10-21T09:57:48+00:00"
  1408. },
  1409. {
  1410. "name": "symfony/polyfill-intl-normalizer",
  1411. "version": "v1.19.0",
  1412. "source": {
  1413. "type": "git",
  1414. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1415. "reference": "8db0ae7936b42feb370840cf24de1a144fb0ef27"
  1416. },
  1417. "dist": {
  1418. "type": "zip",
  1419. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8db0ae7936b42feb370840cf24de1a144fb0ef27",
  1420. "reference": "8db0ae7936b42feb370840cf24de1a144fb0ef27",
  1421. "shasum": "",
  1422. "mirrors": [
  1423. {
  1424. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1425. "preferred": true
  1426. }
  1427. ]
  1428. },
  1429. "require": {
  1430. "php": ">=5.3.3"
  1431. },
  1432. "suggest": {
  1433. "ext-intl": "For best performance"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-main": "1.19-dev"
  1439. },
  1440. "thanks": {
  1441. "name": "symfony/polyfill",
  1442. "url": "https://github.com/symfony/polyfill"
  1443. }
  1444. },
  1445. "autoload": {
  1446. "files": [
  1447. "bootstrap.php"
  1448. ],
  1449. "psr-4": {
  1450. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1451. },
  1452. "classmap": [
  1453. "Resources/stubs"
  1454. ]
  1455. },
  1456. "notification-url": "https://packagist.org/downloads/",
  1457. "license": [
  1458. "MIT"
  1459. ],
  1460. "authors": [
  1461. {
  1462. "name": "Nicolas Grekas",
  1463. "email": "p@tchwork.com"
  1464. },
  1465. {
  1466. "name": "Symfony Community",
  1467. "homepage": "https://symfony.com/contributors"
  1468. }
  1469. ],
  1470. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1471. "homepage": "https://symfony.com",
  1472. "keywords": [
  1473. "compatibility",
  1474. "intl",
  1475. "normalizer",
  1476. "polyfill",
  1477. "portable",
  1478. "shim"
  1479. ],
  1480. "support": {
  1481. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.19.0"
  1482. },
  1483. "funding": [
  1484. {
  1485. "url": "https://symfony.com/sponsor",
  1486. "type": "custom"
  1487. },
  1488. {
  1489. "url": "https://github.com/fabpot",
  1490. "type": "github"
  1491. },
  1492. {
  1493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1494. "type": "tidelift"
  1495. }
  1496. ],
  1497. "time": "2020-10-23T09:01:57+00:00"
  1498. },
  1499. {
  1500. "name": "symfony/polyfill-mbstring",
  1501. "version": "v1.19.0",
  1502. "source": {
  1503. "type": "git",
  1504. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1505. "reference": "b5f7b932ee6fa802fc792eabd77c4c88084517ce"
  1506. },
  1507. "dist": {
  1508. "type": "zip",
  1509. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b5f7b932ee6fa802fc792eabd77c4c88084517ce",
  1510. "reference": "b5f7b932ee6fa802fc792eabd77c4c88084517ce",
  1511. "shasum": "",
  1512. "mirrors": [
  1513. {
  1514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1515. "preferred": true
  1516. }
  1517. ]
  1518. },
  1519. "require": {
  1520. "php": ">=5.3.3"
  1521. },
  1522. "suggest": {
  1523. "ext-mbstring": "For best performance"
  1524. },
  1525. "type": "library",
  1526. "extra": {
  1527. "branch-alias": {
  1528. "dev-main": "1.19-dev"
  1529. },
  1530. "thanks": {
  1531. "name": "symfony/polyfill",
  1532. "url": "https://github.com/symfony/polyfill"
  1533. }
  1534. },
  1535. "autoload": {
  1536. "files": [
  1537. "bootstrap.php"
  1538. ],
  1539. "psr-4": {
  1540. "Symfony\\Polyfill\\Mbstring\\": ""
  1541. }
  1542. },
  1543. "notification-url": "https://packagist.org/downloads/",
  1544. "license": [
  1545. "MIT"
  1546. ],
  1547. "authors": [
  1548. {
  1549. "name": "Nicolas Grekas",
  1550. "email": "p@tchwork.com"
  1551. },
  1552. {
  1553. "name": "Symfony Community",
  1554. "homepage": "https://symfony.com/contributors"
  1555. }
  1556. ],
  1557. "description": "Symfony polyfill for the Mbstring extension",
  1558. "homepage": "https://symfony.com",
  1559. "keywords": [
  1560. "compatibility",
  1561. "mbstring",
  1562. "polyfill",
  1563. "portable",
  1564. "shim"
  1565. ],
  1566. "support": {
  1567. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.19.0"
  1568. },
  1569. "funding": [
  1570. {
  1571. "url": "https://symfony.com/sponsor",
  1572. "type": "custom"
  1573. },
  1574. {
  1575. "url": "https://github.com/fabpot",
  1576. "type": "github"
  1577. },
  1578. {
  1579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1580. "type": "tidelift"
  1581. }
  1582. ],
  1583. "time": "2020-10-23T09:01:57+00:00"
  1584. },
  1585. {
  1586. "name": "symfony/polyfill-php70",
  1587. "version": "v1.19.0",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/symfony/polyfill-php70.git",
  1591. "reference": "3fe414077251a81a1b15b1c709faf5c2fbae3d4e"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/3fe414077251a81a1b15b1c709faf5c2fbae3d4e",
  1596. "reference": "3fe414077251a81a1b15b1c709faf5c2fbae3d4e",
  1597. "shasum": "",
  1598. "mirrors": [
  1599. {
  1600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1601. "preferred": true
  1602. }
  1603. ]
  1604. },
  1605. "require": {
  1606. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  1607. "php": ">=5.3.3"
  1608. },
  1609. "type": "library",
  1610. "extra": {
  1611. "branch-alias": {
  1612. "dev-main": "1.19-dev"
  1613. },
  1614. "thanks": {
  1615. "name": "symfony/polyfill",
  1616. "url": "https://github.com/symfony/polyfill"
  1617. }
  1618. },
  1619. "autoload": {
  1620. "files": [
  1621. "bootstrap.php"
  1622. ],
  1623. "psr-4": {
  1624. "Symfony\\Polyfill\\Php70\\": ""
  1625. },
  1626. "classmap": [
  1627. "Resources/stubs"
  1628. ]
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Nicolas Grekas",
  1637. "email": "p@tchwork.com"
  1638. },
  1639. {
  1640. "name": "Symfony Community",
  1641. "homepage": "https://symfony.com/contributors"
  1642. }
  1643. ],
  1644. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  1645. "homepage": "https://symfony.com",
  1646. "keywords": [
  1647. "compatibility",
  1648. "polyfill",
  1649. "portable",
  1650. "shim"
  1651. ],
  1652. "support": {
  1653. "source": "https://github.com/symfony/polyfill-php70/tree/v1.19.0"
  1654. },
  1655. "funding": [
  1656. {
  1657. "url": "https://symfony.com/sponsor",
  1658. "type": "custom"
  1659. },
  1660. {
  1661. "url": "https://github.com/fabpot",
  1662. "type": "github"
  1663. },
  1664. {
  1665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1666. "type": "tidelift"
  1667. }
  1668. ],
  1669. "time": "2020-10-23T09:01:57+00:00"
  1670. },
  1671. {
  1672. "name": "symfony/polyfill-php72",
  1673. "version": "v1.19.0",
  1674. "source": {
  1675. "type": "git",
  1676. "url": "https://github.com/symfony/polyfill-php72.git",
  1677. "reference": "beecef6b463b06954638f02378f52496cb84bacc"
  1678. },
  1679. "dist": {
  1680. "type": "zip",
  1681. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/beecef6b463b06954638f02378f52496cb84bacc",
  1682. "reference": "beecef6b463b06954638f02378f52496cb84bacc",
  1683. "shasum": "",
  1684. "mirrors": [
  1685. {
  1686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1687. "preferred": true
  1688. }
  1689. ]
  1690. },
  1691. "require": {
  1692. "php": ">=5.3.3"
  1693. },
  1694. "type": "library",
  1695. "extra": {
  1696. "branch-alias": {
  1697. "dev-main": "1.19-dev"
  1698. },
  1699. "thanks": {
  1700. "name": "symfony/polyfill",
  1701. "url": "https://github.com/symfony/polyfill"
  1702. }
  1703. },
  1704. "autoload": {
  1705. "files": [
  1706. "bootstrap.php"
  1707. ],
  1708. "psr-4": {
  1709. "Symfony\\Polyfill\\Php72\\": ""
  1710. }
  1711. },
  1712. "notification-url": "https://packagist.org/downloads/",
  1713. "license": [
  1714. "MIT"
  1715. ],
  1716. "authors": [
  1717. {
  1718. "name": "Nicolas Grekas",
  1719. "email": "p@tchwork.com"
  1720. },
  1721. {
  1722. "name": "Symfony Community",
  1723. "homepage": "https://symfony.com/contributors"
  1724. }
  1725. ],
  1726. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1727. "homepage": "https://symfony.com",
  1728. "keywords": [
  1729. "compatibility",
  1730. "polyfill",
  1731. "portable",
  1732. "shim"
  1733. ],
  1734. "support": {
  1735. "source": "https://github.com/symfony/polyfill-php72/tree/v1.19.0"
  1736. },
  1737. "funding": [
  1738. {
  1739. "url": "https://symfony.com/sponsor",
  1740. "type": "custom"
  1741. },
  1742. {
  1743. "url": "https://github.com/fabpot",
  1744. "type": "github"
  1745. },
  1746. {
  1747. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1748. "type": "tidelift"
  1749. }
  1750. ],
  1751. "time": "2020-10-23T09:01:57+00:00"
  1752. },
  1753. {
  1754. "name": "true/punycode",
  1755. "version": "v2.1.1",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/true/php-punycode.git",
  1759. "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/true/php-punycode/zipball/a4d0c11a36dd7f4e7cd7096076cab6d3378a071e",
  1764. "reference": "a4d0c11a36dd7f4e7cd7096076cab6d3378a071e",
  1765. "shasum": "",
  1766. "mirrors": [
  1767. {
  1768. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1769. "preferred": true
  1770. }
  1771. ]
  1772. },
  1773. "require": {
  1774. "php": ">=5.3.0",
  1775. "symfony/polyfill-mbstring": "^1.3"
  1776. },
  1777. "require-dev": {
  1778. "phpunit/phpunit": "~4.7",
  1779. "squizlabs/php_codesniffer": "~2.0"
  1780. },
  1781. "type": "library",
  1782. "autoload": {
  1783. "psr-4": {
  1784. "TrueBV\\": "src/"
  1785. }
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "MIT"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Renan Gonçalves",
  1794. "email": "renan.saddam@gmail.com"
  1795. }
  1796. ],
  1797. "description": "A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA)",
  1798. "homepage": "https://github.com/true/php-punycode",
  1799. "keywords": [
  1800. "idna",
  1801. "punycode"
  1802. ],
  1803. "support": {
  1804. "issues": "https://github.com/true/php-punycode/issues",
  1805. "source": "https://github.com/true/php-punycode/tree/master"
  1806. },
  1807. "abandoned": true,
  1808. "time": "2016-11-16T10:37:54+00:00"
  1809. },
  1810. {
  1811. "name": "zmcoding/php-tp313",
  1812. "version": "dev-master",
  1813. "source": {
  1814. "type": "git",
  1815. "url": "http://gogs.renlianiot.com:4000/zmcoding/php-tp313.git",
  1816. "reference": "efd7a1b0d4370db86632fb04365f8d829f613181"
  1817. },
  1818. "type": "library",
  1819. "time": "2021-07-13T05:06:41+00:00"
  1820. },
  1821. {
  1822. "name": "zmcoding/php-workerman352",
  1823. "version": "dev-master",
  1824. "source": {
  1825. "type": "git",
  1826. "url": "http://gogs.renlianiot.com:4000/zmcoding/php-workerman352.git",
  1827. "reference": "fe3bade2a09ec27fe3097a65b25322e6aa740118"
  1828. },
  1829. "require": {
  1830. "ext-pcntl": "*",
  1831. "ext-posix": "*",
  1832. "php": ">=5.3"
  1833. },
  1834. "suggest": {
  1835. "ext-event": "For better performance. "
  1836. },
  1837. "type": "library",
  1838. "autoload": {
  1839. "psr-4": {
  1840. "Workerman\\": "./",
  1841. "Workerman\\Connection\\": "Connection/",
  1842. "Workerman\\Events\\": "Events/",
  1843. "Workerman\\Events\\React\\": "Events/React/",
  1844. "Workerman\\Lib\\": "Lib/",
  1845. "Workerman\\Protocols\\": "Protocols/"
  1846. }
  1847. },
  1848. "license": [
  1849. "MIT"
  1850. ],
  1851. "authors": [
  1852. {
  1853. "name": "walkor",
  1854. "email": "walkor@workerman.net",
  1855. "homepage": "http://www.workerman.net",
  1856. "role": "Developer"
  1857. }
  1858. ],
  1859. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  1860. "homepage": "http://www.workerman.net",
  1861. "keywords": [
  1862. "asynchronous",
  1863. "event-loop"
  1864. ],
  1865. "support": {
  1866. "email": "walkor@workerman.net",
  1867. "issues": "https://github.com/walkor/workerman/issues",
  1868. "forum": "http://wenda.workerman.net/",
  1869. "wiki": "http://doc3.workerman.net/index.html",
  1870. "source": "https://github.com/walkor/workerman"
  1871. },
  1872. "time": "2020-11-23T11:25:42+00:00"
  1873. },
  1874. {
  1875. "name": "zmcoding/wechat",
  1876. "version": "dev-master",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "http://gogs.renlianiot.com:4000/zmcoding/wechat.git",
  1880. "reference": "200fced0e71d55a294bdb01d78ce6b0c2a6f5dbb"
  1881. },
  1882. "type": "library",
  1883. "autoload": {
  1884. "psr-4": {
  1885. "Tencent\\": "src/"
  1886. }
  1887. },
  1888. "time": "2021-04-22T01:39:46+00:00"
  1889. },
  1890. {
  1891. "name": "zmcoding/wx-applet-lib",
  1892. "version": "dev-master",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "http://gogs.renlianiot.com:4000/zmcoding/wx-applet-lib.git",
  1896. "reference": "8a637eb398fc3ea609a06ed2b399772c465bd27b"
  1897. },
  1898. "require": {
  1899. "php": ">=5.6.0"
  1900. },
  1901. "type": "project",
  1902. "autoload": {
  1903. "psr-4": {
  1904. "WxAppletLib\\": "src/"
  1905. }
  1906. },
  1907. "time": "2020-08-07T03:38:53+00:00"
  1908. },
  1909. {
  1910. "name": "zmcoding/wxmenu",
  1911. "version": "dev-master",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "http://gogs.renlianiot.com:4000/zmcoding/wxmenu.git",
  1915. "reference": "16ac4a79237908bb8706f5500597c5dd16c20868"
  1916. },
  1917. "require": {
  1918. "jrtk/jr-phpcls2": "dev-master",
  1919. "php": ">=5.6.0",
  1920. "zmcoding/php-tp313": "dev-master"
  1921. },
  1922. "type": "project",
  1923. "time": "2021-12-06T06:47:54+00:00"
  1924. }
  1925. ],
  1926. "packages-dev": [],
  1927. "aliases": [],
  1928. "minimum-stability": "stable",
  1929. "stability-flags": {
  1930. "zmcoding/php-tp313": 20,
  1931. "zmcoding/php-workerman352": 20,
  1932. "jrtk/php-crypto": 20,
  1933. "jrtk/jr-phpcls2": 20,
  1934. "jrtk/jr-ucenter-tp31": 20,
  1935. "jrtk/aliyun-oss-sdk-php": 20,
  1936. "jrtk/fd_logs": 20,
  1937. "dodgepudding/wechat-php-sdk": 20,
  1938. "zmcoding/wx-applet-lib": 20,
  1939. "zmcoding/wechat": 20,
  1940. "zmcoding/wxmenu": 20
  1941. },
  1942. "prefer-stable": false,
  1943. "prefer-lowest": false,
  1944. "platform": {
  1945. "php": ">=5.6.0"
  1946. },
  1947. "platform-dev": [],
  1948. "plugin-api-version": "2.2.0"
  1949. }