installed.json 72 KB

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