installed.json 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592
  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.2.0",
  68. "version_normalized": "1.2.0.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/aliyun/credentials-php.git",
  72. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/ebcda2e628180b4df235b46a86e1d014c561f5d9",
  77. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9",
  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|^9.3",
  109. "psr/cache": "^1.0",
  110. "symfony/dotenv": "^3.4",
  111. "symfony/var-dumper": "^3.4"
  112. },
  113. "suggest": {
  114. "ext-sockets": "To use client-side monitoring"
  115. },
  116. "time": "2024-10-16T13:29:17+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.13",
  157. "version_normalized": "0.2.13.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  161. "reference": "0213396384e2c064eefd614f3dd53636a63f987f"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/0213396384e2c064eefd614f3dd53636a63f987f",
  166. "reference": "0213396384e2c064eefd614f3dd53636a63f987f",
  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.21",
  180. "alibabacloud/tea-xml": "^0.2",
  181. "php": ">5.5"
  182. },
  183. "time": "2024-07-15T13:11:36+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.13"
  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.21",
  536. "version_normalized": "0.2.21.0",
  537. "source": {
  538. "type": "git",
  539. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  540. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  541. },
  542. "dist": {
  543. "type": "zip",
  544. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  545. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  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": "2024-07-05T06:05:54+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.2",
  638. "version_normalized": "2.7.2.0",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  642. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  647. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  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-10-28T10:41:12+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.2"
  686. },
  687. "install-path": "../aliyuncs/oss-sdk-php"
  688. },
  689. {
  690. "name": "ezyang/htmlpurifier",
  691. "version": "v4.18.0",
  692. "version_normalized": "4.18.0.0",
  693. "source": {
  694. "type": "git",
  695. "url": "https://github.com/ezyang/htmlpurifier.git",
  696. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  697. },
  698. "dist": {
  699. "type": "zip",
  700. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  701. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  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. "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"
  712. },
  713. "require-dev": {
  714. "cerdic/css-tidy": "^1.7 || ^2.0",
  715. "simpletest/simpletest": "dev-master"
  716. },
  717. "suggest": {
  718. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  719. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  720. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  721. "ext-tidy": "Used for pretty-printing HTML"
  722. },
  723. "time": "2024-11-01T03:51:45+00:00",
  724. "type": "library",
  725. "installation-source": "dist",
  726. "autoload": {
  727. "files": [
  728. "library/HTMLPurifier.composer.php"
  729. ],
  730. "psr-0": {
  731. "HTMLPurifier": "library/"
  732. },
  733. "exclude-from-classmap": [
  734. "/library/HTMLPurifier/Language/"
  735. ]
  736. },
  737. "notification-url": "https://packagist.org/downloads/",
  738. "license": [
  739. "LGPL-2.1-or-later"
  740. ],
  741. "authors": [
  742. {
  743. "name": "Edward Z. Yang",
  744. "email": "admin@htmlpurifier.org",
  745. "homepage": "http://ezyang.com"
  746. }
  747. ],
  748. "description": "Standards compliant HTML filter written in PHP",
  749. "homepage": "http://htmlpurifier.org/",
  750. "keywords": [
  751. "html"
  752. ],
  753. "support": {
  754. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  755. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  756. },
  757. "install-path": "../ezyang/htmlpurifier"
  758. },
  759. {
  760. "name": "guzzlehttp/guzzle",
  761. "version": "7.9.2",
  762. "version_normalized": "7.9.2.0",
  763. "source": {
  764. "type": "git",
  765. "url": "https://github.com/guzzle/guzzle.git",
  766. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  767. },
  768. "dist": {
  769. "type": "zip",
  770. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  771. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  772. "shasum": "",
  773. "mirrors": [
  774. {
  775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  776. "preferred": true
  777. }
  778. ]
  779. },
  780. "require": {
  781. "ext-json": "*",
  782. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  783. "guzzlehttp/psr7": "^2.7.0",
  784. "php": "^7.2.5 || ^8.0",
  785. "psr/http-client": "^1.0",
  786. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  787. },
  788. "provide": {
  789. "psr/http-client-implementation": "1.0"
  790. },
  791. "require-dev": {
  792. "bamarni/composer-bin-plugin": "^1.8.2",
  793. "ext-curl": "*",
  794. "guzzle/client-integration-tests": "3.0.2",
  795. "php-http/message-factory": "^1.1",
  796. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  797. "psr/log": "^1.1 || ^2.0 || ^3.0"
  798. },
  799. "suggest": {
  800. "ext-curl": "Required for CURL handler support",
  801. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  802. "psr/log": "Required for using the Log middleware"
  803. },
  804. "time": "2024-07-24T11:22:20+00:00",
  805. "type": "library",
  806. "extra": {
  807. "bamarni-bin": {
  808. "bin-links": true,
  809. "forward-command": false
  810. }
  811. },
  812. "installation-source": "dist",
  813. "autoload": {
  814. "files": [
  815. "src/functions_include.php"
  816. ],
  817. "psr-4": {
  818. "GuzzleHttp\\": "src/"
  819. }
  820. },
  821. "notification-url": "https://packagist.org/downloads/",
  822. "license": [
  823. "MIT"
  824. ],
  825. "authors": [
  826. {
  827. "name": "Graham Campbell",
  828. "email": "hello@gjcampbell.co.uk",
  829. "homepage": "https://github.com/GrahamCampbell"
  830. },
  831. {
  832. "name": "Michael Dowling",
  833. "email": "mtdowling@gmail.com",
  834. "homepage": "https://github.com/mtdowling"
  835. },
  836. {
  837. "name": "Jeremy Lindblom",
  838. "email": "jeremeamia@gmail.com",
  839. "homepage": "https://github.com/jeremeamia"
  840. },
  841. {
  842. "name": "George Mponos",
  843. "email": "gmponos@gmail.com",
  844. "homepage": "https://github.com/gmponos"
  845. },
  846. {
  847. "name": "Tobias Nyholm",
  848. "email": "tobias.nyholm@gmail.com",
  849. "homepage": "https://github.com/Nyholm"
  850. },
  851. {
  852. "name": "Márk Sági-Kazár",
  853. "email": "mark.sagikazar@gmail.com",
  854. "homepage": "https://github.com/sagikazarmark"
  855. },
  856. {
  857. "name": "Tobias Schultze",
  858. "email": "webmaster@tubo-world.de",
  859. "homepage": "https://github.com/Tobion"
  860. }
  861. ],
  862. "description": "Guzzle is a PHP HTTP client library",
  863. "keywords": [
  864. "client",
  865. "curl",
  866. "framework",
  867. "http",
  868. "http client",
  869. "psr-18",
  870. "psr-7",
  871. "rest",
  872. "web service"
  873. ],
  874. "support": {
  875. "issues": "https://github.com/guzzle/guzzle/issues",
  876. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  877. },
  878. "funding": [
  879. {
  880. "url": "https://github.com/GrahamCampbell",
  881. "type": "github"
  882. },
  883. {
  884. "url": "https://github.com/Nyholm",
  885. "type": "github"
  886. },
  887. {
  888. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  889. "type": "tidelift"
  890. }
  891. ],
  892. "install-path": "../guzzlehttp/guzzle"
  893. },
  894. {
  895. "name": "guzzlehttp/promises",
  896. "version": "2.0.3",
  897. "version_normalized": "2.0.3.0",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/guzzle/promises.git",
  901. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  906. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  907. "shasum": "",
  908. "mirrors": [
  909. {
  910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  911. "preferred": true
  912. }
  913. ]
  914. },
  915. "require": {
  916. "php": "^7.2.5 || ^8.0"
  917. },
  918. "require-dev": {
  919. "bamarni/composer-bin-plugin": "^1.8.2",
  920. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  921. },
  922. "time": "2024-07-18T10:29:17+00:00",
  923. "type": "library",
  924. "extra": {
  925. "bamarni-bin": {
  926. "bin-links": true,
  927. "forward-command": false
  928. }
  929. },
  930. "installation-source": "dist",
  931. "autoload": {
  932. "psr-4": {
  933. "GuzzleHttp\\Promise\\": "src/"
  934. }
  935. },
  936. "notification-url": "https://packagist.org/downloads/",
  937. "license": [
  938. "MIT"
  939. ],
  940. "authors": [
  941. {
  942. "name": "Graham Campbell",
  943. "email": "hello@gjcampbell.co.uk",
  944. "homepage": "https://github.com/GrahamCampbell"
  945. },
  946. {
  947. "name": "Michael Dowling",
  948. "email": "mtdowling@gmail.com",
  949. "homepage": "https://github.com/mtdowling"
  950. },
  951. {
  952. "name": "Tobias Nyholm",
  953. "email": "tobias.nyholm@gmail.com",
  954. "homepage": "https://github.com/Nyholm"
  955. },
  956. {
  957. "name": "Tobias Schultze",
  958. "email": "webmaster@tubo-world.de",
  959. "homepage": "https://github.com/Tobion"
  960. }
  961. ],
  962. "description": "Guzzle promises library",
  963. "keywords": [
  964. "promise"
  965. ],
  966. "support": {
  967. "issues": "https://github.com/guzzle/promises/issues",
  968. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  969. },
  970. "funding": [
  971. {
  972. "url": "https://github.com/GrahamCampbell",
  973. "type": "github"
  974. },
  975. {
  976. "url": "https://github.com/Nyholm",
  977. "type": "github"
  978. },
  979. {
  980. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  981. "type": "tidelift"
  982. }
  983. ],
  984. "install-path": "../guzzlehttp/promises"
  985. },
  986. {
  987. "name": "guzzlehttp/psr7",
  988. "version": "2.7.0",
  989. "version_normalized": "2.7.0.0",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/guzzle/psr7.git",
  993. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  998. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  999. "shasum": "",
  1000. "mirrors": [
  1001. {
  1002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1003. "preferred": true
  1004. }
  1005. ]
  1006. },
  1007. "require": {
  1008. "php": "^7.2.5 || ^8.0",
  1009. "psr/http-factory": "^1.0",
  1010. "psr/http-message": "^1.1 || ^2.0",
  1011. "ralouphie/getallheaders": "^3.0"
  1012. },
  1013. "provide": {
  1014. "psr/http-factory-implementation": "1.0",
  1015. "psr/http-message-implementation": "1.0"
  1016. },
  1017. "require-dev": {
  1018. "bamarni/composer-bin-plugin": "^1.8.2",
  1019. "http-interop/http-factory-tests": "0.9.0",
  1020. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1021. },
  1022. "suggest": {
  1023. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1024. },
  1025. "time": "2024-07-18T11:15:46+00:00",
  1026. "type": "library",
  1027. "extra": {
  1028. "bamarni-bin": {
  1029. "bin-links": true,
  1030. "forward-command": false
  1031. }
  1032. },
  1033. "installation-source": "dist",
  1034. "autoload": {
  1035. "psr-4": {
  1036. "GuzzleHttp\\Psr7\\": "src/"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Graham Campbell",
  1046. "email": "hello@gjcampbell.co.uk",
  1047. "homepage": "https://github.com/GrahamCampbell"
  1048. },
  1049. {
  1050. "name": "Michael Dowling",
  1051. "email": "mtdowling@gmail.com",
  1052. "homepage": "https://github.com/mtdowling"
  1053. },
  1054. {
  1055. "name": "George Mponos",
  1056. "email": "gmponos@gmail.com",
  1057. "homepage": "https://github.com/gmponos"
  1058. },
  1059. {
  1060. "name": "Tobias Nyholm",
  1061. "email": "tobias.nyholm@gmail.com",
  1062. "homepage": "https://github.com/Nyholm"
  1063. },
  1064. {
  1065. "name": "Márk Sági-Kazár",
  1066. "email": "mark.sagikazar@gmail.com",
  1067. "homepage": "https://github.com/sagikazarmark"
  1068. },
  1069. {
  1070. "name": "Tobias Schultze",
  1071. "email": "webmaster@tubo-world.de",
  1072. "homepage": "https://github.com/Tobion"
  1073. },
  1074. {
  1075. "name": "Márk Sági-Kazár",
  1076. "email": "mark.sagikazar@gmail.com",
  1077. "homepage": "https://sagikazarmark.hu"
  1078. }
  1079. ],
  1080. "description": "PSR-7 message implementation that also provides common utility methods",
  1081. "keywords": [
  1082. "http",
  1083. "message",
  1084. "psr-7",
  1085. "request",
  1086. "response",
  1087. "stream",
  1088. "uri",
  1089. "url"
  1090. ],
  1091. "support": {
  1092. "issues": "https://github.com/guzzle/psr7/issues",
  1093. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1094. },
  1095. "funding": [
  1096. {
  1097. "url": "https://github.com/GrahamCampbell",
  1098. "type": "github"
  1099. },
  1100. {
  1101. "url": "https://github.com/Nyholm",
  1102. "type": "github"
  1103. },
  1104. {
  1105. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1106. "type": "tidelift"
  1107. }
  1108. ],
  1109. "install-path": "../guzzlehttp/psr7"
  1110. },
  1111. {
  1112. "name": "lizhichao/one-sm",
  1113. "version": "1.10",
  1114. "version_normalized": "1.10.0.0",
  1115. "source": {
  1116. "type": "git",
  1117. "url": "https://github.com/lizhichao/sm.git",
  1118. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  1119. },
  1120. "dist": {
  1121. "type": "zip",
  1122. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  1123. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  1124. "shasum": "",
  1125. "mirrors": [
  1126. {
  1127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1128. "preferred": true
  1129. }
  1130. ]
  1131. },
  1132. "require": {
  1133. "php": ">=5.6"
  1134. },
  1135. "time": "2021-05-26T06:19:22+00:00",
  1136. "type": "library",
  1137. "installation-source": "dist",
  1138. "autoload": {
  1139. "psr-4": {
  1140. "OneSm\\": "src/"
  1141. }
  1142. },
  1143. "notification-url": "https://packagist.org/downloads/",
  1144. "license": [
  1145. "Apache-2.0"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "tanszhe",
  1150. "email": "1018595261@qq.com"
  1151. }
  1152. ],
  1153. "description": "国密sm3",
  1154. "keywords": [
  1155. "php",
  1156. "sm3"
  1157. ],
  1158. "support": {
  1159. "issues": "https://github.com/lizhichao/sm/issues",
  1160. "source": "https://github.com/lizhichao/sm/tree/1.10"
  1161. },
  1162. "funding": [
  1163. {
  1164. "url": "https://www.vicsdf.com/img/w.jpg",
  1165. "type": "custom"
  1166. },
  1167. {
  1168. "url": "https://www.vicsdf.com/img/z.jpg",
  1169. "type": "custom"
  1170. }
  1171. ],
  1172. "install-path": "../lizhichao/one-sm"
  1173. },
  1174. {
  1175. "name": "maennchen/zipstream-php",
  1176. "version": "2.1.0",
  1177. "version_normalized": "2.1.0.0",
  1178. "source": {
  1179. "type": "git",
  1180. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  1181. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  1182. },
  1183. "dist": {
  1184. "type": "zip",
  1185. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1186. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  1187. "shasum": "",
  1188. "mirrors": [
  1189. {
  1190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1191. "preferred": true
  1192. }
  1193. ]
  1194. },
  1195. "require": {
  1196. "myclabs/php-enum": "^1.5",
  1197. "php": ">= 7.1",
  1198. "psr/http-message": "^1.0",
  1199. "symfony/polyfill-mbstring": "^1.0"
  1200. },
  1201. "require-dev": {
  1202. "ext-zip": "*",
  1203. "guzzlehttp/guzzle": ">= 6.3",
  1204. "mikey179/vfsstream": "^1.6",
  1205. "phpunit/phpunit": ">= 7.5"
  1206. },
  1207. "time": "2020-05-30T13:11:16+00:00",
  1208. "type": "library",
  1209. "installation-source": "dist",
  1210. "autoload": {
  1211. "psr-4": {
  1212. "ZipStream\\": "src/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "MIT"
  1218. ],
  1219. "authors": [
  1220. {
  1221. "name": "Paul Duncan",
  1222. "email": "pabs@pablotron.org"
  1223. },
  1224. {
  1225. "name": "Jonatan Männchen",
  1226. "email": "jonatan@maennchen.ch"
  1227. },
  1228. {
  1229. "name": "Jesse Donat",
  1230. "email": "donatj@gmail.com"
  1231. },
  1232. {
  1233. "name": "András Kolesár",
  1234. "email": "kolesar@kolesar.hu"
  1235. }
  1236. ],
  1237. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  1238. "keywords": [
  1239. "stream",
  1240. "zip"
  1241. ],
  1242. "support": {
  1243. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  1244. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  1245. },
  1246. "funding": [
  1247. {
  1248. "url": "https://github.com/maennchen",
  1249. "type": "github"
  1250. },
  1251. {
  1252. "url": "https://opencollective.com/zipstream",
  1253. "type": "open_collective"
  1254. }
  1255. ],
  1256. "install-path": "../maennchen/zipstream-php"
  1257. },
  1258. {
  1259. "name": "markbaker/complex",
  1260. "version": "3.0.2",
  1261. "version_normalized": "3.0.2.0",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/MarkBaker/PHPComplex.git",
  1265. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1270. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  1271. "shasum": "",
  1272. "mirrors": [
  1273. {
  1274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1275. "preferred": true
  1276. }
  1277. ]
  1278. },
  1279. "require": {
  1280. "php": "^7.2 || ^8.0"
  1281. },
  1282. "require-dev": {
  1283. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1284. "phpcompatibility/php-compatibility": "^9.3",
  1285. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1286. "squizlabs/php_codesniffer": "^3.7"
  1287. },
  1288. "time": "2022-12-06T16:21:08+00:00",
  1289. "type": "library",
  1290. "installation-source": "dist",
  1291. "autoload": {
  1292. "psr-4": {
  1293. "Complex\\": "classes/src/"
  1294. }
  1295. },
  1296. "notification-url": "https://packagist.org/downloads/",
  1297. "license": [
  1298. "MIT"
  1299. ],
  1300. "authors": [
  1301. {
  1302. "name": "Mark Baker",
  1303. "email": "mark@lange.demon.co.uk"
  1304. }
  1305. ],
  1306. "description": "PHP Class for working with complex numbers",
  1307. "homepage": "https://github.com/MarkBaker/PHPComplex",
  1308. "keywords": [
  1309. "complex",
  1310. "mathematics"
  1311. ],
  1312. "support": {
  1313. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  1314. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  1315. },
  1316. "install-path": "../markbaker/complex"
  1317. },
  1318. {
  1319. "name": "markbaker/matrix",
  1320. "version": "3.0.1",
  1321. "version_normalized": "3.0.1.0",
  1322. "source": {
  1323. "type": "git",
  1324. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  1325. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  1326. },
  1327. "dist": {
  1328. "type": "zip",
  1329. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  1330. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  1331. "shasum": "",
  1332. "mirrors": [
  1333. {
  1334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1335. "preferred": true
  1336. }
  1337. ]
  1338. },
  1339. "require": {
  1340. "php": "^7.1 || ^8.0"
  1341. },
  1342. "require-dev": {
  1343. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1344. "phpcompatibility/php-compatibility": "^9.3",
  1345. "phpdocumentor/phpdocumentor": "2.*",
  1346. "phploc/phploc": "^4.0",
  1347. "phpmd/phpmd": "2.*",
  1348. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  1349. "sebastian/phpcpd": "^4.0",
  1350. "squizlabs/php_codesniffer": "^3.7"
  1351. },
  1352. "time": "2022-12-02T22:17:43+00:00",
  1353. "type": "library",
  1354. "installation-source": "dist",
  1355. "autoload": {
  1356. "psr-4": {
  1357. "Matrix\\": "classes/src/"
  1358. }
  1359. },
  1360. "notification-url": "https://packagist.org/downloads/",
  1361. "license": [
  1362. "MIT"
  1363. ],
  1364. "authors": [
  1365. {
  1366. "name": "Mark Baker",
  1367. "email": "mark@demon-angel.eu"
  1368. }
  1369. ],
  1370. "description": "PHP Class for working with matrices",
  1371. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  1372. "keywords": [
  1373. "mathematics",
  1374. "matrix",
  1375. "vector"
  1376. ],
  1377. "support": {
  1378. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  1379. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  1380. },
  1381. "install-path": "../markbaker/matrix"
  1382. },
  1383. {
  1384. "name": "monolog/monolog",
  1385. "version": "2.10.0",
  1386. "version_normalized": "2.10.0.0",
  1387. "source": {
  1388. "type": "git",
  1389. "url": "https://github.com/Seldaek/monolog.git",
  1390. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  1391. },
  1392. "dist": {
  1393. "type": "zip",
  1394. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  1395. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  1396. "shasum": "",
  1397. "mirrors": [
  1398. {
  1399. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1400. "preferred": true
  1401. }
  1402. ]
  1403. },
  1404. "require": {
  1405. "php": ">=7.2",
  1406. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1407. },
  1408. "provide": {
  1409. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1410. },
  1411. "require-dev": {
  1412. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1413. "doctrine/couchdb": "~1.0@dev",
  1414. "elasticsearch/elasticsearch": "^7 || ^8",
  1415. "ext-json": "*",
  1416. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1417. "guzzlehttp/guzzle": "^7.4",
  1418. "guzzlehttp/psr7": "^2.2",
  1419. "mongodb/mongodb": "^1.8",
  1420. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1421. "phpspec/prophecy": "^1.15",
  1422. "phpstan/phpstan": "^1.10",
  1423. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  1424. "predis/predis": "^1.1 || ^2.0",
  1425. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1426. "ruflin/elastica": "^7",
  1427. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1428. "symfony/mailer": "^5.4 || ^6",
  1429. "symfony/mime": "^5.4 || ^6"
  1430. },
  1431. "suggest": {
  1432. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1433. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1434. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1435. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1436. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1437. "ext-mbstring": "Allow to work properly with unicode symbols",
  1438. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1439. "ext-openssl": "Required to send log messages using SSL",
  1440. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1441. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1442. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1443. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1444. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1445. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1446. },
  1447. "time": "2024-11-12T12:43:37+00:00",
  1448. "type": "library",
  1449. "extra": {
  1450. "branch-alias": {
  1451. "dev-main": "2.x-dev"
  1452. }
  1453. },
  1454. "installation-source": "dist",
  1455. "autoload": {
  1456. "psr-4": {
  1457. "Monolog\\": "src/Monolog"
  1458. }
  1459. },
  1460. "notification-url": "https://packagist.org/downloads/",
  1461. "license": [
  1462. "MIT"
  1463. ],
  1464. "authors": [
  1465. {
  1466. "name": "Jordi Boggiano",
  1467. "email": "j.boggiano@seld.be",
  1468. "homepage": "https://seld.be"
  1469. }
  1470. ],
  1471. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1472. "homepage": "https://github.com/Seldaek/monolog",
  1473. "keywords": [
  1474. "log",
  1475. "logging",
  1476. "psr-3"
  1477. ],
  1478. "support": {
  1479. "issues": "https://github.com/Seldaek/monolog/issues",
  1480. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  1481. },
  1482. "funding": [
  1483. {
  1484. "url": "https://github.com/Seldaek",
  1485. "type": "github"
  1486. },
  1487. {
  1488. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1489. "type": "tidelift"
  1490. }
  1491. ],
  1492. "install-path": "../monolog/monolog"
  1493. },
  1494. {
  1495. "name": "myclabs/php-enum",
  1496. "version": "1.8.4",
  1497. "version_normalized": "1.8.4.0",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/myclabs/php-enum.git",
  1501. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  1506. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  1507. "shasum": "",
  1508. "mirrors": [
  1509. {
  1510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1511. "preferred": true
  1512. }
  1513. ]
  1514. },
  1515. "require": {
  1516. "ext-json": "*",
  1517. "php": "^7.3 || ^8.0"
  1518. },
  1519. "require-dev": {
  1520. "phpunit/phpunit": "^9.5",
  1521. "squizlabs/php_codesniffer": "1.*",
  1522. "vimeo/psalm": "^4.6.2"
  1523. },
  1524. "time": "2022-08-04T09:53:51+00:00",
  1525. "type": "library",
  1526. "installation-source": "dist",
  1527. "autoload": {
  1528. "psr-4": {
  1529. "MyCLabs\\Enum\\": "src/"
  1530. },
  1531. "classmap": [
  1532. "stubs/Stringable.php"
  1533. ]
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "MIT"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "PHP Enum contributors",
  1542. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1543. }
  1544. ],
  1545. "description": "PHP Enum implementation",
  1546. "homepage": "http://github.com/myclabs/php-enum",
  1547. "keywords": [
  1548. "enum"
  1549. ],
  1550. "support": {
  1551. "issues": "https://github.com/myclabs/php-enum/issues",
  1552. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  1553. },
  1554. "funding": [
  1555. {
  1556. "url": "https://github.com/mnapoli",
  1557. "type": "github"
  1558. },
  1559. {
  1560. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1561. "type": "tidelift"
  1562. }
  1563. ],
  1564. "install-path": "../myclabs/php-enum"
  1565. },
  1566. {
  1567. "name": "pclzip/pclzip",
  1568. "version": "2.8.2",
  1569. "version_normalized": "2.8.2.0",
  1570. "source": {
  1571. "type": "git",
  1572. "url": "https://github.com/ivanlanin/pclzip.git",
  1573. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd"
  1574. },
  1575. "dist": {
  1576. "type": "zip",
  1577. "url": "https://api.github.com/repos/ivanlanin/pclzip/zipball/19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1578. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1579. "shasum": "",
  1580. "mirrors": [
  1581. {
  1582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1583. "preferred": true
  1584. }
  1585. ]
  1586. },
  1587. "time": "2014-06-05T11:42:24+00:00",
  1588. "type": "library",
  1589. "installation-source": "dist",
  1590. "autoload": {
  1591. "classmap": [
  1592. "pclzip.lib.php"
  1593. ]
  1594. },
  1595. "notification-url": "https://packagist.org/downloads/",
  1596. "license": [
  1597. "LGPL-2.1"
  1598. ],
  1599. "authors": [
  1600. {
  1601. "name": "Vincent Blavet"
  1602. }
  1603. ],
  1604. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  1605. "homepage": "http://www.phpconcept.net/pclzip",
  1606. "keywords": [
  1607. "php",
  1608. "zip"
  1609. ],
  1610. "support": {
  1611. "issues": "https://github.com/ivanlanin/pclzip/issues",
  1612. "source": "https://github.com/ivanlanin/pclzip/tree/master"
  1613. },
  1614. "install-path": "../pclzip/pclzip"
  1615. },
  1616. {
  1617. "name": "phpoffice/common",
  1618. "version": "0.2.9",
  1619. "version_normalized": "0.2.9.0",
  1620. "source": {
  1621. "type": "git",
  1622. "url": "https://github.com/PHPOffice/Common.git",
  1623. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d"
  1624. },
  1625. "dist": {
  1626. "type": "zip",
  1627. "url": "https://api.github.com/repos/PHPOffice/Common/zipball/edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1628. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1629. "shasum": "",
  1630. "mirrors": [
  1631. {
  1632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1633. "preferred": true
  1634. }
  1635. ]
  1636. },
  1637. "require": {
  1638. "pclzip/pclzip": "^2.8",
  1639. "php": ">=5.3.0"
  1640. },
  1641. "require-dev": {
  1642. "phpdocumentor/phpdocumentor": "2.*",
  1643. "phploc/phploc": "2.*",
  1644. "phpmd/phpmd": "2.*",
  1645. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1646. "sebastian/phpcpd": "2.*",
  1647. "squizlabs/php_codesniffer": "2.*"
  1648. },
  1649. "time": "2018-07-13T14:12:34+00:00",
  1650. "type": "library",
  1651. "installation-source": "dist",
  1652. "autoload": {
  1653. "psr-4": {
  1654. "PhpOffice\\Common\\": "src/Common/"
  1655. }
  1656. },
  1657. "notification-url": "https://packagist.org/downloads/",
  1658. "license": [
  1659. "LGPL"
  1660. ],
  1661. "authors": [
  1662. {
  1663. "name": "Mark Baker"
  1664. },
  1665. {
  1666. "name": "Franck Lefevre",
  1667. "homepage": "http://rootslabs.net"
  1668. }
  1669. ],
  1670. "description": "PHPOffice Common",
  1671. "homepage": "http://phpoffice.github.io",
  1672. "keywords": [
  1673. "common",
  1674. "component",
  1675. "office",
  1676. "php"
  1677. ],
  1678. "support": {
  1679. "issues": "https://github.com/PHPOffice/Common/issues",
  1680. "source": "https://github.com/PHPOffice/Common/tree/master"
  1681. },
  1682. "install-path": "../phpoffice/common"
  1683. },
  1684. {
  1685. "name": "phpoffice/phpspreadsheet",
  1686. "version": "1.25.2",
  1687. "version_normalized": "1.25.2.0",
  1688. "source": {
  1689. "type": "git",
  1690. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1691. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  1692. },
  1693. "dist": {
  1694. "type": "zip",
  1695. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  1696. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  1697. "shasum": "",
  1698. "mirrors": [
  1699. {
  1700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1701. "preferred": true
  1702. }
  1703. ]
  1704. },
  1705. "require": {
  1706. "ext-ctype": "*",
  1707. "ext-dom": "*",
  1708. "ext-fileinfo": "*",
  1709. "ext-gd": "*",
  1710. "ext-iconv": "*",
  1711. "ext-libxml": "*",
  1712. "ext-mbstring": "*",
  1713. "ext-simplexml": "*",
  1714. "ext-xml": "*",
  1715. "ext-xmlreader": "*",
  1716. "ext-xmlwriter": "*",
  1717. "ext-zip": "*",
  1718. "ext-zlib": "*",
  1719. "ezyang/htmlpurifier": "^4.15",
  1720. "maennchen/zipstream-php": "^2.1",
  1721. "markbaker/complex": "^3.0",
  1722. "markbaker/matrix": "^3.0",
  1723. "php": "^7.3 || ^8.0",
  1724. "psr/http-client": "^1.0",
  1725. "psr/http-factory": "^1.0",
  1726. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1727. },
  1728. "require-dev": {
  1729. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1730. "dompdf/dompdf": "^1.0 || ^2.0",
  1731. "friendsofphp/php-cs-fixer": "^3.2",
  1732. "mitoteam/jpgraph": "10.2.4",
  1733. "mpdf/mpdf": "8.1.1",
  1734. "phpcompatibility/php-compatibility": "^9.3",
  1735. "phpstan/phpstan": "^1.1",
  1736. "phpstan/phpstan-phpunit": "^1.0",
  1737. "phpunit/phpunit": "^8.5 || ^9.0",
  1738. "squizlabs/php_codesniffer": "^3.7",
  1739. "tecnickcom/tcpdf": "6.5"
  1740. },
  1741. "suggest": {
  1742. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  1743. "ext-intl": "PHP Internationalization Functions",
  1744. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1745. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1746. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  1747. },
  1748. "time": "2022-09-25T17:21:01+00:00",
  1749. "type": "library",
  1750. "installation-source": "dist",
  1751. "autoload": {
  1752. "psr-4": {
  1753. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1754. }
  1755. },
  1756. "notification-url": "https://packagist.org/downloads/",
  1757. "license": [
  1758. "MIT"
  1759. ],
  1760. "authors": [
  1761. {
  1762. "name": "Maarten Balliauw",
  1763. "homepage": "https://blog.maartenballiauw.be"
  1764. },
  1765. {
  1766. "name": "Mark Baker",
  1767. "homepage": "https://markbakeruk.net"
  1768. },
  1769. {
  1770. "name": "Franck Lefevre",
  1771. "homepage": "https://rootslabs.net"
  1772. },
  1773. {
  1774. "name": "Erik Tilt"
  1775. },
  1776. {
  1777. "name": "Adrien Crivelli"
  1778. }
  1779. ],
  1780. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1781. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1782. "keywords": [
  1783. "OpenXML",
  1784. "excel",
  1785. "gnumeric",
  1786. "ods",
  1787. "php",
  1788. "spreadsheet",
  1789. "xls",
  1790. "xlsx"
  1791. ],
  1792. "support": {
  1793. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  1794. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  1795. },
  1796. "install-path": "../phpoffice/phpspreadsheet"
  1797. },
  1798. {
  1799. "name": "phpoffice/phpword",
  1800. "version": "0.17.0",
  1801. "version_normalized": "0.17.0.0",
  1802. "source": {
  1803. "type": "git",
  1804. "url": "https://github.com/PHPOffice/PHPWord.git",
  1805. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5"
  1806. },
  1807. "dist": {
  1808. "type": "zip",
  1809. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1810. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1811. "shasum": "",
  1812. "mirrors": [
  1813. {
  1814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1815. "preferred": true
  1816. }
  1817. ]
  1818. },
  1819. "require": {
  1820. "ext-xml": "*",
  1821. "php": "^5.3.3 || ^7.0",
  1822. "phpoffice/common": "^0.2.9",
  1823. "zendframework/zend-escaper": "^2.2"
  1824. },
  1825. "require-dev": {
  1826. "dompdf/dompdf": "0.8.*",
  1827. "ext-gd": "*",
  1828. "ext-zip": "*",
  1829. "friendsofphp/php-cs-fixer": "^2.2",
  1830. "mpdf/mpdf": "5.7.4 || 6.* || 7.*",
  1831. "php-coveralls/php-coveralls": "1.1.0 || ^2.0",
  1832. "phploc/phploc": "2.* || 3.* || 4.*",
  1833. "phpmd/phpmd": "2.*",
  1834. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1835. "squizlabs/php_codesniffer": "^2.9",
  1836. "tecnickcom/tcpdf": "6.*"
  1837. },
  1838. "suggest": {
  1839. "dompdf/dompdf": "Allows writing PDF",
  1840. "ext-gd2": "Allows adding images",
  1841. "ext-xmlwriter": "Allows writing OOXML and ODF",
  1842. "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
  1843. "ext-zip": "Allows writing OOXML and ODF"
  1844. },
  1845. "time": "2019-10-01T20:43:33+00:00",
  1846. "type": "library",
  1847. "extra": {
  1848. "branch-alias": {
  1849. "dev-develop": "0.18-dev"
  1850. }
  1851. },
  1852. "installation-source": "dist",
  1853. "autoload": {
  1854. "psr-4": {
  1855. "PhpOffice\\PhpWord\\": "src/PhpWord"
  1856. }
  1857. },
  1858. "notification-url": "https://packagist.org/downloads/",
  1859. "license": [
  1860. "LGPL-3.0"
  1861. ],
  1862. "authors": [
  1863. {
  1864. "name": "Mark Baker"
  1865. },
  1866. {
  1867. "name": "Gabriel Bull",
  1868. "email": "me@gabrielbull.com",
  1869. "homepage": "http://gabrielbull.com/"
  1870. },
  1871. {
  1872. "name": "Franck Lefevre",
  1873. "homepage": "https://rootslabs.net/blog/"
  1874. },
  1875. {
  1876. "name": "Ivan Lanin",
  1877. "homepage": "http://ivan.lanin.org"
  1878. },
  1879. {
  1880. "name": "Roman Syroeshko",
  1881. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  1882. },
  1883. {
  1884. "name": "Antoine de Troostembergh"
  1885. }
  1886. ],
  1887. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
  1888. "homepage": "http://phpoffice.github.io",
  1889. "keywords": [
  1890. "ISO IEC 29500",
  1891. "OOXML",
  1892. "Office Open XML",
  1893. "OpenDocument",
  1894. "OpenXML",
  1895. "PhpOffice",
  1896. "PhpWord",
  1897. "Rich Text Format",
  1898. "WordprocessingML",
  1899. "doc",
  1900. "docx",
  1901. "html",
  1902. "odf",
  1903. "odt",
  1904. "office",
  1905. "pdf",
  1906. "php",
  1907. "reader",
  1908. "rtf",
  1909. "template",
  1910. "template processor",
  1911. "word",
  1912. "writer"
  1913. ],
  1914. "support": {
  1915. "issues": "https://github.com/PHPOffice/PHPWord/issues",
  1916. "source": "https://github.com/PHPOffice/PHPWord/tree/develop"
  1917. },
  1918. "install-path": "../phpoffice/phpword"
  1919. },
  1920. {
  1921. "name": "psr/http-client",
  1922. "version": "1.0.3",
  1923. "version_normalized": "1.0.3.0",
  1924. "source": {
  1925. "type": "git",
  1926. "url": "https://github.com/php-fig/http-client.git",
  1927. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1928. },
  1929. "dist": {
  1930. "type": "zip",
  1931. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1932. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1933. "shasum": "",
  1934. "mirrors": [
  1935. {
  1936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1937. "preferred": true
  1938. }
  1939. ]
  1940. },
  1941. "require": {
  1942. "php": "^7.0 || ^8.0",
  1943. "psr/http-message": "^1.0 || ^2.0"
  1944. },
  1945. "time": "2023-09-23T14:17:50+00:00",
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "1.0.x-dev"
  1950. }
  1951. },
  1952. "installation-source": "dist",
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Psr\\Http\\Client\\": "src/"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "PHP-FIG",
  1965. "homepage": "https://www.php-fig.org/"
  1966. }
  1967. ],
  1968. "description": "Common interface for HTTP clients",
  1969. "homepage": "https://github.com/php-fig/http-client",
  1970. "keywords": [
  1971. "http",
  1972. "http-client",
  1973. "psr",
  1974. "psr-18"
  1975. ],
  1976. "support": {
  1977. "source": "https://github.com/php-fig/http-client"
  1978. },
  1979. "install-path": "../psr/http-client"
  1980. },
  1981. {
  1982. "name": "psr/http-factory",
  1983. "version": "1.0.2",
  1984. "version_normalized": "1.0.2.0",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/php-fig/http-factory.git",
  1988. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  1993. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  1994. "shasum": "",
  1995. "mirrors": [
  1996. {
  1997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1998. "preferred": true
  1999. }
  2000. ]
  2001. },
  2002. "require": {
  2003. "php": ">=7.0.0",
  2004. "psr/http-message": "^1.0 || ^2.0"
  2005. },
  2006. "time": "2023-04-10T20:10:41+00:00",
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-master": "1.0.x-dev"
  2011. }
  2012. },
  2013. "installation-source": "dist",
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Psr\\Http\\Message\\": "src/"
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "PHP-FIG",
  2026. "homepage": "https://www.php-fig.org/"
  2027. }
  2028. ],
  2029. "description": "Common interfaces for PSR-7 HTTP message factories",
  2030. "keywords": [
  2031. "factory",
  2032. "http",
  2033. "message",
  2034. "psr",
  2035. "psr-17",
  2036. "psr-7",
  2037. "request",
  2038. "response"
  2039. ],
  2040. "support": {
  2041. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2042. },
  2043. "install-path": "../psr/http-factory"
  2044. },
  2045. {
  2046. "name": "psr/http-message",
  2047. "version": "1.1",
  2048. "version_normalized": "1.1.0.0",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/php-fig/http-message.git",
  2052. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2057. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2058. "shasum": "",
  2059. "mirrors": [
  2060. {
  2061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2062. "preferred": true
  2063. }
  2064. ]
  2065. },
  2066. "require": {
  2067. "php": "^7.2 || ^8.0"
  2068. },
  2069. "time": "2023-04-04T09:50:52+00:00",
  2070. "type": "library",
  2071. "extra": {
  2072. "branch-alias": {
  2073. "dev-master": "1.1.x-dev"
  2074. }
  2075. },
  2076. "installation-source": "dist",
  2077. "autoload": {
  2078. "psr-4": {
  2079. "Psr\\Http\\Message\\": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "PHP-FIG",
  2089. "homepage": "http://www.php-fig.org/"
  2090. }
  2091. ],
  2092. "description": "Common interface for HTTP messages",
  2093. "homepage": "https://github.com/php-fig/http-message",
  2094. "keywords": [
  2095. "http",
  2096. "http-message",
  2097. "psr",
  2098. "psr-7",
  2099. "request",
  2100. "response"
  2101. ],
  2102. "support": {
  2103. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2104. },
  2105. "install-path": "../psr/http-message"
  2106. },
  2107. {
  2108. "name": "psr/log",
  2109. "version": "1.1.4",
  2110. "version_normalized": "1.1.4.0",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/php-fig/log.git",
  2114. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2119. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2120. "shasum": "",
  2121. "mirrors": [
  2122. {
  2123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2124. "preferred": true
  2125. }
  2126. ]
  2127. },
  2128. "require": {
  2129. "php": ">=5.3.0"
  2130. },
  2131. "time": "2021-05-03T11:20:27+00:00",
  2132. "type": "library",
  2133. "extra": {
  2134. "branch-alias": {
  2135. "dev-master": "1.1.x-dev"
  2136. }
  2137. },
  2138. "installation-source": "dist",
  2139. "autoload": {
  2140. "psr-4": {
  2141. "Psr\\Log\\": "Psr/Log/"
  2142. }
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "MIT"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "PHP-FIG",
  2151. "homepage": "https://www.php-fig.org/"
  2152. }
  2153. ],
  2154. "description": "Common interface for logging libraries",
  2155. "homepage": "https://github.com/php-fig/log",
  2156. "keywords": [
  2157. "log",
  2158. "psr",
  2159. "psr-3"
  2160. ],
  2161. "support": {
  2162. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2163. },
  2164. "install-path": "../psr/log"
  2165. },
  2166. {
  2167. "name": "psr/simple-cache",
  2168. "version": "1.0.1",
  2169. "version_normalized": "1.0.1.0",
  2170. "source": {
  2171. "type": "git",
  2172. "url": "https://github.com/php-fig/simple-cache.git",
  2173. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2174. },
  2175. "dist": {
  2176. "type": "zip",
  2177. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2178. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2179. "shasum": "",
  2180. "mirrors": [
  2181. {
  2182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2183. "preferred": true
  2184. }
  2185. ]
  2186. },
  2187. "require": {
  2188. "php": ">=5.3.0"
  2189. },
  2190. "time": "2017-10-23T01:57:42+00:00",
  2191. "type": "library",
  2192. "extra": {
  2193. "branch-alias": {
  2194. "dev-master": "1.0.x-dev"
  2195. }
  2196. },
  2197. "installation-source": "dist",
  2198. "autoload": {
  2199. "psr-4": {
  2200. "Psr\\SimpleCache\\": "src/"
  2201. }
  2202. },
  2203. "notification-url": "https://packagist.org/downloads/",
  2204. "license": [
  2205. "MIT"
  2206. ],
  2207. "authors": [
  2208. {
  2209. "name": "PHP-FIG",
  2210. "homepage": "http://www.php-fig.org/"
  2211. }
  2212. ],
  2213. "description": "Common interfaces for simple caching",
  2214. "keywords": [
  2215. "cache",
  2216. "caching",
  2217. "psr",
  2218. "psr-16",
  2219. "simple-cache"
  2220. ],
  2221. "support": {
  2222. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2223. },
  2224. "install-path": "../psr/simple-cache"
  2225. },
  2226. {
  2227. "name": "ralouphie/getallheaders",
  2228. "version": "3.0.3",
  2229. "version_normalized": "3.0.3.0",
  2230. "source": {
  2231. "type": "git",
  2232. "url": "https://github.com/ralouphie/getallheaders.git",
  2233. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2234. },
  2235. "dist": {
  2236. "type": "zip",
  2237. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2238. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2239. "shasum": "",
  2240. "mirrors": [
  2241. {
  2242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2243. "preferred": true
  2244. }
  2245. ]
  2246. },
  2247. "require": {
  2248. "php": ">=5.6"
  2249. },
  2250. "require-dev": {
  2251. "php-coveralls/php-coveralls": "^2.1",
  2252. "phpunit/phpunit": "^5 || ^6.5"
  2253. },
  2254. "time": "2019-03-08T08:55:37+00:00",
  2255. "type": "library",
  2256. "installation-source": "dist",
  2257. "autoload": {
  2258. "files": [
  2259. "src/getallheaders.php"
  2260. ]
  2261. },
  2262. "notification-url": "https://packagist.org/downloads/",
  2263. "license": [
  2264. "MIT"
  2265. ],
  2266. "authors": [
  2267. {
  2268. "name": "Ralph Khattar",
  2269. "email": "ralph.khattar@gmail.com"
  2270. }
  2271. ],
  2272. "description": "A polyfill for getallheaders.",
  2273. "support": {
  2274. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2275. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2276. },
  2277. "install-path": "../ralouphie/getallheaders"
  2278. },
  2279. {
  2280. "name": "symfony/deprecation-contracts",
  2281. "version": "v2.5.4",
  2282. "version_normalized": "2.5.4.0",
  2283. "source": {
  2284. "type": "git",
  2285. "url": "https://github.com/symfony/deprecation-contracts.git",
  2286. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
  2287. },
  2288. "dist": {
  2289. "type": "zip",
  2290. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
  2291. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
  2292. "shasum": "",
  2293. "mirrors": [
  2294. {
  2295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2296. "preferred": true
  2297. }
  2298. ]
  2299. },
  2300. "require": {
  2301. "php": ">=7.1"
  2302. },
  2303. "time": "2024-09-25T14:11:13+00:00",
  2304. "type": "library",
  2305. "extra": {
  2306. "branch-alias": {
  2307. "dev-main": "2.5-dev"
  2308. },
  2309. "thanks": {
  2310. "name": "symfony/contracts",
  2311. "url": "https://github.com/symfony/contracts"
  2312. }
  2313. },
  2314. "installation-source": "dist",
  2315. "autoload": {
  2316. "files": [
  2317. "function.php"
  2318. ]
  2319. },
  2320. "notification-url": "https://packagist.org/downloads/",
  2321. "license": [
  2322. "MIT"
  2323. ],
  2324. "authors": [
  2325. {
  2326. "name": "Nicolas Grekas",
  2327. "email": "p@tchwork.com"
  2328. },
  2329. {
  2330. "name": "Symfony Community",
  2331. "homepage": "https://symfony.com/contributors"
  2332. }
  2333. ],
  2334. "description": "A generic function and convention to trigger deprecation notices",
  2335. "homepage": "https://symfony.com",
  2336. "support": {
  2337. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4"
  2338. },
  2339. "funding": [
  2340. {
  2341. "url": "https://symfony.com/sponsor",
  2342. "type": "custom"
  2343. },
  2344. {
  2345. "url": "https://github.com/fabpot",
  2346. "type": "github"
  2347. },
  2348. {
  2349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2350. "type": "tidelift"
  2351. }
  2352. ],
  2353. "install-path": "../symfony/deprecation-contracts"
  2354. },
  2355. {
  2356. "name": "symfony/polyfill-mbstring",
  2357. "version": "v1.31.0",
  2358. "version_normalized": "1.31.0.0",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2362. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  2367. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  2368. "shasum": "",
  2369. "mirrors": [
  2370. {
  2371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2372. "preferred": true
  2373. }
  2374. ]
  2375. },
  2376. "require": {
  2377. "php": ">=7.2"
  2378. },
  2379. "provide": {
  2380. "ext-mbstring": "*"
  2381. },
  2382. "suggest": {
  2383. "ext-mbstring": "For best performance"
  2384. },
  2385. "time": "2024-09-09T11:45:10+00:00",
  2386. "type": "library",
  2387. "extra": {
  2388. "thanks": {
  2389. "name": "symfony/polyfill",
  2390. "url": "https://github.com/symfony/polyfill"
  2391. }
  2392. },
  2393. "installation-source": "dist",
  2394. "autoload": {
  2395. "files": [
  2396. "bootstrap.php"
  2397. ],
  2398. "psr-4": {
  2399. "Symfony\\Polyfill\\Mbstring\\": ""
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Nicolas Grekas",
  2409. "email": "p@tchwork.com"
  2410. },
  2411. {
  2412. "name": "Symfony Community",
  2413. "homepage": "https://symfony.com/contributors"
  2414. }
  2415. ],
  2416. "description": "Symfony polyfill for the Mbstring extension",
  2417. "homepage": "https://symfony.com",
  2418. "keywords": [
  2419. "compatibility",
  2420. "mbstring",
  2421. "polyfill",
  2422. "portable",
  2423. "shim"
  2424. ],
  2425. "support": {
  2426. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  2427. },
  2428. "funding": [
  2429. {
  2430. "url": "https://symfony.com/sponsor",
  2431. "type": "custom"
  2432. },
  2433. {
  2434. "url": "https://github.com/fabpot",
  2435. "type": "github"
  2436. },
  2437. {
  2438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2439. "type": "tidelift"
  2440. }
  2441. ],
  2442. "install-path": "../symfony/polyfill-mbstring"
  2443. },
  2444. {
  2445. "name": "tecnickcom/tcpdf",
  2446. "version": "6.8.0",
  2447. "version_normalized": "6.8.0.0",
  2448. "source": {
  2449. "type": "git",
  2450. "url": "https://github.com/tecnickcom/TCPDF.git",
  2451. "reference": "14ffa0e308f5634aa2489568b4b90b24073b6731"
  2452. },
  2453. "dist": {
  2454. "type": "zip",
  2455. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/14ffa0e308f5634aa2489568b4b90b24073b6731",
  2456. "reference": "14ffa0e308f5634aa2489568b4b90b24073b6731",
  2457. "shasum": "",
  2458. "mirrors": [
  2459. {
  2460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2461. "preferred": true
  2462. }
  2463. ]
  2464. },
  2465. "require": {
  2466. "ext-curl": "*",
  2467. "php": ">=7.1.0"
  2468. },
  2469. "time": "2024-12-23T13:34:57+00:00",
  2470. "type": "library",
  2471. "installation-source": "dist",
  2472. "autoload": {
  2473. "classmap": [
  2474. "config",
  2475. "include",
  2476. "tcpdf.php",
  2477. "tcpdf_parser.php",
  2478. "tcpdf_import.php",
  2479. "tcpdf_barcodes_1d.php",
  2480. "tcpdf_barcodes_2d.php",
  2481. "include/tcpdf_colors.php",
  2482. "include/tcpdf_filters.php",
  2483. "include/tcpdf_font_data.php",
  2484. "include/tcpdf_fonts.php",
  2485. "include/tcpdf_images.php",
  2486. "include/tcpdf_static.php",
  2487. "include/barcodes/datamatrix.php",
  2488. "include/barcodes/pdf417.php",
  2489. "include/barcodes/qrcode.php"
  2490. ]
  2491. },
  2492. "notification-url": "https://packagist.org/downloads/",
  2493. "license": [
  2494. "LGPL-3.0-or-later"
  2495. ],
  2496. "authors": [
  2497. {
  2498. "name": "Nicola Asuni",
  2499. "email": "info@tecnick.com",
  2500. "role": "lead"
  2501. }
  2502. ],
  2503. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  2504. "homepage": "http://www.tcpdf.org/",
  2505. "keywords": [
  2506. "PDFD32000-2008",
  2507. "TCPDF",
  2508. "barcodes",
  2509. "datamatrix",
  2510. "pdf",
  2511. "pdf417",
  2512. "qrcode"
  2513. ],
  2514. "support": {
  2515. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  2516. "source": "https://github.com/tecnickcom/TCPDF/tree/6.8.0"
  2517. },
  2518. "funding": [
  2519. {
  2520. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&currency_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project",
  2521. "type": "custom"
  2522. }
  2523. ],
  2524. "install-path": "../tecnickcom/tcpdf"
  2525. },
  2526. {
  2527. "name": "zendframework/zend-escaper",
  2528. "version": "2.6.1",
  2529. "version_normalized": "2.6.1.0",
  2530. "source": {
  2531. "type": "git",
  2532. "url": "https://github.com/zendframework/zend-escaper.git",
  2533. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  2534. },
  2535. "dist": {
  2536. "type": "zip",
  2537. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  2538. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  2539. "shasum": "",
  2540. "mirrors": [
  2541. {
  2542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2543. "preferred": true
  2544. }
  2545. ]
  2546. },
  2547. "require": {
  2548. "php": "^5.6 || ^7.0"
  2549. },
  2550. "require-dev": {
  2551. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2552. "zendframework/zend-coding-standard": "~1.0.0"
  2553. },
  2554. "time": "2019-09-05T20:03:20+00:00",
  2555. "type": "library",
  2556. "extra": {
  2557. "branch-alias": {
  2558. "dev-master": "2.6.x-dev",
  2559. "dev-develop": "2.7.x-dev"
  2560. }
  2561. },
  2562. "installation-source": "dist",
  2563. "autoload": {
  2564. "psr-4": {
  2565. "Zend\\Escaper\\": "src/"
  2566. }
  2567. },
  2568. "notification-url": "https://packagist.org/downloads/",
  2569. "license": [
  2570. "BSD-3-Clause"
  2571. ],
  2572. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  2573. "keywords": [
  2574. "ZendFramework",
  2575. "escaper",
  2576. "zf"
  2577. ],
  2578. "support": {
  2579. "chat": "https://zendframework-slack.herokuapp.com",
  2580. "docs": "https://docs.zendframework.com/zend-escaper/",
  2581. "forum": "https://discourse.zendframework.com/c/questions/components",
  2582. "issues": "https://github.com/zendframework/zend-escaper/issues",
  2583. "rss": "https://github.com/zendframework/zend-escaper/releases.atom",
  2584. "source": "https://github.com/zendframework/zend-escaper"
  2585. },
  2586. "abandoned": "laminas/laminas-escaper",
  2587. "install-path": "../zendframework/zend-escaper"
  2588. }
  2589. ],
  2590. "dev": true,
  2591. "dev-package-names": []
  2592. }