installed.json 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872
  1. {
  2. "packages": [
  3. {
  4. "name": "adbario/php-dot-notation",
  5. "version": "2.5.0",
  6. "version_normalized": "2.5.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/adbario/php-dot-notation.git",
  10. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  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-10-14T20:31:46+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.5.0"
  62. },
  63. "install-path": "../adbario/php-dot-notation"
  64. },
  65. {
  66. "name": "alibabacloud/credentials",
  67. "version": "1.1.5",
  68. "version_normalized": "1.1.5.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/aliyun/credentials-php.git",
  72. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  77. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  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": "^5.7|^6.6|^7.5",
  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": "2023-04-11T02:12:12+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.10",
  157. "version_normalized": "0.2.10.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  161. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  166. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  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|^0.2.1",
  179. "alibabacloud/tea-utils": "^0.2.19",
  180. "alibabacloud/tea-xml": "^0.2",
  181. "php": ">5.5"
  182. },
  183. "time": "2023-11-23T07:01:20+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.10"
  205. },
  206. "install-path": "../alibabacloud/darabonba-openapi"
  207. },
  208. {
  209. "name": "alibabacloud/dysmsapi-20170525",
  210. "version": "2.0.24",
  211. "version_normalized": "2.0.24.0",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  215. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/75d8a8c7259f53e58ba3330e004150841be6010d",
  220. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d",
  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.8",
  231. "alibabacloud/endpoint-util": "^0.1.0",
  232. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  233. "alibabacloud/tea-utils": "^0.2.19",
  234. "php": ">5.5"
  235. },
  236. "time": "2023-07-04T11:32:11+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.24"
  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.2.1",
  363. "version_normalized": "0.2.1.0",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  367. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  372. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  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": "*"
  389. },
  390. "time": "2023-01-10T09:10:10+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.2.1"
  412. },
  413. "install-path": "../alibabacloud/openapi-util"
  414. },
  415. {
  416. "name": "alibabacloud/tea",
  417. "version": "3.2.1",
  418. "version_normalized": "3.2.1.0",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/aliyun/tea-php.git",
  422. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  427. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  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.4",
  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": "2023-05-16T06:43:41+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-console",
  491. "version": "0.1.3",
  492. "version_normalized": "0.1.3.0",
  493. "source": {
  494. "type": "git",
  495. "url": "https://github.com/alibabacloud-sdk-php/tea-console.git",
  496. "reference": "6b30249a17ca1a0962f2a71e01c92fe91b654f17"
  497. },
  498. "dist": {
  499. "type": "zip",
  500. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-console/zipball/6b30249a17ca1a0962f2a71e01c92fe91b654f17",
  501. "reference": "6b30249a17ca1a0962f2a71e01c92fe91b654f17",
  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. "monolog/monolog": "^1.0|^2.1",
  512. "php": ">5.5"
  513. },
  514. "time": "2020-12-01T02:14:32+00:00",
  515. "type": "library",
  516. "installation-source": "dist",
  517. "autoload": {
  518. "psr-4": {
  519. "AlibabaCloud\\Tea\\Console\\": "src"
  520. }
  521. },
  522. "notification-url": "https://packagist.org/downloads/",
  523. "license": [
  524. "Apache-2.0"
  525. ],
  526. "description": "Alibaba Cloud Tea Console Output Library for PHP",
  527. "support": {
  528. "issues": "https://github.com/alibabacloud-sdk-php/tea-console/issues",
  529. "source": "https://github.com/alibabacloud-sdk-php/tea-console/tree/0.1.3"
  530. },
  531. "install-path": "../alibabacloud/tea-console"
  532. },
  533. {
  534. "name": "alibabacloud/tea-utils",
  535. "version": "0.2.19",
  536. "version_normalized": "0.2.19.0",
  537. "source": {
  538. "type": "git",
  539. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  540. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  541. },
  542. "dist": {
  543. "type": "zip",
  544. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  545. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  546. "shasum": "",
  547. "mirrors": [
  548. {
  549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  550. "preferred": true
  551. }
  552. ]
  553. },
  554. "require": {
  555. "alibabacloud/tea": "^3.1",
  556. "php": ">5.5"
  557. },
  558. "time": "2023-06-26T09:49:19+00:00",
  559. "type": "library",
  560. "installation-source": "dist",
  561. "autoload": {
  562. "psr-4": {
  563. "AlibabaCloud\\Tea\\Utils\\": "src"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "Apache-2.0"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Alibaba Cloud SDK",
  573. "email": "sdk-team@alibabacloud.com"
  574. }
  575. ],
  576. "description": "Alibaba Cloud Tea Utils for PHP",
  577. "support": {
  578. "issues": "https://github.com/aliyun/tea-util/issues",
  579. "source": "https://github.com/aliyun/tea-util"
  580. },
  581. "install-path": "../alibabacloud/tea-utils"
  582. },
  583. {
  584. "name": "alibabacloud/tea-xml",
  585. "version": "0.2.4",
  586. "version_normalized": "0.2.4.0",
  587. "source": {
  588. "type": "git",
  589. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  590. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  591. },
  592. "dist": {
  593. "type": "zip",
  594. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  595. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  596. "shasum": "",
  597. "mirrors": [
  598. {
  599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  600. "preferred": true
  601. }
  602. ]
  603. },
  604. "require": {
  605. "php": ">5.5"
  606. },
  607. "require-dev": {
  608. "phpunit/phpunit": "*",
  609. "symfony/var-dumper": "*"
  610. },
  611. "time": "2022-08-02T04:12:58+00:00",
  612. "type": "library",
  613. "installation-source": "dist",
  614. "autoload": {
  615. "psr-4": {
  616. "AlibabaCloud\\Tea\\XML\\": "src"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "Apache-2.0"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Alibaba Cloud SDK",
  626. "email": "sdk-team@alibabacloud.com"
  627. }
  628. ],
  629. "description": "Alibaba Cloud Tea XML Library for PHP",
  630. "support": {
  631. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  632. },
  633. "install-path": "../alibabacloud/tea-xml"
  634. },
  635. {
  636. "name": "aliyuncs/oss-sdk-php",
  637. "version": "v2.7.1",
  638. "version_normalized": "2.7.1.0",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  642. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/ce5d34dae9868237a32248788ea175c7e9da14b1",
  647. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1",
  648. "shasum": "",
  649. "mirrors": [
  650. {
  651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  652. "preferred": true
  653. }
  654. ]
  655. },
  656. "require": {
  657. "php": ">=5.3"
  658. },
  659. "require-dev": {
  660. "php-coveralls/php-coveralls": "*",
  661. "phpunit/phpunit": "*"
  662. },
  663. "time": "2024-02-28T11:22:18+00:00",
  664. "type": "library",
  665. "installation-source": "dist",
  666. "autoload": {
  667. "psr-4": {
  668. "OSS\\": "src/OSS"
  669. }
  670. },
  671. "notification-url": "https://packagist.org/downloads/",
  672. "license": [
  673. "MIT"
  674. ],
  675. "authors": [
  676. {
  677. "name": "Aliyuncs",
  678. "homepage": "http://www.aliyun.com"
  679. }
  680. ],
  681. "description": "Aliyun OSS SDK for PHP",
  682. "homepage": "http://www.aliyun.com/product/oss/",
  683. "support": {
  684. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  685. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.1"
  686. },
  687. "install-path": "../aliyuncs/oss-sdk-php"
  688. },
  689. {
  690. "name": "guzzlehttp/guzzle",
  691. "version": "7.8.1",
  692. "version_normalized": "7.8.1.0",
  693. "source": {
  694. "type": "git",
  695. "url": "https://github.com/guzzle/guzzle.git",
  696. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  697. },
  698. "dist": {
  699. "type": "zip",
  700. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  701. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  702. "shasum": "",
  703. "mirrors": [
  704. {
  705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  706. "preferred": true
  707. }
  708. ]
  709. },
  710. "require": {
  711. "ext-json": "*",
  712. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  713. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  714. "php": "^7.2.5 || ^8.0",
  715. "psr/http-client": "^1.0",
  716. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  717. },
  718. "provide": {
  719. "psr/http-client-implementation": "1.0"
  720. },
  721. "require-dev": {
  722. "bamarni/composer-bin-plugin": "^1.8.2",
  723. "ext-curl": "*",
  724. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  725. "php-http/message-factory": "^1.1",
  726. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  727. "psr/log": "^1.1 || ^2.0 || ^3.0"
  728. },
  729. "suggest": {
  730. "ext-curl": "Required for CURL handler support",
  731. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  732. "psr/log": "Required for using the Log middleware"
  733. },
  734. "time": "2023-12-03T20:35:24+00:00",
  735. "type": "library",
  736. "extra": {
  737. "bamarni-bin": {
  738. "bin-links": true,
  739. "forward-command": false
  740. }
  741. },
  742. "installation-source": "dist",
  743. "autoload": {
  744. "files": [
  745. "src/functions_include.php"
  746. ],
  747. "psr-4": {
  748. "GuzzleHttp\\": "src/"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Graham Campbell",
  758. "email": "hello@gjcampbell.co.uk",
  759. "homepage": "https://github.com/GrahamCampbell"
  760. },
  761. {
  762. "name": "Michael Dowling",
  763. "email": "mtdowling@gmail.com",
  764. "homepage": "https://github.com/mtdowling"
  765. },
  766. {
  767. "name": "Jeremy Lindblom",
  768. "email": "jeremeamia@gmail.com",
  769. "homepage": "https://github.com/jeremeamia"
  770. },
  771. {
  772. "name": "George Mponos",
  773. "email": "gmponos@gmail.com",
  774. "homepage": "https://github.com/gmponos"
  775. },
  776. {
  777. "name": "Tobias Nyholm",
  778. "email": "tobias.nyholm@gmail.com",
  779. "homepage": "https://github.com/Nyholm"
  780. },
  781. {
  782. "name": "Márk Sági-Kazár",
  783. "email": "mark.sagikazar@gmail.com",
  784. "homepage": "https://github.com/sagikazarmark"
  785. },
  786. {
  787. "name": "Tobias Schultze",
  788. "email": "webmaster@tubo-world.de",
  789. "homepage": "https://github.com/Tobion"
  790. }
  791. ],
  792. "description": "Guzzle is a PHP HTTP client library",
  793. "keywords": [
  794. "client",
  795. "curl",
  796. "framework",
  797. "http",
  798. "http client",
  799. "psr-18",
  800. "psr-7",
  801. "rest",
  802. "web service"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/guzzle/guzzle/issues",
  806. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://github.com/GrahamCampbell",
  811. "type": "github"
  812. },
  813. {
  814. "url": "https://github.com/Nyholm",
  815. "type": "github"
  816. },
  817. {
  818. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  819. "type": "tidelift"
  820. }
  821. ],
  822. "install-path": "../guzzlehttp/guzzle"
  823. },
  824. {
  825. "name": "guzzlehttp/promises",
  826. "version": "2.0.2",
  827. "version_normalized": "2.0.2.0",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/guzzle/promises.git",
  831. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  836. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  837. "shasum": "",
  838. "mirrors": [
  839. {
  840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  841. "preferred": true
  842. }
  843. ]
  844. },
  845. "require": {
  846. "php": "^7.2.5 || ^8.0"
  847. },
  848. "require-dev": {
  849. "bamarni/composer-bin-plugin": "^1.8.2",
  850. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  851. },
  852. "time": "2023-12-03T20:19:20+00:00",
  853. "type": "library",
  854. "extra": {
  855. "bamarni-bin": {
  856. "bin-links": true,
  857. "forward-command": false
  858. }
  859. },
  860. "installation-source": "dist",
  861. "autoload": {
  862. "psr-4": {
  863. "GuzzleHttp\\Promise\\": "src/"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Graham Campbell",
  873. "email": "hello@gjcampbell.co.uk",
  874. "homepage": "https://github.com/GrahamCampbell"
  875. },
  876. {
  877. "name": "Michael Dowling",
  878. "email": "mtdowling@gmail.com",
  879. "homepage": "https://github.com/mtdowling"
  880. },
  881. {
  882. "name": "Tobias Nyholm",
  883. "email": "tobias.nyholm@gmail.com",
  884. "homepage": "https://github.com/Nyholm"
  885. },
  886. {
  887. "name": "Tobias Schultze",
  888. "email": "webmaster@tubo-world.de",
  889. "homepage": "https://github.com/Tobion"
  890. }
  891. ],
  892. "description": "Guzzle promises library",
  893. "keywords": [
  894. "promise"
  895. ],
  896. "support": {
  897. "issues": "https://github.com/guzzle/promises/issues",
  898. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  899. },
  900. "funding": [
  901. {
  902. "url": "https://github.com/GrahamCampbell",
  903. "type": "github"
  904. },
  905. {
  906. "url": "https://github.com/Nyholm",
  907. "type": "github"
  908. },
  909. {
  910. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  911. "type": "tidelift"
  912. }
  913. ],
  914. "install-path": "../guzzlehttp/promises"
  915. },
  916. {
  917. "name": "guzzlehttp/psr7",
  918. "version": "2.6.2",
  919. "version_normalized": "2.6.2.0",
  920. "source": {
  921. "type": "git",
  922. "url": "https://github.com/guzzle/psr7.git",
  923. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  924. },
  925. "dist": {
  926. "type": "zip",
  927. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  928. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  929. "shasum": "",
  930. "mirrors": [
  931. {
  932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  933. "preferred": true
  934. }
  935. ]
  936. },
  937. "require": {
  938. "php": "^7.2.5 || ^8.0",
  939. "psr/http-factory": "^1.0",
  940. "psr/http-message": "^1.1 || ^2.0",
  941. "ralouphie/getallheaders": "^3.0"
  942. },
  943. "provide": {
  944. "psr/http-factory-implementation": "1.0",
  945. "psr/http-message-implementation": "1.0"
  946. },
  947. "require-dev": {
  948. "bamarni/composer-bin-plugin": "^1.8.2",
  949. "http-interop/http-factory-tests": "^0.9",
  950. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  951. },
  952. "suggest": {
  953. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  954. },
  955. "time": "2023-12-03T20:05:35+00:00",
  956. "type": "library",
  957. "extra": {
  958. "bamarni-bin": {
  959. "bin-links": true,
  960. "forward-command": false
  961. }
  962. },
  963. "installation-source": "dist",
  964. "autoload": {
  965. "psr-4": {
  966. "GuzzleHttp\\Psr7\\": "src/"
  967. }
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "MIT"
  972. ],
  973. "authors": [
  974. {
  975. "name": "Graham Campbell",
  976. "email": "hello@gjcampbell.co.uk",
  977. "homepage": "https://github.com/GrahamCampbell"
  978. },
  979. {
  980. "name": "Michael Dowling",
  981. "email": "mtdowling@gmail.com",
  982. "homepage": "https://github.com/mtdowling"
  983. },
  984. {
  985. "name": "George Mponos",
  986. "email": "gmponos@gmail.com",
  987. "homepage": "https://github.com/gmponos"
  988. },
  989. {
  990. "name": "Tobias Nyholm",
  991. "email": "tobias.nyholm@gmail.com",
  992. "homepage": "https://github.com/Nyholm"
  993. },
  994. {
  995. "name": "Márk Sági-Kazár",
  996. "email": "mark.sagikazar@gmail.com",
  997. "homepage": "https://github.com/sagikazarmark"
  998. },
  999. {
  1000. "name": "Tobias Schultze",
  1001. "email": "webmaster@tubo-world.de",
  1002. "homepage": "https://github.com/Tobion"
  1003. },
  1004. {
  1005. "name": "Márk Sági-Kazár",
  1006. "email": "mark.sagikazar@gmail.com",
  1007. "homepage": "https://sagikazarmark.hu"
  1008. }
  1009. ],
  1010. "description": "PSR-7 message implementation that also provides common utility methods",
  1011. "keywords": [
  1012. "http",
  1013. "message",
  1014. "psr-7",
  1015. "request",
  1016. "response",
  1017. "stream",
  1018. "uri",
  1019. "url"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/guzzle/psr7/issues",
  1023. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://github.com/GrahamCampbell",
  1028. "type": "github"
  1029. },
  1030. {
  1031. "url": "https://github.com/Nyholm",
  1032. "type": "github"
  1033. },
  1034. {
  1035. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1036. "type": "tidelift"
  1037. }
  1038. ],
  1039. "install-path": "../guzzlehttp/psr7"
  1040. },
  1041. {
  1042. "name": "lizhichao/one-sm",
  1043. "version": "1.10",
  1044. "version_normalized": "1.10.0.0",
  1045. "source": {
  1046. "type": "git",
  1047. "url": "https://github.com/lizhichao/sm.git",
  1048. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  1049. },
  1050. "dist": {
  1051. "type": "zip",
  1052. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  1053. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  1054. "shasum": "",
  1055. "mirrors": [
  1056. {
  1057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1058. "preferred": true
  1059. }
  1060. ]
  1061. },
  1062. "require": {
  1063. "php": ">=5.6"
  1064. },
  1065. "time": "2021-05-26T06:19:22+00:00",
  1066. "type": "library",
  1067. "installation-source": "dist",
  1068. "autoload": {
  1069. "psr-4": {
  1070. "OneSm\\": "src/"
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "Apache-2.0"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "tanszhe",
  1080. "email": "1018595261@qq.com"
  1081. }
  1082. ],
  1083. "description": "国密sm3",
  1084. "keywords": [
  1085. "php",
  1086. "sm3"
  1087. ],
  1088. "support": {
  1089. "issues": "https://github.com/lizhichao/sm/issues",
  1090. "source": "https://github.com/lizhichao/sm/tree/1.10"
  1091. },
  1092. "funding": [
  1093. {
  1094. "url": "https://www.vicsdf.com/img/w.jpg",
  1095. "type": "custom"
  1096. },
  1097. {
  1098. "url": "https://www.vicsdf.com/img/z.jpg",
  1099. "type": "custom"
  1100. }
  1101. ],
  1102. "install-path": "../lizhichao/one-sm"
  1103. },
  1104. {
  1105. "name": "monolog/monolog",
  1106. "version": "2.9.2",
  1107. "version_normalized": "2.9.2.0",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/Seldaek/monolog.git",
  1111. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  1116. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  1117. "shasum": "",
  1118. "mirrors": [
  1119. {
  1120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1121. "preferred": true
  1122. }
  1123. ]
  1124. },
  1125. "require": {
  1126. "php": ">=7.2",
  1127. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1128. },
  1129. "provide": {
  1130. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1131. },
  1132. "require-dev": {
  1133. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1134. "doctrine/couchdb": "~1.0@dev",
  1135. "elasticsearch/elasticsearch": "^7 || ^8",
  1136. "ext-json": "*",
  1137. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1138. "guzzlehttp/guzzle": "^7.4",
  1139. "guzzlehttp/psr7": "^2.2",
  1140. "mongodb/mongodb": "^1.8",
  1141. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1142. "phpspec/prophecy": "^1.15",
  1143. "phpstan/phpstan": "^0.12.91",
  1144. "phpunit/phpunit": "^8.5.14",
  1145. "predis/predis": "^1.1 || ^2.0",
  1146. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1147. "ruflin/elastica": "^7",
  1148. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1149. "symfony/mailer": "^5.4 || ^6",
  1150. "symfony/mime": "^5.4 || ^6"
  1151. },
  1152. "suggest": {
  1153. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1154. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1155. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1156. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1157. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1158. "ext-mbstring": "Allow to work properly with unicode symbols",
  1159. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1160. "ext-openssl": "Required to send log messages using SSL",
  1161. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1162. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1163. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1164. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1165. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1166. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1167. },
  1168. "time": "2023-10-27T15:25:26+00:00",
  1169. "type": "library",
  1170. "extra": {
  1171. "branch-alias": {
  1172. "dev-main": "2.x-dev"
  1173. }
  1174. },
  1175. "installation-source": "dist",
  1176. "autoload": {
  1177. "psr-4": {
  1178. "Monolog\\": "src/Monolog"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Jordi Boggiano",
  1188. "email": "j.boggiano@seld.be",
  1189. "homepage": "https://seld.be"
  1190. }
  1191. ],
  1192. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1193. "homepage": "https://github.com/Seldaek/monolog",
  1194. "keywords": [
  1195. "log",
  1196. "logging",
  1197. "psr-3"
  1198. ],
  1199. "support": {
  1200. "issues": "https://github.com/Seldaek/monolog/issues",
  1201. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  1202. },
  1203. "funding": [
  1204. {
  1205. "url": "https://github.com/Seldaek",
  1206. "type": "github"
  1207. },
  1208. {
  1209. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1210. "type": "tidelift"
  1211. }
  1212. ],
  1213. "install-path": "../monolog/monolog"
  1214. },
  1215. {
  1216. "name": "pclzip/pclzip",
  1217. "version": "2.8.2",
  1218. "version_normalized": "2.8.2.0",
  1219. "source": {
  1220. "type": "git",
  1221. "url": "https://github.com/ivanlanin/pclzip.git",
  1222. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd"
  1223. },
  1224. "dist": {
  1225. "type": "zip",
  1226. "url": "https://api.github.com/repos/ivanlanin/pclzip/zipball/19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1227. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1228. "shasum": ""
  1229. },
  1230. "time": "2014-06-05T11:42:24+00:00",
  1231. "type": "library",
  1232. "installation-source": "dist",
  1233. "autoload": {
  1234. "classmap": [
  1235. "pclzip.lib.php"
  1236. ]
  1237. },
  1238. "notification-url": "https://packagist.org/downloads/",
  1239. "license": [
  1240. "LGPL-2.1"
  1241. ],
  1242. "authors": [
  1243. {
  1244. "name": "Vincent Blavet"
  1245. }
  1246. ],
  1247. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  1248. "homepage": "http://www.phpconcept.net/pclzip",
  1249. "keywords": [
  1250. "php",
  1251. "zip"
  1252. ],
  1253. "support": {
  1254. "issues": "https://github.com/ivanlanin/pclzip/issues",
  1255. "source": "https://github.com/ivanlanin/pclzip/tree/master"
  1256. },
  1257. "install-path": "../pclzip/pclzip"
  1258. },
  1259. {
  1260. "name": "phpoffice/common",
  1261. "version": "0.2.9",
  1262. "version_normalized": "0.2.9.0",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/PHPOffice/Common.git",
  1266. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/PHPOffice/Common/zipball/edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1271. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "pclzip/pclzip": "^2.8",
  1276. "php": ">=5.3.0"
  1277. },
  1278. "require-dev": {
  1279. "phpdocumentor/phpdocumentor": "2.*",
  1280. "phploc/phploc": "2.*",
  1281. "phpmd/phpmd": "2.*",
  1282. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1283. "sebastian/phpcpd": "2.*",
  1284. "squizlabs/php_codesniffer": "2.*"
  1285. },
  1286. "time": "2018-07-13T14:12:34+00:00",
  1287. "type": "library",
  1288. "installation-source": "dist",
  1289. "autoload": {
  1290. "psr-4": {
  1291. "PhpOffice\\Common\\": "src/Common/"
  1292. }
  1293. },
  1294. "notification-url": "https://packagist.org/downloads/",
  1295. "license": [
  1296. "LGPL"
  1297. ],
  1298. "authors": [
  1299. {
  1300. "name": "Mark Baker"
  1301. },
  1302. {
  1303. "name": "Franck Lefevre",
  1304. "homepage": "http://rootslabs.net"
  1305. }
  1306. ],
  1307. "description": "PHPOffice Common",
  1308. "homepage": "http://phpoffice.github.io",
  1309. "keywords": [
  1310. "common",
  1311. "component",
  1312. "office",
  1313. "php"
  1314. ],
  1315. "support": {
  1316. "issues": "https://github.com/PHPOffice/Common/issues",
  1317. "source": "https://github.com/PHPOffice/Common/tree/master"
  1318. },
  1319. "install-path": "../phpoffice/common"
  1320. },
  1321. {
  1322. "name": "phpoffice/phpword",
  1323. "version": "0.17.0",
  1324. "version_normalized": "0.17.0.0",
  1325. "source": {
  1326. "type": "git",
  1327. "url": "https://github.com/PHPOffice/PHPWord.git",
  1328. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5"
  1329. },
  1330. "dist": {
  1331. "type": "zip",
  1332. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1333. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1334. "shasum": ""
  1335. },
  1336. "require": {
  1337. "ext-xml": "*",
  1338. "php": "^5.3.3 || ^7.0",
  1339. "phpoffice/common": "^0.2.9",
  1340. "zendframework/zend-escaper": "^2.2"
  1341. },
  1342. "require-dev": {
  1343. "dompdf/dompdf": "0.8.*",
  1344. "ext-gd": "*",
  1345. "ext-zip": "*",
  1346. "friendsofphp/php-cs-fixer": "^2.2",
  1347. "mpdf/mpdf": "5.7.4 || 6.* || 7.*",
  1348. "php-coveralls/php-coveralls": "1.1.0 || ^2.0",
  1349. "phploc/phploc": "2.* || 3.* || 4.*",
  1350. "phpmd/phpmd": "2.*",
  1351. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1352. "squizlabs/php_codesniffer": "^2.9",
  1353. "tecnickcom/tcpdf": "6.*"
  1354. },
  1355. "suggest": {
  1356. "dompdf/dompdf": "Allows writing PDF",
  1357. "ext-gd2": "Allows adding images",
  1358. "ext-xmlwriter": "Allows writing OOXML and ODF",
  1359. "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
  1360. "ext-zip": "Allows writing OOXML and ODF"
  1361. },
  1362. "time": "2019-10-01T20:43:33+00:00",
  1363. "type": "library",
  1364. "extra": {
  1365. "branch-alias": {
  1366. "dev-develop": "0.18-dev"
  1367. }
  1368. },
  1369. "installation-source": "dist",
  1370. "autoload": {
  1371. "psr-4": {
  1372. "PhpOffice\\PhpWord\\": "src/PhpWord"
  1373. }
  1374. },
  1375. "notification-url": "https://packagist.org/downloads/",
  1376. "license": [
  1377. "LGPL-3.0"
  1378. ],
  1379. "authors": [
  1380. {
  1381. "name": "Mark Baker"
  1382. },
  1383. {
  1384. "name": "Gabriel Bull",
  1385. "email": "me@gabrielbull.com",
  1386. "homepage": "http://gabrielbull.com/"
  1387. },
  1388. {
  1389. "name": "Franck Lefevre",
  1390. "homepage": "https://rootslabs.net/blog/"
  1391. },
  1392. {
  1393. "name": "Ivan Lanin",
  1394. "homepage": "http://ivan.lanin.org"
  1395. },
  1396. {
  1397. "name": "Roman Syroeshko",
  1398. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  1399. },
  1400. {
  1401. "name": "Antoine de Troostembergh"
  1402. }
  1403. ],
  1404. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
  1405. "homepage": "http://phpoffice.github.io",
  1406. "keywords": [
  1407. "ISO IEC 29500",
  1408. "OOXML",
  1409. "Office Open XML",
  1410. "OpenDocument",
  1411. "OpenXML",
  1412. "PhpOffice",
  1413. "PhpWord",
  1414. "Rich Text Format",
  1415. "WordprocessingML",
  1416. "doc",
  1417. "docx",
  1418. "html",
  1419. "odf",
  1420. "odt",
  1421. "office",
  1422. "pdf",
  1423. "php",
  1424. "reader",
  1425. "rtf",
  1426. "template",
  1427. "template processor",
  1428. "word",
  1429. "writer"
  1430. ],
  1431. "support": {
  1432. "issues": "https://github.com/PHPOffice/PHPWord/issues",
  1433. "source": "https://github.com/PHPOffice/PHPWord/tree/develop"
  1434. },
  1435. "install-path": "../phpoffice/phpword"
  1436. },
  1437. {
  1438. "name": "psr/http-client",
  1439. "version": "1.0.3",
  1440. "version_normalized": "1.0.3.0",
  1441. "source": {
  1442. "type": "git",
  1443. "url": "https://github.com/php-fig/http-client.git",
  1444. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1445. },
  1446. "dist": {
  1447. "type": "zip",
  1448. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1449. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1450. "shasum": "",
  1451. "mirrors": [
  1452. {
  1453. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1454. "preferred": true
  1455. }
  1456. ]
  1457. },
  1458. "require": {
  1459. "php": "^7.0 || ^8.0",
  1460. "psr/http-message": "^1.0 || ^2.0"
  1461. },
  1462. "time": "2023-09-23T14:17:50+00:00",
  1463. "type": "library",
  1464. "extra": {
  1465. "branch-alias": {
  1466. "dev-master": "1.0.x-dev"
  1467. }
  1468. },
  1469. "installation-source": "dist",
  1470. "autoload": {
  1471. "psr-4": {
  1472. "Psr\\Http\\Client\\": "src/"
  1473. }
  1474. },
  1475. "notification-url": "https://packagist.org/downloads/",
  1476. "license": [
  1477. "MIT"
  1478. ],
  1479. "authors": [
  1480. {
  1481. "name": "PHP-FIG",
  1482. "homepage": "https://www.php-fig.org/"
  1483. }
  1484. ],
  1485. "description": "Common interface for HTTP clients",
  1486. "homepage": "https://github.com/php-fig/http-client",
  1487. "keywords": [
  1488. "http",
  1489. "http-client",
  1490. "psr",
  1491. "psr-18"
  1492. ],
  1493. "support": {
  1494. "source": "https://github.com/php-fig/http-client"
  1495. },
  1496. "install-path": "../psr/http-client"
  1497. },
  1498. {
  1499. "name": "psr/http-factory",
  1500. "version": "1.0.2",
  1501. "version_normalized": "1.0.2.0",
  1502. "source": {
  1503. "type": "git",
  1504. "url": "https://github.com/php-fig/http-factory.git",
  1505. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  1506. },
  1507. "dist": {
  1508. "type": "zip",
  1509. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  1510. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  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": ">=7.0.0",
  1521. "psr/http-message": "^1.0 || ^2.0"
  1522. },
  1523. "time": "2023-04-10T20:10:41+00:00",
  1524. "type": "library",
  1525. "extra": {
  1526. "branch-alias": {
  1527. "dev-master": "1.0.x-dev"
  1528. }
  1529. },
  1530. "installation-source": "dist",
  1531. "autoload": {
  1532. "psr-4": {
  1533. "Psr\\Http\\Message\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "PHP-FIG",
  1543. "homepage": "https://www.php-fig.org/"
  1544. }
  1545. ],
  1546. "description": "Common interfaces for PSR-7 HTTP message factories",
  1547. "keywords": [
  1548. "factory",
  1549. "http",
  1550. "message",
  1551. "psr",
  1552. "psr-17",
  1553. "psr-7",
  1554. "request",
  1555. "response"
  1556. ],
  1557. "support": {
  1558. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  1559. },
  1560. "install-path": "../psr/http-factory"
  1561. },
  1562. {
  1563. "name": "psr/http-message",
  1564. "version": "2.0",
  1565. "version_normalized": "2.0.0.0",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/php-fig/http-message.git",
  1569. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1574. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  1575. "shasum": "",
  1576. "mirrors": [
  1577. {
  1578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1579. "preferred": true
  1580. }
  1581. ]
  1582. },
  1583. "require": {
  1584. "php": "^7.2 || ^8.0"
  1585. },
  1586. "time": "2023-04-04T09:54:51+00:00",
  1587. "type": "library",
  1588. "extra": {
  1589. "branch-alias": {
  1590. "dev-master": "2.0.x-dev"
  1591. }
  1592. },
  1593. "installation-source": "dist",
  1594. "autoload": {
  1595. "psr-4": {
  1596. "Psr\\Http\\Message\\": "src/"
  1597. }
  1598. },
  1599. "notification-url": "https://packagist.org/downloads/",
  1600. "license": [
  1601. "MIT"
  1602. ],
  1603. "authors": [
  1604. {
  1605. "name": "PHP-FIG",
  1606. "homepage": "https://www.php-fig.org/"
  1607. }
  1608. ],
  1609. "description": "Common interface for HTTP messages",
  1610. "homepage": "https://github.com/php-fig/http-message",
  1611. "keywords": [
  1612. "http",
  1613. "http-message",
  1614. "psr",
  1615. "psr-7",
  1616. "request",
  1617. "response"
  1618. ],
  1619. "support": {
  1620. "source": "https://github.com/php-fig/http-message/tree/2.0"
  1621. },
  1622. "install-path": "../psr/http-message"
  1623. },
  1624. {
  1625. "name": "psr/log",
  1626. "version": "1.1.4",
  1627. "version_normalized": "1.1.4.0",
  1628. "source": {
  1629. "type": "git",
  1630. "url": "https://github.com/php-fig/log.git",
  1631. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1632. },
  1633. "dist": {
  1634. "type": "zip",
  1635. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1636. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1637. "shasum": "",
  1638. "mirrors": [
  1639. {
  1640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1641. "preferred": true
  1642. }
  1643. ]
  1644. },
  1645. "require": {
  1646. "php": ">=5.3.0"
  1647. },
  1648. "time": "2021-05-03T11:20:27+00:00",
  1649. "type": "library",
  1650. "extra": {
  1651. "branch-alias": {
  1652. "dev-master": "1.1.x-dev"
  1653. }
  1654. },
  1655. "installation-source": "dist",
  1656. "autoload": {
  1657. "psr-4": {
  1658. "Psr\\Log\\": "Psr/Log/"
  1659. }
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "PHP-FIG",
  1668. "homepage": "https://www.php-fig.org/"
  1669. }
  1670. ],
  1671. "description": "Common interface for logging libraries",
  1672. "homepage": "https://github.com/php-fig/log",
  1673. "keywords": [
  1674. "log",
  1675. "psr",
  1676. "psr-3"
  1677. ],
  1678. "support": {
  1679. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1680. },
  1681. "install-path": "../psr/log"
  1682. },
  1683. {
  1684. "name": "ralouphie/getallheaders",
  1685. "version": "3.0.3",
  1686. "version_normalized": "3.0.3.0",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/ralouphie/getallheaders.git",
  1690. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1695. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1696. "shasum": "",
  1697. "mirrors": [
  1698. {
  1699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1700. "preferred": true
  1701. }
  1702. ]
  1703. },
  1704. "require": {
  1705. "php": ">=5.6"
  1706. },
  1707. "require-dev": {
  1708. "php-coveralls/php-coveralls": "^2.1",
  1709. "phpunit/phpunit": "^5 || ^6.5"
  1710. },
  1711. "time": "2019-03-08T08:55:37+00:00",
  1712. "type": "library",
  1713. "installation-source": "dist",
  1714. "autoload": {
  1715. "files": [
  1716. "src/getallheaders.php"
  1717. ]
  1718. },
  1719. "notification-url": "https://packagist.org/downloads/",
  1720. "license": [
  1721. "MIT"
  1722. ],
  1723. "authors": [
  1724. {
  1725. "name": "Ralph Khattar",
  1726. "email": "ralph.khattar@gmail.com"
  1727. }
  1728. ],
  1729. "description": "A polyfill for getallheaders.",
  1730. "support": {
  1731. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1732. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1733. },
  1734. "install-path": "../ralouphie/getallheaders"
  1735. },
  1736. {
  1737. "name": "symfony/deprecation-contracts",
  1738. "version": "v2.5.2",
  1739. "version_normalized": "2.5.2.0",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/symfony/deprecation-contracts.git",
  1743. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1748. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1749. "shasum": "",
  1750. "mirrors": [
  1751. {
  1752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1753. "preferred": true
  1754. }
  1755. ]
  1756. },
  1757. "require": {
  1758. "php": ">=7.1"
  1759. },
  1760. "time": "2022-01-02T09:53:40+00:00",
  1761. "type": "library",
  1762. "extra": {
  1763. "branch-alias": {
  1764. "dev-main": "2.5-dev"
  1765. },
  1766. "thanks": {
  1767. "name": "symfony/contracts",
  1768. "url": "https://github.com/symfony/contracts"
  1769. }
  1770. },
  1771. "installation-source": "dist",
  1772. "autoload": {
  1773. "files": [
  1774. "function.php"
  1775. ]
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Nicolas Grekas",
  1784. "email": "p@tchwork.com"
  1785. },
  1786. {
  1787. "name": "Symfony Community",
  1788. "homepage": "https://symfony.com/contributors"
  1789. }
  1790. ],
  1791. "description": "A generic function and convention to trigger deprecation notices",
  1792. "homepage": "https://symfony.com",
  1793. "support": {
  1794. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  1795. },
  1796. "funding": [
  1797. {
  1798. "url": "https://symfony.com/sponsor",
  1799. "type": "custom"
  1800. },
  1801. {
  1802. "url": "https://github.com/fabpot",
  1803. "type": "github"
  1804. },
  1805. {
  1806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1807. "type": "tidelift"
  1808. }
  1809. ],
  1810. "install-path": "../symfony/deprecation-contracts"
  1811. },
  1812. {
  1813. "name": "zendframework/zend-escaper",
  1814. "version": "2.6.1",
  1815. "version_normalized": "2.6.1.0",
  1816. "source": {
  1817. "type": "git",
  1818. "url": "https://github.com/zendframework/zend-escaper.git",
  1819. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  1820. },
  1821. "dist": {
  1822. "type": "zip",
  1823. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  1824. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  1825. "shasum": ""
  1826. },
  1827. "require": {
  1828. "php": "^5.6 || ^7.0"
  1829. },
  1830. "require-dev": {
  1831. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  1832. "zendframework/zend-coding-standard": "~1.0.0"
  1833. },
  1834. "time": "2019-09-05T20:03:20+00:00",
  1835. "type": "library",
  1836. "extra": {
  1837. "branch-alias": {
  1838. "dev-master": "2.6.x-dev",
  1839. "dev-develop": "2.7.x-dev"
  1840. }
  1841. },
  1842. "installation-source": "dist",
  1843. "autoload": {
  1844. "psr-4": {
  1845. "Zend\\Escaper\\": "src/"
  1846. }
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "BSD-3-Clause"
  1851. ],
  1852. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  1853. "keywords": [
  1854. "ZendFramework",
  1855. "escaper",
  1856. "zf"
  1857. ],
  1858. "support": {
  1859. "chat": "https://zendframework-slack.herokuapp.com",
  1860. "docs": "https://docs.zendframework.com/zend-escaper/",
  1861. "forum": "https://discourse.zendframework.com/c/questions/components",
  1862. "issues": "https://github.com/zendframework/zend-escaper/issues",
  1863. "rss": "https://github.com/zendframework/zend-escaper/releases.atom",
  1864. "source": "https://github.com/zendframework/zend-escaper"
  1865. },
  1866. "abandoned": "laminas/laminas-escaper",
  1867. "install-path": "../zendframework/zend-escaper"
  1868. }
  1869. ],
  1870. "dev": true,
  1871. "dev-package-names": []
  1872. }