composer.lock 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "3de165c1b4131138fa9ebc6228204f83",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/credentials",
  70. "version": "1.2.0",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/ebcda2e628180b4df235b46a86e1d014c561f5d9",
  79. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2024-10-16T13:29:17+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba-openapi",
  156. "version": "0.2.13",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  160. "reference": "0213396384e2c064eefd614f3dd53636a63f987f"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/0213396384e2c064eefd614f3dd53636a63f987f",
  165. "reference": "0213396384e2c064eefd614f3dd53636a63f987f",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "alibabacloud/credentials": "^1.1",
  176. "alibabacloud/gateway-spi": "^1",
  177. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  178. "alibabacloud/tea-utils": "^0.2.21",
  179. "alibabacloud/tea-xml": "^0.2",
  180. "php": ">5.5"
  181. },
  182. "type": "library",
  183. "autoload": {
  184. "psr-4": {
  185. "Darabonba\\OpenApi\\": "src"
  186. }
  187. },
  188. "notification-url": "https://packagist.org/downloads/",
  189. "license": [
  190. "Apache-2.0"
  191. ],
  192. "authors": [
  193. {
  194. "name": "Alibaba Cloud SDK",
  195. "email": "sdk-team@alibabacloud.com"
  196. }
  197. ],
  198. "description": "Alibaba Cloud OpenApi Client",
  199. "support": {
  200. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  201. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.13"
  202. },
  203. "time": "2024-07-15T13:11:36+00:00"
  204. },
  205. {
  206. "name": "alibabacloud/dysmsapi-20170525",
  207. "version": "2.0.24",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  211. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/75d8a8c7259f53e58ba3330e004150841be6010d",
  216. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "alibabacloud/darabonba-openapi": "^0.2.8",
  227. "alibabacloud/endpoint-util": "^0.1.0",
  228. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  229. "alibabacloud/tea-utils": "^0.2.19",
  230. "php": ">5.5"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "Apache-2.0"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Alibaba Cloud SDK",
  245. "email": "sdk-team@alibabacloud.com"
  246. }
  247. ],
  248. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  249. "support": {
  250. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.24"
  251. },
  252. "time": "2023-07-04T11:32:11+00:00"
  253. },
  254. {
  255. "name": "alibabacloud/endpoint-util",
  256. "version": "0.1.1",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  260. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  265. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  266. "shasum": "",
  267. "mirrors": [
  268. {
  269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  270. "preferred": true
  271. }
  272. ]
  273. },
  274. "require": {
  275. "php": ">5.5"
  276. },
  277. "require-dev": {
  278. "phpunit/phpunit": "^4.8.35|^5.4.3"
  279. },
  280. "type": "library",
  281. "autoload": {
  282. "psr-4": {
  283. "AlibabaCloud\\Endpoint\\": "src"
  284. }
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "Apache-2.0"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Alibaba Cloud SDK",
  293. "email": "sdk-team@alibabacloud.com"
  294. }
  295. ],
  296. "description": "Alibaba Cloud Endpoint Library for PHP",
  297. "support": {
  298. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  299. },
  300. "time": "2020-06-04T10:57:15+00:00"
  301. },
  302. {
  303. "name": "alibabacloud/gateway-spi",
  304. "version": "1.0.0",
  305. "source": {
  306. "type": "git",
  307. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  308. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  313. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  314. "shasum": "",
  315. "mirrors": [
  316. {
  317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  318. "preferred": true
  319. }
  320. ]
  321. },
  322. "require": {
  323. "alibabacloud/credentials": "^1.1",
  324. "php": ">5.5"
  325. },
  326. "type": "library",
  327. "autoload": {
  328. "psr-4": {
  329. "Darabonba\\GatewaySpi\\": "src"
  330. }
  331. },
  332. "notification-url": "https://packagist.org/downloads/",
  333. "license": [
  334. "Apache-2.0"
  335. ],
  336. "authors": [
  337. {
  338. "name": "Alibaba Cloud SDK",
  339. "email": "sdk-team@alibabacloud.com"
  340. }
  341. ],
  342. "description": "Alibaba Cloud Gateway SPI Client",
  343. "support": {
  344. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  345. },
  346. "time": "2022-07-14T05:31:35+00:00"
  347. },
  348. {
  349. "name": "alibabacloud/openapi-util",
  350. "version": "0.2.1",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  354. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  359. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  360. "shasum": "",
  361. "mirrors": [
  362. {
  363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  364. "preferred": true
  365. }
  366. ]
  367. },
  368. "require": {
  369. "alibabacloud/tea": "^3.1",
  370. "alibabacloud/tea-utils": "^0.2",
  371. "lizhichao/one-sm": "^1.5",
  372. "php": ">5.5"
  373. },
  374. "require-dev": {
  375. "phpunit/phpunit": "*"
  376. },
  377. "type": "library",
  378. "autoload": {
  379. "psr-4": {
  380. "AlibabaCloud\\OpenApiUtil\\": "src"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "Apache-2.0"
  386. ],
  387. "authors": [
  388. {
  389. "name": "Alibaba Cloud SDK",
  390. "email": "sdk-team@alibabacloud.com"
  391. }
  392. ],
  393. "description": "Alibaba Cloud OpenApi Util",
  394. "support": {
  395. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  396. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  397. },
  398. "time": "2023-01-10T09:10:10+00:00"
  399. },
  400. {
  401. "name": "alibabacloud/tea",
  402. "version": "3.2.1",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/aliyun/tea-php.git",
  406. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  411. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  412. "shasum": "",
  413. "mirrors": [
  414. {
  415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  416. "preferred": true
  417. }
  418. ]
  419. },
  420. "require": {
  421. "adbario/php-dot-notation": "^2.4",
  422. "ext-curl": "*",
  423. "ext-json": "*",
  424. "ext-libxml": "*",
  425. "ext-mbstring": "*",
  426. "ext-openssl": "*",
  427. "ext-simplexml": "*",
  428. "ext-xmlwriter": "*",
  429. "guzzlehttp/guzzle": "^6.3|^7.0",
  430. "php": ">=5.5"
  431. },
  432. "require-dev": {
  433. "phpunit/phpunit": "*",
  434. "symfony/dotenv": "^3.4",
  435. "symfony/var-dumper": "^3.4"
  436. },
  437. "suggest": {
  438. "ext-sockets": "To use client-side monitoring"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "AlibabaCloud\\Tea\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "Apache-2.0"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Alibaba Cloud SDK",
  453. "email": "sdk-team@alibabacloud.com",
  454. "homepage": "http://www.alibabacloud.com"
  455. }
  456. ],
  457. "description": "Client of Tea for PHP",
  458. "homepage": "https://www.alibabacloud.com/",
  459. "keywords": [
  460. "alibabacloud",
  461. "client",
  462. "cloud",
  463. "tea"
  464. ],
  465. "support": {
  466. "issues": "https://github.com/aliyun/tea-php/issues",
  467. "source": "https://github.com/aliyun/tea-php"
  468. },
  469. "time": "2023-05-16T06:43:41+00:00"
  470. },
  471. {
  472. "name": "alibabacloud/tea-console",
  473. "version": "0.1.3",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/alibabacloud-sdk-php/tea-console.git",
  477. "reference": "6b30249a17ca1a0962f2a71e01c92fe91b654f17"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-console/zipball/6b30249a17ca1a0962f2a71e01c92fe91b654f17",
  482. "reference": "6b30249a17ca1a0962f2a71e01c92fe91b654f17",
  483. "shasum": "",
  484. "mirrors": [
  485. {
  486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  487. "preferred": true
  488. }
  489. ]
  490. },
  491. "require": {
  492. "monolog/monolog": "^1.0|^2.1",
  493. "php": ">5.5"
  494. },
  495. "type": "library",
  496. "autoload": {
  497. "psr-4": {
  498. "AlibabaCloud\\Tea\\Console\\": "src"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "Apache-2.0"
  504. ],
  505. "description": "Alibaba Cloud Tea Console Output Library for PHP",
  506. "support": {
  507. "issues": "https://github.com/alibabacloud-sdk-php/tea-console/issues",
  508. "source": "https://github.com/alibabacloud-sdk-php/tea-console/tree/0.1.3"
  509. },
  510. "time": "2020-12-01T02:14:32+00:00"
  511. },
  512. {
  513. "name": "alibabacloud/tea-utils",
  514. "version": "0.2.21",
  515. "source": {
  516. "type": "git",
  517. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  518. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  519. },
  520. "dist": {
  521. "type": "zip",
  522. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  523. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  524. "shasum": "",
  525. "mirrors": [
  526. {
  527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  528. "preferred": true
  529. }
  530. ]
  531. },
  532. "require": {
  533. "alibabacloud/tea": "^3.1",
  534. "php": ">5.5"
  535. },
  536. "type": "library",
  537. "autoload": {
  538. "psr-4": {
  539. "AlibabaCloud\\Tea\\Utils\\": "src"
  540. }
  541. },
  542. "notification-url": "https://packagist.org/downloads/",
  543. "license": [
  544. "Apache-2.0"
  545. ],
  546. "authors": [
  547. {
  548. "name": "Alibaba Cloud SDK",
  549. "email": "sdk-team@alibabacloud.com"
  550. }
  551. ],
  552. "description": "Alibaba Cloud Tea Utils for PHP",
  553. "support": {
  554. "issues": "https://github.com/aliyun/tea-util/issues",
  555. "source": "https://github.com/aliyun/tea-util"
  556. },
  557. "time": "2024-07-05T06:05:54+00:00"
  558. },
  559. {
  560. "name": "alibabacloud/tea-xml",
  561. "version": "0.2.4",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  565. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  570. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  571. "shasum": "",
  572. "mirrors": [
  573. {
  574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  575. "preferred": true
  576. }
  577. ]
  578. },
  579. "require": {
  580. "php": ">5.5"
  581. },
  582. "require-dev": {
  583. "phpunit/phpunit": "*",
  584. "symfony/var-dumper": "*"
  585. },
  586. "type": "library",
  587. "autoload": {
  588. "psr-4": {
  589. "AlibabaCloud\\Tea\\XML\\": "src"
  590. }
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "Apache-2.0"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Alibaba Cloud SDK",
  599. "email": "sdk-team@alibabacloud.com"
  600. }
  601. ],
  602. "description": "Alibaba Cloud Tea XML Library for PHP",
  603. "support": {
  604. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  605. },
  606. "time": "2022-08-02T04:12:58+00:00"
  607. },
  608. {
  609. "name": "aliyuncs/oss-sdk-php",
  610. "version": "v2.7.2",
  611. "source": {
  612. "type": "git",
  613. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  614. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  615. },
  616. "dist": {
  617. "type": "zip",
  618. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  619. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  620. "shasum": "",
  621. "mirrors": [
  622. {
  623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  624. "preferred": true
  625. }
  626. ]
  627. },
  628. "require": {
  629. "php": ">=5.3"
  630. },
  631. "require-dev": {
  632. "php-coveralls/php-coveralls": "*",
  633. "phpunit/phpunit": "*"
  634. },
  635. "type": "library",
  636. "autoload": {
  637. "psr-4": {
  638. "OSS\\": "src/OSS"
  639. }
  640. },
  641. "notification-url": "https://packagist.org/downloads/",
  642. "license": [
  643. "MIT"
  644. ],
  645. "authors": [
  646. {
  647. "name": "Aliyuncs",
  648. "homepage": "http://www.aliyun.com"
  649. }
  650. ],
  651. "description": "Aliyun OSS SDK for PHP",
  652. "homepage": "http://www.aliyun.com/product/oss/",
  653. "support": {
  654. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  655. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  656. },
  657. "time": "2024-10-28T10:41:12+00:00"
  658. },
  659. {
  660. "name": "ezyang/htmlpurifier",
  661. "version": "v4.18.0",
  662. "source": {
  663. "type": "git",
  664. "url": "https://github.com/ezyang/htmlpurifier.git",
  665. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  666. },
  667. "dist": {
  668. "type": "zip",
  669. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  670. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  671. "shasum": "",
  672. "mirrors": [
  673. {
  674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  675. "preferred": true
  676. }
  677. ]
  678. },
  679. "require": {
  680. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  681. },
  682. "require-dev": {
  683. "cerdic/css-tidy": "^1.7 || ^2.0",
  684. "simpletest/simpletest": "dev-master"
  685. },
  686. "suggest": {
  687. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  688. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  689. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  690. "ext-tidy": "Used for pretty-printing HTML"
  691. },
  692. "type": "library",
  693. "autoload": {
  694. "files": [
  695. "library/HTMLPurifier.composer.php"
  696. ],
  697. "psr-0": {
  698. "HTMLPurifier": "library/"
  699. },
  700. "exclude-from-classmap": [
  701. "/library/HTMLPurifier/Language/"
  702. ]
  703. },
  704. "notification-url": "https://packagist.org/downloads/",
  705. "license": [
  706. "LGPL-2.1-or-later"
  707. ],
  708. "authors": [
  709. {
  710. "name": "Edward Z. Yang",
  711. "email": "admin@htmlpurifier.org",
  712. "homepage": "http://ezyang.com"
  713. }
  714. ],
  715. "description": "Standards compliant HTML filter written in PHP",
  716. "homepage": "http://htmlpurifier.org/",
  717. "keywords": [
  718. "html"
  719. ],
  720. "support": {
  721. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  722. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  723. },
  724. "time": "2024-11-01T03:51:45+00:00"
  725. },
  726. {
  727. "name": "guzzlehttp/guzzle",
  728. "version": "7.9.2",
  729. "source": {
  730. "type": "git",
  731. "url": "https://github.com/guzzle/guzzle.git",
  732. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  733. },
  734. "dist": {
  735. "type": "zip",
  736. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  737. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  738. "shasum": "",
  739. "mirrors": [
  740. {
  741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  742. "preferred": true
  743. }
  744. ]
  745. },
  746. "require": {
  747. "ext-json": "*",
  748. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  749. "guzzlehttp/psr7": "^2.7.0",
  750. "php": "^7.2.5 || ^8.0",
  751. "psr/http-client": "^1.0",
  752. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  753. },
  754. "provide": {
  755. "psr/http-client-implementation": "1.0"
  756. },
  757. "require-dev": {
  758. "bamarni/composer-bin-plugin": "^1.8.2",
  759. "ext-curl": "*",
  760. "guzzle/client-integration-tests": "3.0.2",
  761. "php-http/message-factory": "^1.1",
  762. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  763. "psr/log": "^1.1 || ^2.0 || ^3.0"
  764. },
  765. "suggest": {
  766. "ext-curl": "Required for CURL handler support",
  767. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  768. "psr/log": "Required for using the Log middleware"
  769. },
  770. "type": "library",
  771. "extra": {
  772. "bamarni-bin": {
  773. "bin-links": true,
  774. "forward-command": false
  775. }
  776. },
  777. "autoload": {
  778. "files": [
  779. "src/functions_include.php"
  780. ],
  781. "psr-4": {
  782. "GuzzleHttp\\": "src/"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Graham Campbell",
  792. "email": "hello@gjcampbell.co.uk",
  793. "homepage": "https://github.com/GrahamCampbell"
  794. },
  795. {
  796. "name": "Michael Dowling",
  797. "email": "mtdowling@gmail.com",
  798. "homepage": "https://github.com/mtdowling"
  799. },
  800. {
  801. "name": "Jeremy Lindblom",
  802. "email": "jeremeamia@gmail.com",
  803. "homepage": "https://github.com/jeremeamia"
  804. },
  805. {
  806. "name": "George Mponos",
  807. "email": "gmponos@gmail.com",
  808. "homepage": "https://github.com/gmponos"
  809. },
  810. {
  811. "name": "Tobias Nyholm",
  812. "email": "tobias.nyholm@gmail.com",
  813. "homepage": "https://github.com/Nyholm"
  814. },
  815. {
  816. "name": "Márk Sági-Kazár",
  817. "email": "mark.sagikazar@gmail.com",
  818. "homepage": "https://github.com/sagikazarmark"
  819. },
  820. {
  821. "name": "Tobias Schultze",
  822. "email": "webmaster@tubo-world.de",
  823. "homepage": "https://github.com/Tobion"
  824. }
  825. ],
  826. "description": "Guzzle is a PHP HTTP client library",
  827. "keywords": [
  828. "client",
  829. "curl",
  830. "framework",
  831. "http",
  832. "http client",
  833. "psr-18",
  834. "psr-7",
  835. "rest",
  836. "web service"
  837. ],
  838. "support": {
  839. "issues": "https://github.com/guzzle/guzzle/issues",
  840. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  841. },
  842. "funding": [
  843. {
  844. "url": "https://github.com/GrahamCampbell",
  845. "type": "github"
  846. },
  847. {
  848. "url": "https://github.com/Nyholm",
  849. "type": "github"
  850. },
  851. {
  852. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  853. "type": "tidelift"
  854. }
  855. ],
  856. "time": "2024-07-24T11:22:20+00:00"
  857. },
  858. {
  859. "name": "guzzlehttp/promises",
  860. "version": "2.0.3",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/guzzle/promises.git",
  864. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  869. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  870. "shasum": "",
  871. "mirrors": [
  872. {
  873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  874. "preferred": true
  875. }
  876. ]
  877. },
  878. "require": {
  879. "php": "^7.2.5 || ^8.0"
  880. },
  881. "require-dev": {
  882. "bamarni/composer-bin-plugin": "^1.8.2",
  883. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  884. },
  885. "type": "library",
  886. "extra": {
  887. "bamarni-bin": {
  888. "bin-links": true,
  889. "forward-command": false
  890. }
  891. },
  892. "autoload": {
  893. "psr-4": {
  894. "GuzzleHttp\\Promise\\": "src/"
  895. }
  896. },
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Graham Campbell",
  904. "email": "hello@gjcampbell.co.uk",
  905. "homepage": "https://github.com/GrahamCampbell"
  906. },
  907. {
  908. "name": "Michael Dowling",
  909. "email": "mtdowling@gmail.com",
  910. "homepage": "https://github.com/mtdowling"
  911. },
  912. {
  913. "name": "Tobias Nyholm",
  914. "email": "tobias.nyholm@gmail.com",
  915. "homepage": "https://github.com/Nyholm"
  916. },
  917. {
  918. "name": "Tobias Schultze",
  919. "email": "webmaster@tubo-world.de",
  920. "homepage": "https://github.com/Tobion"
  921. }
  922. ],
  923. "description": "Guzzle promises library",
  924. "keywords": [
  925. "promise"
  926. ],
  927. "support": {
  928. "issues": "https://github.com/guzzle/promises/issues",
  929. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  930. },
  931. "funding": [
  932. {
  933. "url": "https://github.com/GrahamCampbell",
  934. "type": "github"
  935. },
  936. {
  937. "url": "https://github.com/Nyholm",
  938. "type": "github"
  939. },
  940. {
  941. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  942. "type": "tidelift"
  943. }
  944. ],
  945. "time": "2024-07-18T10:29:17+00:00"
  946. },
  947. {
  948. "name": "guzzlehttp/psr7",
  949. "version": "2.7.0",
  950. "source": {
  951. "type": "git",
  952. "url": "https://github.com/guzzle/psr7.git",
  953. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  954. },
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  958. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  959. "shasum": "",
  960. "mirrors": [
  961. {
  962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  963. "preferred": true
  964. }
  965. ]
  966. },
  967. "require": {
  968. "php": "^7.2.5 || ^8.0",
  969. "psr/http-factory": "^1.0",
  970. "psr/http-message": "^1.1 || ^2.0",
  971. "ralouphie/getallheaders": "^3.0"
  972. },
  973. "provide": {
  974. "psr/http-factory-implementation": "1.0",
  975. "psr/http-message-implementation": "1.0"
  976. },
  977. "require-dev": {
  978. "bamarni/composer-bin-plugin": "^1.8.2",
  979. "http-interop/http-factory-tests": "0.9.0",
  980. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  981. },
  982. "suggest": {
  983. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  984. },
  985. "type": "library",
  986. "extra": {
  987. "bamarni-bin": {
  988. "bin-links": true,
  989. "forward-command": false
  990. }
  991. },
  992. "autoload": {
  993. "psr-4": {
  994. "GuzzleHttp\\Psr7\\": "src/"
  995. }
  996. },
  997. "notification-url": "https://packagist.org/downloads/",
  998. "license": [
  999. "MIT"
  1000. ],
  1001. "authors": [
  1002. {
  1003. "name": "Graham Campbell",
  1004. "email": "hello@gjcampbell.co.uk",
  1005. "homepage": "https://github.com/GrahamCampbell"
  1006. },
  1007. {
  1008. "name": "Michael Dowling",
  1009. "email": "mtdowling@gmail.com",
  1010. "homepage": "https://github.com/mtdowling"
  1011. },
  1012. {
  1013. "name": "George Mponos",
  1014. "email": "gmponos@gmail.com",
  1015. "homepage": "https://github.com/gmponos"
  1016. },
  1017. {
  1018. "name": "Tobias Nyholm",
  1019. "email": "tobias.nyholm@gmail.com",
  1020. "homepage": "https://github.com/Nyholm"
  1021. },
  1022. {
  1023. "name": "Márk Sági-Kazár",
  1024. "email": "mark.sagikazar@gmail.com",
  1025. "homepage": "https://github.com/sagikazarmark"
  1026. },
  1027. {
  1028. "name": "Tobias Schultze",
  1029. "email": "webmaster@tubo-world.de",
  1030. "homepage": "https://github.com/Tobion"
  1031. },
  1032. {
  1033. "name": "Márk Sági-Kazár",
  1034. "email": "mark.sagikazar@gmail.com",
  1035. "homepage": "https://sagikazarmark.hu"
  1036. }
  1037. ],
  1038. "description": "PSR-7 message implementation that also provides common utility methods",
  1039. "keywords": [
  1040. "http",
  1041. "message",
  1042. "psr-7",
  1043. "request",
  1044. "response",
  1045. "stream",
  1046. "uri",
  1047. "url"
  1048. ],
  1049. "support": {
  1050. "issues": "https://github.com/guzzle/psr7/issues",
  1051. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1052. },
  1053. "funding": [
  1054. {
  1055. "url": "https://github.com/GrahamCampbell",
  1056. "type": "github"
  1057. },
  1058. {
  1059. "url": "https://github.com/Nyholm",
  1060. "type": "github"
  1061. },
  1062. {
  1063. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1064. "type": "tidelift"
  1065. }
  1066. ],
  1067. "time": "2024-07-18T11:15:46+00:00"
  1068. },
  1069. {
  1070. "name": "lizhichao/one-sm",
  1071. "version": "1.10",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/lizhichao/sm.git",
  1075. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  1080. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  1081. "shasum": "",
  1082. "mirrors": [
  1083. {
  1084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1085. "preferred": true
  1086. }
  1087. ]
  1088. },
  1089. "require": {
  1090. "php": ">=5.6"
  1091. },
  1092. "type": "library",
  1093. "autoload": {
  1094. "psr-4": {
  1095. "OneSm\\": "src/"
  1096. }
  1097. },
  1098. "notification-url": "https://packagist.org/downloads/",
  1099. "license": [
  1100. "Apache-2.0"
  1101. ],
  1102. "authors": [
  1103. {
  1104. "name": "tanszhe",
  1105. "email": "1018595261@qq.com"
  1106. }
  1107. ],
  1108. "description": "国密sm3",
  1109. "keywords": [
  1110. "php",
  1111. "sm3"
  1112. ],
  1113. "support": {
  1114. "issues": "https://github.com/lizhichao/sm/issues",
  1115. "source": "https://github.com/lizhichao/sm/tree/1.10"
  1116. },
  1117. "funding": [
  1118. {
  1119. "url": "https://www.vicsdf.com/img/w.jpg",
  1120. "type": "custom"
  1121. },
  1122. {
  1123. "url": "https://www.vicsdf.com/img/z.jpg",
  1124. "type": "custom"
  1125. }
  1126. ],
  1127. "time": "2021-05-26T06:19:22+00:00"
  1128. },
  1129. {
  1130. "name": "maennchen/zipstream-php",
  1131. "version": "2.2.6",
  1132. "source": {
  1133. "type": "git",
  1134. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1135. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  1136. },
  1137. "dist": {
  1138. "type": "zip",
  1139. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  1140. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  1141. "shasum": "",
  1142. "mirrors": [
  1143. {
  1144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1145. "preferred": true
  1146. }
  1147. ]
  1148. },
  1149. "require": {
  1150. "myclabs/php-enum": "^1.5",
  1151. "php": "^7.4 || ^8.0",
  1152. "psr/http-message": "^1.0",
  1153. "symfony/polyfill-mbstring": "^1.0"
  1154. },
  1155. "require-dev": {
  1156. "ext-zip": "*",
  1157. "friendsofphp/php-cs-fixer": "^3.9",
  1158. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  1159. "mikey179/vfsstream": "^1.6",
  1160. "php-coveralls/php-coveralls": "^2.4",
  1161. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  1162. "vimeo/psalm": "^4.1"
  1163. },
  1164. "type": "library",
  1165. "autoload": {
  1166. "psr-4": {
  1167. "ZipStream\\": "src/"
  1168. }
  1169. },
  1170. "notification-url": "https://packagist.org/downloads/",
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Paul Duncan",
  1177. "email": "pabs@pablotron.org"
  1178. },
  1179. {
  1180. "name": "Jonatan Männchen",
  1181. "email": "jonatan@maennchen.ch"
  1182. },
  1183. {
  1184. "name": "Jesse Donat",
  1185. "email": "donatj@gmail.com"
  1186. },
  1187. {
  1188. "name": "András Kolesár",
  1189. "email": "kolesar@kolesar.hu"
  1190. }
  1191. ],
  1192. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1193. "keywords": [
  1194. "stream",
  1195. "zip"
  1196. ],
  1197. "support": {
  1198. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1199. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  1200. },
  1201. "funding": [
  1202. {
  1203. "url": "https://github.com/maennchen",
  1204. "type": "github"
  1205. },
  1206. {
  1207. "url": "https://opencollective.com/zipstream",
  1208. "type": "open_collective"
  1209. }
  1210. ],
  1211. "time": "2022-11-25T18:57:19+00:00"
  1212. },
  1213. {
  1214. "name": "markbaker/complex",
  1215. "version": "3.0.2",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1219. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1224. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1225. "shasum": "",
  1226. "mirrors": [
  1227. {
  1228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1229. "preferred": true
  1230. }
  1231. ]
  1232. },
  1233. "require": {
  1234. "php": "^7.2 || ^8.0"
  1235. },
  1236. "require-dev": {
  1237. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1238. "phpcompatibility/php-compatibility": "^9.3",
  1239. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1240. "squizlabs/php_codesniffer": "^3.7"
  1241. },
  1242. "type": "library",
  1243. "autoload": {
  1244. "psr-4": {
  1245. "Complex\\": "classes/src/"
  1246. }
  1247. },
  1248. "notification-url": "https://packagist.org/downloads/",
  1249. "license": [
  1250. "MIT"
  1251. ],
  1252. "authors": [
  1253. {
  1254. "name": "Mark Baker",
  1255. "email": "mark@lange.demon.co.uk"
  1256. }
  1257. ],
  1258. "description": "PHP Class for working with complex numbers",
  1259. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1260. "keywords": [
  1261. "complex",
  1262. "mathematics"
  1263. ],
  1264. "support": {
  1265. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1266. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  1267. },
  1268. "time": "2022-12-06T16:21:08+00:00"
  1269. },
  1270. {
  1271. "name": "markbaker/matrix",
  1272. "version": "3.0.1",
  1273. "source": {
  1274. "type": "git",
  1275. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1276. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  1277. },
  1278. "dist": {
  1279. "type": "zip",
  1280. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  1281. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  1282. "shasum": "",
  1283. "mirrors": [
  1284. {
  1285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1286. "preferred": true
  1287. }
  1288. ]
  1289. },
  1290. "require": {
  1291. "php": "^7.1 || ^8.0"
  1292. },
  1293. "require-dev": {
  1294. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1295. "phpcompatibility/php-compatibility": "^9.3",
  1296. "phpdocumentor/phpdocumentor": "2.*",
  1297. "phploc/phploc": "^4.0",
  1298. "phpmd/phpmd": "2.*",
  1299. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1300. "sebastian/phpcpd": "^4.0",
  1301. "squizlabs/php_codesniffer": "^3.7"
  1302. },
  1303. "type": "library",
  1304. "autoload": {
  1305. "psr-4": {
  1306. "Matrix\\": "classes/src/"
  1307. }
  1308. },
  1309. "notification-url": "https://packagist.org/downloads/",
  1310. "license": [
  1311. "MIT"
  1312. ],
  1313. "authors": [
  1314. {
  1315. "name": "Mark Baker",
  1316. "email": "mark@demon-angel.eu"
  1317. }
  1318. ],
  1319. "description": "PHP Class for working with matrices",
  1320. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1321. "keywords": [
  1322. "mathematics",
  1323. "matrix",
  1324. "vector"
  1325. ],
  1326. "support": {
  1327. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1328. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  1329. },
  1330. "time": "2022-12-02T22:17:43+00:00"
  1331. },
  1332. {
  1333. "name": "monolog/monolog",
  1334. "version": "2.10.0",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/Seldaek/monolog.git",
  1338. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  1343. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  1344. "shasum": "",
  1345. "mirrors": [
  1346. {
  1347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1348. "preferred": true
  1349. }
  1350. ]
  1351. },
  1352. "require": {
  1353. "php": ">=7.2",
  1354. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1355. },
  1356. "provide": {
  1357. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1358. },
  1359. "require-dev": {
  1360. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1361. "doctrine/couchdb": "~1.0@dev",
  1362. "elasticsearch/elasticsearch": "^7 || ^8",
  1363. "ext-json": "*",
  1364. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1365. "guzzlehttp/guzzle": "^7.4",
  1366. "guzzlehttp/psr7": "^2.2",
  1367. "mongodb/mongodb": "^1.8",
  1368. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1369. "phpspec/prophecy": "^1.15",
  1370. "phpstan/phpstan": "^1.10",
  1371. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  1372. "predis/predis": "^1.1 || ^2.0",
  1373. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1374. "ruflin/elastica": "^7",
  1375. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1376. "symfony/mailer": "^5.4 || ^6",
  1377. "symfony/mime": "^5.4 || ^6"
  1378. },
  1379. "suggest": {
  1380. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1381. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1382. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1383. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1384. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1385. "ext-mbstring": "Allow to work properly with unicode symbols",
  1386. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1387. "ext-openssl": "Required to send log messages using SSL",
  1388. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1389. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1390. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1391. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1392. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1393. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1394. },
  1395. "type": "library",
  1396. "extra": {
  1397. "branch-alias": {
  1398. "dev-main": "2.x-dev"
  1399. }
  1400. },
  1401. "autoload": {
  1402. "psr-4": {
  1403. "Monolog\\": "src/Monolog"
  1404. }
  1405. },
  1406. "notification-url": "https://packagist.org/downloads/",
  1407. "license": [
  1408. "MIT"
  1409. ],
  1410. "authors": [
  1411. {
  1412. "name": "Jordi Boggiano",
  1413. "email": "j.boggiano@seld.be",
  1414. "homepage": "https://seld.be"
  1415. }
  1416. ],
  1417. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1418. "homepage": "https://github.com/Seldaek/monolog",
  1419. "keywords": [
  1420. "log",
  1421. "logging",
  1422. "psr-3"
  1423. ],
  1424. "support": {
  1425. "issues": "https://github.com/Seldaek/monolog/issues",
  1426. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  1427. },
  1428. "funding": [
  1429. {
  1430. "url": "https://github.com/Seldaek",
  1431. "type": "github"
  1432. },
  1433. {
  1434. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1435. "type": "tidelift"
  1436. }
  1437. ],
  1438. "time": "2024-11-12T12:43:37+00:00"
  1439. },
  1440. {
  1441. "name": "myclabs/php-enum",
  1442. "version": "1.8.4",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/myclabs/php-enum.git",
  1446. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  1451. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  1452. "shasum": "",
  1453. "mirrors": [
  1454. {
  1455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1456. "preferred": true
  1457. }
  1458. ]
  1459. },
  1460. "require": {
  1461. "ext-json": "*",
  1462. "php": "^7.3 || ^8.0"
  1463. },
  1464. "require-dev": {
  1465. "phpunit/phpunit": "^9.5",
  1466. "squizlabs/php_codesniffer": "1.*",
  1467. "vimeo/psalm": "^4.6.2"
  1468. },
  1469. "type": "library",
  1470. "autoload": {
  1471. "psr-4": {
  1472. "MyCLabs\\Enum\\": "src/"
  1473. },
  1474. "classmap": [
  1475. "stubs/Stringable.php"
  1476. ]
  1477. },
  1478. "notification-url": "https://packagist.org/downloads/",
  1479. "license": [
  1480. "MIT"
  1481. ],
  1482. "authors": [
  1483. {
  1484. "name": "PHP Enum contributors",
  1485. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1486. }
  1487. ],
  1488. "description": "PHP Enum implementation",
  1489. "homepage": "http://github.com/myclabs/php-enum",
  1490. "keywords": [
  1491. "enum"
  1492. ],
  1493. "support": {
  1494. "issues": "https://github.com/myclabs/php-enum/issues",
  1495. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  1496. },
  1497. "funding": [
  1498. {
  1499. "url": "https://github.com/mnapoli",
  1500. "type": "github"
  1501. },
  1502. {
  1503. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1504. "type": "tidelift"
  1505. }
  1506. ],
  1507. "time": "2022-08-04T09:53:51+00:00"
  1508. },
  1509. {
  1510. "name": "pclzip/pclzip",
  1511. "version": "2.8.2",
  1512. "source": {
  1513. "type": "git",
  1514. "url": "https://github.com/ivanlanin/pclzip.git",
  1515. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd"
  1516. },
  1517. "dist": {
  1518. "type": "zip",
  1519. "url": "https://api.github.com/repos/ivanlanin/pclzip/zipball/19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1520. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1521. "shasum": "",
  1522. "mirrors": [
  1523. {
  1524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1525. "preferred": true
  1526. }
  1527. ]
  1528. },
  1529. "type": "library",
  1530. "autoload": {
  1531. "classmap": [
  1532. "pclzip.lib.php"
  1533. ]
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "LGPL-2.1"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Vincent Blavet"
  1542. }
  1543. ],
  1544. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  1545. "homepage": "http://www.phpconcept.net/pclzip",
  1546. "keywords": [
  1547. "php",
  1548. "zip"
  1549. ],
  1550. "support": {
  1551. "issues": "https://github.com/ivanlanin/pclzip/issues",
  1552. "source": "https://github.com/ivanlanin/pclzip/tree/master"
  1553. },
  1554. "time": "2014-06-05T11:42:24+00:00"
  1555. },
  1556. {
  1557. "name": "phpoffice/common",
  1558. "version": "0.2.9",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/PHPOffice/Common.git",
  1562. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/PHPOffice/Common/zipball/edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1567. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1568. "shasum": "",
  1569. "mirrors": [
  1570. {
  1571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1572. "preferred": true
  1573. }
  1574. ]
  1575. },
  1576. "require": {
  1577. "pclzip/pclzip": "^2.8",
  1578. "php": ">=5.3.0"
  1579. },
  1580. "require-dev": {
  1581. "phpdocumentor/phpdocumentor": "2.*",
  1582. "phploc/phploc": "2.*",
  1583. "phpmd/phpmd": "2.*",
  1584. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1585. "sebastian/phpcpd": "2.*",
  1586. "squizlabs/php_codesniffer": "2.*"
  1587. },
  1588. "type": "library",
  1589. "autoload": {
  1590. "psr-4": {
  1591. "PhpOffice\\Common\\": "src/Common/"
  1592. }
  1593. },
  1594. "notification-url": "https://packagist.org/downloads/",
  1595. "license": [
  1596. "LGPL"
  1597. ],
  1598. "authors": [
  1599. {
  1600. "name": "Mark Baker"
  1601. },
  1602. {
  1603. "name": "Franck Lefevre",
  1604. "homepage": "http://rootslabs.net"
  1605. }
  1606. ],
  1607. "description": "PHPOffice Common",
  1608. "homepage": "http://phpoffice.github.io",
  1609. "keywords": [
  1610. "common",
  1611. "component",
  1612. "office",
  1613. "php"
  1614. ],
  1615. "support": {
  1616. "issues": "https://github.com/PHPOffice/Common/issues",
  1617. "source": "https://github.com/PHPOffice/Common/tree/master"
  1618. },
  1619. "time": "2018-07-13T14:12:34+00:00"
  1620. },
  1621. {
  1622. "name": "phpoffice/phpspreadsheet",
  1623. "version": "1.29.7",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1627. "reference": "02c8625411dcb96e1f63d58c47460284e15b2e80"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/02c8625411dcb96e1f63d58c47460284e15b2e80",
  1632. "reference": "02c8625411dcb96e1f63d58c47460284e15b2e80",
  1633. "shasum": "",
  1634. "mirrors": [
  1635. {
  1636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1637. "preferred": true
  1638. }
  1639. ]
  1640. },
  1641. "require": {
  1642. "ext-ctype": "*",
  1643. "ext-dom": "*",
  1644. "ext-fileinfo": "*",
  1645. "ext-gd": "*",
  1646. "ext-iconv": "*",
  1647. "ext-libxml": "*",
  1648. "ext-mbstring": "*",
  1649. "ext-simplexml": "*",
  1650. "ext-xml": "*",
  1651. "ext-xmlreader": "*",
  1652. "ext-xmlwriter": "*",
  1653. "ext-zip": "*",
  1654. "ext-zlib": "*",
  1655. "ezyang/htmlpurifier": "^4.15",
  1656. "maennchen/zipstream-php": "^2.1 || ^3.0",
  1657. "markbaker/complex": "^3.0",
  1658. "markbaker/matrix": "^3.0",
  1659. "php": "^7.4 || ^8.0",
  1660. "psr/http-client": "^1.0",
  1661. "psr/http-factory": "^1.0",
  1662. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1663. },
  1664. "require-dev": {
  1665. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  1666. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  1667. "friendsofphp/php-cs-fixer": "^3.2",
  1668. "mitoteam/jpgraph": "^10.3",
  1669. "mpdf/mpdf": "^8.1.1",
  1670. "phpcompatibility/php-compatibility": "^9.3",
  1671. "phpstan/phpstan": "^1.1",
  1672. "phpstan/phpstan-phpunit": "^1.0",
  1673. "phpunit/phpunit": "^8.5 || ^9.0",
  1674. "squizlabs/php_codesniffer": "^3.7",
  1675. "tecnickcom/tcpdf": "^6.5"
  1676. },
  1677. "suggest": {
  1678. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  1679. "ext-intl": "PHP Internationalization Functions",
  1680. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1681. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1682. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  1683. },
  1684. "type": "library",
  1685. "autoload": {
  1686. "psr-4": {
  1687. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1688. }
  1689. },
  1690. "notification-url": "https://packagist.org/downloads/",
  1691. "license": [
  1692. "MIT"
  1693. ],
  1694. "authors": [
  1695. {
  1696. "name": "Maarten Balliauw",
  1697. "homepage": "https://blog.maartenballiauw.be"
  1698. },
  1699. {
  1700. "name": "Mark Baker",
  1701. "homepage": "https://markbakeruk.net"
  1702. },
  1703. {
  1704. "name": "Franck Lefevre",
  1705. "homepage": "https://rootslabs.net"
  1706. },
  1707. {
  1708. "name": "Erik Tilt"
  1709. },
  1710. {
  1711. "name": "Adrien Crivelli"
  1712. }
  1713. ],
  1714. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1715. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1716. "keywords": [
  1717. "OpenXML",
  1718. "excel",
  1719. "gnumeric",
  1720. "ods",
  1721. "php",
  1722. "spreadsheet",
  1723. "xls",
  1724. "xlsx"
  1725. ],
  1726. "support": {
  1727. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  1728. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.7"
  1729. },
  1730. "time": "2024-12-27T05:10:37+00:00"
  1731. },
  1732. {
  1733. "name": "phpoffice/phpword",
  1734. "version": "0.17.0",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/PHPOffice/PHPWord.git",
  1738. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1743. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1744. "shasum": "",
  1745. "mirrors": [
  1746. {
  1747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1748. "preferred": true
  1749. }
  1750. ]
  1751. },
  1752. "require": {
  1753. "ext-xml": "*",
  1754. "php": "^5.3.3 || ^7.0",
  1755. "phpoffice/common": "^0.2.9",
  1756. "zendframework/zend-escaper": "^2.2"
  1757. },
  1758. "require-dev": {
  1759. "dompdf/dompdf": "0.8.*",
  1760. "ext-gd": "*",
  1761. "ext-zip": "*",
  1762. "friendsofphp/php-cs-fixer": "^2.2",
  1763. "mpdf/mpdf": "5.7.4 || 6.* || 7.*",
  1764. "php-coveralls/php-coveralls": "1.1.0 || ^2.0",
  1765. "phploc/phploc": "2.* || 3.* || 4.*",
  1766. "phpmd/phpmd": "2.*",
  1767. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1768. "squizlabs/php_codesniffer": "^2.9",
  1769. "tecnickcom/tcpdf": "6.*"
  1770. },
  1771. "suggest": {
  1772. "dompdf/dompdf": "Allows writing PDF",
  1773. "ext-gd2": "Allows adding images",
  1774. "ext-xmlwriter": "Allows writing OOXML and ODF",
  1775. "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
  1776. "ext-zip": "Allows writing OOXML and ODF"
  1777. },
  1778. "type": "library",
  1779. "extra": {
  1780. "branch-alias": {
  1781. "dev-develop": "0.18-dev"
  1782. }
  1783. },
  1784. "autoload": {
  1785. "psr-4": {
  1786. "PhpOffice\\PhpWord\\": "src/PhpWord"
  1787. }
  1788. },
  1789. "notification-url": "https://packagist.org/downloads/",
  1790. "license": [
  1791. "LGPL-3.0"
  1792. ],
  1793. "authors": [
  1794. {
  1795. "name": "Mark Baker"
  1796. },
  1797. {
  1798. "name": "Gabriel Bull",
  1799. "email": "me@gabrielbull.com",
  1800. "homepage": "http://gabrielbull.com/"
  1801. },
  1802. {
  1803. "name": "Franck Lefevre",
  1804. "homepage": "https://rootslabs.net/blog/"
  1805. },
  1806. {
  1807. "name": "Ivan Lanin",
  1808. "homepage": "http://ivan.lanin.org"
  1809. },
  1810. {
  1811. "name": "Roman Syroeshko",
  1812. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  1813. },
  1814. {
  1815. "name": "Antoine de Troostembergh"
  1816. }
  1817. ],
  1818. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
  1819. "homepage": "http://phpoffice.github.io",
  1820. "keywords": [
  1821. "ISO IEC 29500",
  1822. "OOXML",
  1823. "Office Open XML",
  1824. "OpenDocument",
  1825. "OpenXML",
  1826. "PhpOffice",
  1827. "PhpWord",
  1828. "Rich Text Format",
  1829. "WordprocessingML",
  1830. "doc",
  1831. "docx",
  1832. "html",
  1833. "odf",
  1834. "odt",
  1835. "office",
  1836. "pdf",
  1837. "php",
  1838. "reader",
  1839. "rtf",
  1840. "template",
  1841. "template processor",
  1842. "word",
  1843. "writer"
  1844. ],
  1845. "support": {
  1846. "issues": "https://github.com/PHPOffice/PHPWord/issues",
  1847. "source": "https://github.com/PHPOffice/PHPWord/tree/develop"
  1848. },
  1849. "time": "2019-10-01T20:43:33+00:00"
  1850. },
  1851. {
  1852. "name": "psr/http-client",
  1853. "version": "1.0.3",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/php-fig/http-client.git",
  1857. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1862. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1863. "shasum": "",
  1864. "mirrors": [
  1865. {
  1866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1867. "preferred": true
  1868. }
  1869. ]
  1870. },
  1871. "require": {
  1872. "php": "^7.0 || ^8.0",
  1873. "psr/http-message": "^1.0 || ^2.0"
  1874. },
  1875. "type": "library",
  1876. "extra": {
  1877. "branch-alias": {
  1878. "dev-master": "1.0.x-dev"
  1879. }
  1880. },
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Psr\\Http\\Client\\": "src/"
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "PHP-FIG",
  1893. "homepage": "https://www.php-fig.org/"
  1894. }
  1895. ],
  1896. "description": "Common interface for HTTP clients",
  1897. "homepage": "https://github.com/php-fig/http-client",
  1898. "keywords": [
  1899. "http",
  1900. "http-client",
  1901. "psr",
  1902. "psr-18"
  1903. ],
  1904. "support": {
  1905. "source": "https://github.com/php-fig/http-client"
  1906. },
  1907. "time": "2023-09-23T14:17:50+00:00"
  1908. },
  1909. {
  1910. "name": "psr/http-factory",
  1911. "version": "1.0.2",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/php-fig/http-factory.git",
  1915. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  1920. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  1921. "shasum": "",
  1922. "mirrors": [
  1923. {
  1924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1925. "preferred": true
  1926. }
  1927. ]
  1928. },
  1929. "require": {
  1930. "php": ">=7.0.0",
  1931. "psr/http-message": "^1.0 || ^2.0"
  1932. },
  1933. "type": "library",
  1934. "extra": {
  1935. "branch-alias": {
  1936. "dev-master": "1.0.x-dev"
  1937. }
  1938. },
  1939. "autoload": {
  1940. "psr-4": {
  1941. "Psr\\Http\\Message\\": "src/"
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "PHP-FIG",
  1951. "homepage": "https://www.php-fig.org/"
  1952. }
  1953. ],
  1954. "description": "Common interfaces for PSR-7 HTTP message factories",
  1955. "keywords": [
  1956. "factory",
  1957. "http",
  1958. "message",
  1959. "psr",
  1960. "psr-17",
  1961. "psr-7",
  1962. "request",
  1963. "response"
  1964. ],
  1965. "support": {
  1966. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  1967. },
  1968. "time": "2023-04-10T20:10:41+00:00"
  1969. },
  1970. {
  1971. "name": "psr/http-message",
  1972. "version": "1.1",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/php-fig/http-message.git",
  1976. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1981. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1982. "shasum": "",
  1983. "mirrors": [
  1984. {
  1985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1986. "preferred": true
  1987. }
  1988. ]
  1989. },
  1990. "require": {
  1991. "php": "^7.2 || ^8.0"
  1992. },
  1993. "type": "library",
  1994. "extra": {
  1995. "branch-alias": {
  1996. "dev-master": "1.1.x-dev"
  1997. }
  1998. },
  1999. "autoload": {
  2000. "psr-4": {
  2001. "Psr\\Http\\Message\\": "src/"
  2002. }
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "MIT"
  2007. ],
  2008. "authors": [
  2009. {
  2010. "name": "PHP-FIG",
  2011. "homepage": "http://www.php-fig.org/"
  2012. }
  2013. ],
  2014. "description": "Common interface for HTTP messages",
  2015. "homepage": "https://github.com/php-fig/http-message",
  2016. "keywords": [
  2017. "http",
  2018. "http-message",
  2019. "psr",
  2020. "psr-7",
  2021. "request",
  2022. "response"
  2023. ],
  2024. "support": {
  2025. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2026. },
  2027. "time": "2023-04-04T09:50:52+00:00"
  2028. },
  2029. {
  2030. "name": "psr/log",
  2031. "version": "1.1.4",
  2032. "source": {
  2033. "type": "git",
  2034. "url": "https://github.com/php-fig/log.git",
  2035. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2036. },
  2037. "dist": {
  2038. "type": "zip",
  2039. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2040. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2041. "shasum": "",
  2042. "mirrors": [
  2043. {
  2044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2045. "preferred": true
  2046. }
  2047. ]
  2048. },
  2049. "require": {
  2050. "php": ">=5.3.0"
  2051. },
  2052. "type": "library",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-master": "1.1.x-dev"
  2056. }
  2057. },
  2058. "autoload": {
  2059. "psr-4": {
  2060. "Psr\\Log\\": "Psr/Log/"
  2061. }
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "MIT"
  2066. ],
  2067. "authors": [
  2068. {
  2069. "name": "PHP-FIG",
  2070. "homepage": "https://www.php-fig.org/"
  2071. }
  2072. ],
  2073. "description": "Common interface for logging libraries",
  2074. "homepage": "https://github.com/php-fig/log",
  2075. "keywords": [
  2076. "log",
  2077. "psr",
  2078. "psr-3"
  2079. ],
  2080. "support": {
  2081. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2082. },
  2083. "time": "2021-05-03T11:20:27+00:00"
  2084. },
  2085. {
  2086. "name": "psr/simple-cache",
  2087. "version": "1.0.1",
  2088. "source": {
  2089. "type": "git",
  2090. "url": "https://github.com/php-fig/simple-cache.git",
  2091. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2092. },
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2096. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2097. "shasum": "",
  2098. "mirrors": [
  2099. {
  2100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2101. "preferred": true
  2102. }
  2103. ]
  2104. },
  2105. "require": {
  2106. "php": ">=5.3.0"
  2107. },
  2108. "type": "library",
  2109. "extra": {
  2110. "branch-alias": {
  2111. "dev-master": "1.0.x-dev"
  2112. }
  2113. },
  2114. "autoload": {
  2115. "psr-4": {
  2116. "Psr\\SimpleCache\\": "src/"
  2117. }
  2118. },
  2119. "notification-url": "https://packagist.org/downloads/",
  2120. "license": [
  2121. "MIT"
  2122. ],
  2123. "authors": [
  2124. {
  2125. "name": "PHP-FIG",
  2126. "homepage": "http://www.php-fig.org/"
  2127. }
  2128. ],
  2129. "description": "Common interfaces for simple caching",
  2130. "keywords": [
  2131. "cache",
  2132. "caching",
  2133. "psr",
  2134. "psr-16",
  2135. "simple-cache"
  2136. ],
  2137. "support": {
  2138. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2139. },
  2140. "time": "2017-10-23T01:57:42+00:00"
  2141. },
  2142. {
  2143. "name": "ralouphie/getallheaders",
  2144. "version": "3.0.3",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://github.com/ralouphie/getallheaders.git",
  2148. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2153. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2154. "shasum": "",
  2155. "mirrors": [
  2156. {
  2157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2158. "preferred": true
  2159. }
  2160. ]
  2161. },
  2162. "require": {
  2163. "php": ">=5.6"
  2164. },
  2165. "require-dev": {
  2166. "php-coveralls/php-coveralls": "^2.1",
  2167. "phpunit/phpunit": "^5 || ^6.5"
  2168. },
  2169. "type": "library",
  2170. "autoload": {
  2171. "files": [
  2172. "src/getallheaders.php"
  2173. ]
  2174. },
  2175. "notification-url": "https://packagist.org/downloads/",
  2176. "license": [
  2177. "MIT"
  2178. ],
  2179. "authors": [
  2180. {
  2181. "name": "Ralph Khattar",
  2182. "email": "ralph.khattar@gmail.com"
  2183. }
  2184. ],
  2185. "description": "A polyfill for getallheaders.",
  2186. "support": {
  2187. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2188. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2189. },
  2190. "time": "2019-03-08T08:55:37+00:00"
  2191. },
  2192. {
  2193. "name": "symfony/deprecation-contracts",
  2194. "version": "v2.5.4",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/symfony/deprecation-contracts.git",
  2198. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
  2203. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
  2204. "shasum": "",
  2205. "mirrors": [
  2206. {
  2207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2208. "preferred": true
  2209. }
  2210. ]
  2211. },
  2212. "require": {
  2213. "php": ">=7.1"
  2214. },
  2215. "type": "library",
  2216. "extra": {
  2217. "branch-alias": {
  2218. "dev-main": "2.5-dev"
  2219. },
  2220. "thanks": {
  2221. "name": "symfony/contracts",
  2222. "url": "https://github.com/symfony/contracts"
  2223. }
  2224. },
  2225. "autoload": {
  2226. "files": [
  2227. "function.php"
  2228. ]
  2229. },
  2230. "notification-url": "https://packagist.org/downloads/",
  2231. "license": [
  2232. "MIT"
  2233. ],
  2234. "authors": [
  2235. {
  2236. "name": "Nicolas Grekas",
  2237. "email": "p@tchwork.com"
  2238. },
  2239. {
  2240. "name": "Symfony Community",
  2241. "homepage": "https://symfony.com/contributors"
  2242. }
  2243. ],
  2244. "description": "A generic function and convention to trigger deprecation notices",
  2245. "homepage": "https://symfony.com",
  2246. "support": {
  2247. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4"
  2248. },
  2249. "funding": [
  2250. {
  2251. "url": "https://symfony.com/sponsor",
  2252. "type": "custom"
  2253. },
  2254. {
  2255. "url": "https://github.com/fabpot",
  2256. "type": "github"
  2257. },
  2258. {
  2259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2260. "type": "tidelift"
  2261. }
  2262. ],
  2263. "time": "2024-09-25T14:11:13+00:00"
  2264. },
  2265. {
  2266. "name": "symfony/polyfill-mbstring",
  2267. "version": "v1.31.0",
  2268. "source": {
  2269. "type": "git",
  2270. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2271. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  2272. },
  2273. "dist": {
  2274. "type": "zip",
  2275. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  2276. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  2277. "shasum": "",
  2278. "mirrors": [
  2279. {
  2280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2281. "preferred": true
  2282. }
  2283. ]
  2284. },
  2285. "require": {
  2286. "php": ">=7.2"
  2287. },
  2288. "provide": {
  2289. "ext-mbstring": "*"
  2290. },
  2291. "suggest": {
  2292. "ext-mbstring": "For best performance"
  2293. },
  2294. "type": "library",
  2295. "extra": {
  2296. "thanks": {
  2297. "name": "symfony/polyfill",
  2298. "url": "https://github.com/symfony/polyfill"
  2299. }
  2300. },
  2301. "autoload": {
  2302. "files": [
  2303. "bootstrap.php"
  2304. ],
  2305. "psr-4": {
  2306. "Symfony\\Polyfill\\Mbstring\\": ""
  2307. }
  2308. },
  2309. "notification-url": "https://packagist.org/downloads/",
  2310. "license": [
  2311. "MIT"
  2312. ],
  2313. "authors": [
  2314. {
  2315. "name": "Nicolas Grekas",
  2316. "email": "p@tchwork.com"
  2317. },
  2318. {
  2319. "name": "Symfony Community",
  2320. "homepage": "https://symfony.com/contributors"
  2321. }
  2322. ],
  2323. "description": "Symfony polyfill for the Mbstring extension",
  2324. "homepage": "https://symfony.com",
  2325. "keywords": [
  2326. "compatibility",
  2327. "mbstring",
  2328. "polyfill",
  2329. "portable",
  2330. "shim"
  2331. ],
  2332. "support": {
  2333. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  2334. },
  2335. "funding": [
  2336. {
  2337. "url": "https://symfony.com/sponsor",
  2338. "type": "custom"
  2339. },
  2340. {
  2341. "url": "https://github.com/fabpot",
  2342. "type": "github"
  2343. },
  2344. {
  2345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2346. "type": "tidelift"
  2347. }
  2348. ],
  2349. "time": "2024-09-09T11:45:10+00:00"
  2350. },
  2351. {
  2352. "name": "zendframework/zend-escaper",
  2353. "version": "2.6.1",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/zendframework/zend-escaper.git",
  2357. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  2362. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  2363. "shasum": "",
  2364. "mirrors": [
  2365. {
  2366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2367. "preferred": true
  2368. }
  2369. ]
  2370. },
  2371. "require": {
  2372. "php": "^5.6 || ^7.0"
  2373. },
  2374. "require-dev": {
  2375. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2376. "zendframework/zend-coding-standard": "~1.0.0"
  2377. },
  2378. "type": "library",
  2379. "extra": {
  2380. "branch-alias": {
  2381. "dev-master": "2.6.x-dev",
  2382. "dev-develop": "2.7.x-dev"
  2383. }
  2384. },
  2385. "autoload": {
  2386. "psr-4": {
  2387. "Zend\\Escaper\\": "src/"
  2388. }
  2389. },
  2390. "notification-url": "https://packagist.org/downloads/",
  2391. "license": [
  2392. "BSD-3-Clause"
  2393. ],
  2394. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  2395. "keywords": [
  2396. "ZendFramework",
  2397. "escaper",
  2398. "zf"
  2399. ],
  2400. "support": {
  2401. "chat": "https://zendframework-slack.herokuapp.com",
  2402. "docs": "https://docs.zendframework.com/zend-escaper/",
  2403. "forum": "https://discourse.zendframework.com/c/questions/components",
  2404. "issues": "https://github.com/zendframework/zend-escaper/issues",
  2405. "rss": "https://github.com/zendframework/zend-escaper/releases.atom",
  2406. "source": "https://github.com/zendframework/zend-escaper"
  2407. },
  2408. "abandoned": "laminas/laminas-escaper",
  2409. "time": "2019-09-05T20:03:20+00:00"
  2410. }
  2411. ],
  2412. "packages-dev": [],
  2413. "aliases": [],
  2414. "minimum-stability": "stable",
  2415. "stability-flags": {},
  2416. "prefer-stable": true,
  2417. "prefer-lowest": false,
  2418. "platform": {},
  2419. "platform-dev": {},
  2420. "plugin-api-version": "2.6.0"
  2421. }