composer.lock 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  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": "2335a25344887e3d6d0a2c271c8ef226",
  8. "packages": [
  9. {
  10. "name": "composer/pcre",
  11. "version": "3.3.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/pcre.git",
  15. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  20. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  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. "php": "^7.4 || ^8.0"
  31. },
  32. "conflict": {
  33. "phpstan/phpstan": "<1.11.10"
  34. },
  35. "require-dev": {
  36. "phpstan/phpstan": "^1.12 || ^2",
  37. "phpstan/phpstan-strict-rules": "^1 || ^2",
  38. "phpunit/phpunit": "^8 || ^9"
  39. },
  40. "type": "library",
  41. "extra": {
  42. "branch-alias": {
  43. "dev-main": "3.x-dev"
  44. },
  45. "phpstan": {
  46. "includes": [
  47. "extension.neon"
  48. ]
  49. }
  50. },
  51. "autoload": {
  52. "psr-4": {
  53. "Composer\\Pcre\\": "src"
  54. }
  55. },
  56. "notification-url": "https://packagist.org/downloads/",
  57. "license": [
  58. "MIT"
  59. ],
  60. "authors": [
  61. {
  62. "name": "Jordi Boggiano",
  63. "email": "j.boggiano@seld.be",
  64. "homepage": "http://seld.be"
  65. }
  66. ],
  67. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  68. "keywords": [
  69. "PCRE",
  70. "preg",
  71. "regex",
  72. "regular expression"
  73. ],
  74. "support": {
  75. "issues": "https://github.com/composer/pcre/issues",
  76. "source": "https://github.com/composer/pcre/tree/3.3.2"
  77. },
  78. "funding": [
  79. {
  80. "url": "https://packagist.com",
  81. "type": "custom"
  82. },
  83. {
  84. "url": "https://github.com/composer",
  85. "type": "github"
  86. },
  87. {
  88. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  89. "type": "tidelift"
  90. }
  91. ],
  92. "time": "2024-11-12T16:29:46+00:00"
  93. },
  94. {
  95. "name": "ergebnis/classy",
  96. "version": "1.7.0",
  97. "source": {
  98. "type": "git",
  99. "url": "https://github.com/ergebnis/classy.git",
  100. "reference": "32880f00b442d0fcdb50df94ea8d45e48f9cb430"
  101. },
  102. "dist": {
  103. "type": "zip",
  104. "url": "https://api.github.com/repos/ergebnis/classy/zipball/32880f00b442d0fcdb50df94ea8d45e48f9cb430",
  105. "reference": "32880f00b442d0fcdb50df94ea8d45e48f9cb430",
  106. "shasum": "",
  107. "mirrors": [
  108. {
  109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  110. "preferred": true
  111. }
  112. ]
  113. },
  114. "require": {
  115. "ext-tokenizer": "*",
  116. "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  117. },
  118. "require-dev": {
  119. "ergebnis/composer-normalize": "^2.45.0",
  120. "ergebnis/license": "^2.6.0",
  121. "ergebnis/php-cs-fixer-config": "^6.40.0",
  122. "ergebnis/phpunit-slow-test-detector": "^2.17.0",
  123. "fakerphp/faker": "^1.24.1",
  124. "infection/infection": "~0.26.6",
  125. "phpstan/extension-installer": "^1.4.3",
  126. "phpstan/phpstan": "^2.1.1",
  127. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  128. "phpstan/phpstan-phpunit": "^2.0.3",
  129. "phpstan/phpstan-strict-rules": "^2.0.1",
  130. "phpunit/phpunit": "^9.6.19",
  131. "rector/rector": "^2.0.6"
  132. },
  133. "type": "library",
  134. "autoload": {
  135. "psr-4": {
  136. "Ergebnis\\Classy\\": "src/"
  137. }
  138. },
  139. "notification-url": "https://packagist.org/downloads/",
  140. "license": [
  141. "MIT"
  142. ],
  143. "authors": [
  144. {
  145. "name": "Andreas Möller",
  146. "email": "am@localheinz.com",
  147. "homepage": "https://localheinz.com"
  148. }
  149. ],
  150. "description": "Provides a finder for classy constructs (classes, enums, interfaces, and traits).",
  151. "homepage": "https://github.com/ergebnis/classy",
  152. "keywords": [
  153. "classes",
  154. "classy",
  155. "constructs",
  156. "finder",
  157. "interfaces",
  158. "traits"
  159. ],
  160. "support": {
  161. "issues": "https://github.com/ergebnis/classy/issues",
  162. "source": "https://github.com/ergebnis/classy"
  163. },
  164. "time": "2025-01-07T10:31:33+00:00"
  165. },
  166. {
  167. "name": "ezyang/htmlpurifier",
  168. "version": "v4.18.0",
  169. "source": {
  170. "type": "git",
  171. "url": "https://github.com/ezyang/htmlpurifier.git",
  172. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  173. },
  174. "dist": {
  175. "type": "zip",
  176. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  177. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  178. "shasum": "",
  179. "mirrors": [
  180. {
  181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  182. "preferred": true
  183. }
  184. ]
  185. },
  186. "require": {
  187. "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"
  188. },
  189. "require-dev": {
  190. "cerdic/css-tidy": "^1.7 || ^2.0",
  191. "simpletest/simpletest": "dev-master"
  192. },
  193. "suggest": {
  194. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  195. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  196. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  197. "ext-tidy": "Used for pretty-printing HTML"
  198. },
  199. "type": "library",
  200. "autoload": {
  201. "files": [
  202. "library/HTMLPurifier.composer.php"
  203. ],
  204. "psr-0": {
  205. "HTMLPurifier": "library/"
  206. },
  207. "exclude-from-classmap": [
  208. "/library/HTMLPurifier/Language/"
  209. ]
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "LGPL-2.1-or-later"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Edward Z. Yang",
  218. "email": "admin@htmlpurifier.org",
  219. "homepage": "http://ezyang.com"
  220. }
  221. ],
  222. "description": "Standards compliant HTML filter written in PHP",
  223. "homepage": "http://htmlpurifier.org/",
  224. "keywords": [
  225. "html"
  226. ],
  227. "support": {
  228. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  229. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  230. },
  231. "time": "2024-11-01T03:51:45+00:00"
  232. },
  233. {
  234. "name": "league/flysystem",
  235. "version": "1.1.10",
  236. "source": {
  237. "type": "git",
  238. "url": "https://github.com/thephpleague/flysystem.git",
  239. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  240. },
  241. "dist": {
  242. "type": "zip",
  243. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  244. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  245. "shasum": "",
  246. "mirrors": [
  247. {
  248. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  249. "preferred": true
  250. }
  251. ]
  252. },
  253. "require": {
  254. "ext-fileinfo": "*",
  255. "league/mime-type-detection": "^1.3",
  256. "php": "^7.2.5 || ^8.0"
  257. },
  258. "conflict": {
  259. "league/flysystem-sftp": "<1.0.6"
  260. },
  261. "require-dev": {
  262. "phpspec/prophecy": "^1.11.1",
  263. "phpunit/phpunit": "^8.5.8"
  264. },
  265. "suggest": {
  266. "ext-ftp": "Allows you to use FTP server storage",
  267. "ext-openssl": "Allows you to use FTPS server storage",
  268. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  269. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  270. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  271. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  272. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  273. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  274. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  275. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  276. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  277. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  278. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  279. },
  280. "type": "library",
  281. "extra": {
  282. "branch-alias": {
  283. "dev-master": "1.1-dev"
  284. }
  285. },
  286. "autoload": {
  287. "psr-4": {
  288. "League\\Flysystem\\": "src/"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Frank de Jonge",
  298. "email": "info@frenky.net"
  299. }
  300. ],
  301. "description": "Filesystem abstraction: Many filesystems, one API.",
  302. "keywords": [
  303. "Cloud Files",
  304. "WebDAV",
  305. "abstraction",
  306. "aws",
  307. "cloud",
  308. "copy.com",
  309. "dropbox",
  310. "file systems",
  311. "files",
  312. "filesystem",
  313. "filesystems",
  314. "ftp",
  315. "rackspace",
  316. "remote",
  317. "s3",
  318. "sftp",
  319. "storage"
  320. ],
  321. "support": {
  322. "issues": "https://github.com/thephpleague/flysystem/issues",
  323. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  324. },
  325. "funding": [
  326. {
  327. "url": "https://offset.earth/frankdejonge",
  328. "type": "other"
  329. }
  330. ],
  331. "time": "2022-10-04T09:16:37+00:00"
  332. },
  333. {
  334. "name": "league/flysystem-cached-adapter",
  335. "version": "1.1.0",
  336. "source": {
  337. "type": "git",
  338. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  339. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  340. },
  341. "dist": {
  342. "type": "zip",
  343. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  344. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  345. "shasum": "",
  346. "mirrors": [
  347. {
  348. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  349. "preferred": true
  350. }
  351. ]
  352. },
  353. "require": {
  354. "league/flysystem": "~1.0",
  355. "psr/cache": "^1.0.0"
  356. },
  357. "require-dev": {
  358. "mockery/mockery": "~0.9",
  359. "phpspec/phpspec": "^3.4",
  360. "phpunit/phpunit": "^5.7",
  361. "predis/predis": "~1.0",
  362. "tedivm/stash": "~0.12"
  363. },
  364. "suggest": {
  365. "ext-phpredis": "Pure C implemented extension for PHP"
  366. },
  367. "type": "library",
  368. "autoload": {
  369. "psr-4": {
  370. "League\\Flysystem\\Cached\\": "src/"
  371. }
  372. },
  373. "notification-url": "https://packagist.org/downloads/",
  374. "license": [
  375. "MIT"
  376. ],
  377. "authors": [
  378. {
  379. "name": "frankdejonge",
  380. "email": "info@frenky.net"
  381. }
  382. ],
  383. "description": "An adapter decorator to enable meta-data caching.",
  384. "support": {
  385. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  386. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  387. },
  388. "time": "2020-07-25T15:56:04+00:00"
  389. },
  390. {
  391. "name": "league/mime-type-detection",
  392. "version": "1.15.0",
  393. "source": {
  394. "type": "git",
  395. "url": "https://github.com/thephpleague/mime-type-detection.git",
  396. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  397. },
  398. "dist": {
  399. "type": "zip",
  400. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  401. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  402. "shasum": "",
  403. "mirrors": [
  404. {
  405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  406. "preferred": true
  407. }
  408. ]
  409. },
  410. "require": {
  411. "ext-fileinfo": "*",
  412. "php": "^7.4 || ^8.0"
  413. },
  414. "require-dev": {
  415. "friendsofphp/php-cs-fixer": "^3.2",
  416. "phpstan/phpstan": "^0.12.68",
  417. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  418. },
  419. "type": "library",
  420. "autoload": {
  421. "psr-4": {
  422. "League\\MimeTypeDetection\\": "src"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "MIT"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Frank de Jonge",
  432. "email": "info@frankdejonge.nl"
  433. }
  434. ],
  435. "description": "Mime-type detection for Flysystem",
  436. "support": {
  437. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  438. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  439. },
  440. "funding": [
  441. {
  442. "url": "https://github.com/frankdejonge",
  443. "type": "github"
  444. },
  445. {
  446. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  447. "type": "tidelift"
  448. }
  449. ],
  450. "time": "2024-01-28T23:22:08+00:00"
  451. },
  452. {
  453. "name": "maennchen/zipstream-php",
  454. "version": "3.1.2",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  458. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  463. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  464. "shasum": "",
  465. "mirrors": [
  466. {
  467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  468. "preferred": true
  469. }
  470. ]
  471. },
  472. "require": {
  473. "ext-mbstring": "*",
  474. "ext-zlib": "*",
  475. "php-64bit": "^8.2"
  476. },
  477. "require-dev": {
  478. "brianium/paratest": "^7.7",
  479. "ext-zip": "*",
  480. "friendsofphp/php-cs-fixer": "^3.16",
  481. "guzzlehttp/guzzle": "^7.5",
  482. "mikey179/vfsstream": "^1.6",
  483. "php-coveralls/php-coveralls": "^2.5",
  484. "phpunit/phpunit": "^11.0",
  485. "vimeo/psalm": "^6.0"
  486. },
  487. "suggest": {
  488. "guzzlehttp/psr7": "^2.4",
  489. "psr/http-message": "^2.0"
  490. },
  491. "type": "library",
  492. "autoload": {
  493. "psr-4": {
  494. "ZipStream\\": "src/"
  495. }
  496. },
  497. "notification-url": "https://packagist.org/downloads/",
  498. "license": [
  499. "MIT"
  500. ],
  501. "authors": [
  502. {
  503. "name": "Paul Duncan",
  504. "email": "pabs@pablotron.org"
  505. },
  506. {
  507. "name": "Jonatan Männchen",
  508. "email": "jonatan@maennchen.ch"
  509. },
  510. {
  511. "name": "Jesse Donat",
  512. "email": "donatj@gmail.com"
  513. },
  514. {
  515. "name": "András Kolesár",
  516. "email": "kolesar@kolesar.hu"
  517. }
  518. ],
  519. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  520. "keywords": [
  521. "stream",
  522. "zip"
  523. ],
  524. "support": {
  525. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  526. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  527. },
  528. "funding": [
  529. {
  530. "url": "https://github.com/maennchen",
  531. "type": "github"
  532. }
  533. ],
  534. "time": "2025-01-27T12:07:53+00:00"
  535. },
  536. {
  537. "name": "markbaker/complex",
  538. "version": "3.0.2",
  539. "source": {
  540. "type": "git",
  541. "url": "https://github.com/MarkBaker/PHPComplex.git",
  542. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  543. },
  544. "dist": {
  545. "type": "zip",
  546. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  547. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  548. "shasum": "",
  549. "mirrors": [
  550. {
  551. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  552. "preferred": true
  553. }
  554. ]
  555. },
  556. "require": {
  557. "php": "^7.2 || ^8.0"
  558. },
  559. "require-dev": {
  560. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  561. "phpcompatibility/php-compatibility": "^9.3",
  562. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  563. "squizlabs/php_codesniffer": "^3.7"
  564. },
  565. "type": "library",
  566. "autoload": {
  567. "psr-4": {
  568. "Complex\\": "classes/src/"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Mark Baker",
  578. "email": "mark@lange.demon.co.uk"
  579. }
  580. ],
  581. "description": "PHP Class for working with complex numbers",
  582. "homepage": "https://github.com/MarkBaker/PHPComplex",
  583. "keywords": [
  584. "complex",
  585. "mathematics"
  586. ],
  587. "support": {
  588. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  589. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  590. },
  591. "time": "2022-12-06T16:21:08+00:00"
  592. },
  593. {
  594. "name": "markbaker/matrix",
  595. "version": "3.0.1",
  596. "source": {
  597. "type": "git",
  598. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  599. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  600. },
  601. "dist": {
  602. "type": "zip",
  603. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  604. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  605. "shasum": "",
  606. "mirrors": [
  607. {
  608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  609. "preferred": true
  610. }
  611. ]
  612. },
  613. "require": {
  614. "php": "^7.1 || ^8.0"
  615. },
  616. "require-dev": {
  617. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  618. "phpcompatibility/php-compatibility": "^9.3",
  619. "phpdocumentor/phpdocumentor": "2.*",
  620. "phploc/phploc": "^4.0",
  621. "phpmd/phpmd": "2.*",
  622. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  623. "sebastian/phpcpd": "^4.0",
  624. "squizlabs/php_codesniffer": "^3.7"
  625. },
  626. "type": "library",
  627. "autoload": {
  628. "psr-4": {
  629. "Matrix\\": "classes/src/"
  630. }
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "MIT"
  635. ],
  636. "authors": [
  637. {
  638. "name": "Mark Baker",
  639. "email": "mark@demon-angel.eu"
  640. }
  641. ],
  642. "description": "PHP Class for working with matrices",
  643. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  644. "keywords": [
  645. "mathematics",
  646. "matrix",
  647. "vector"
  648. ],
  649. "support": {
  650. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  651. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  652. },
  653. "time": "2022-12-02T22:17:43+00:00"
  654. },
  655. {
  656. "name": "phpoffice/phpspreadsheet",
  657. "version": "1.29.10",
  658. "source": {
  659. "type": "git",
  660. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  661. "reference": "c80041b1628c4f18030407134fe88303661d4e4e"
  662. },
  663. "dist": {
  664. "type": "zip",
  665. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/c80041b1628c4f18030407134fe88303661d4e4e",
  666. "reference": "c80041b1628c4f18030407134fe88303661d4e4e",
  667. "shasum": "",
  668. "mirrors": [
  669. {
  670. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  671. "preferred": true
  672. }
  673. ]
  674. },
  675. "require": {
  676. "composer/pcre": "^1||^2||^3",
  677. "ext-ctype": "*",
  678. "ext-dom": "*",
  679. "ext-fileinfo": "*",
  680. "ext-gd": "*",
  681. "ext-iconv": "*",
  682. "ext-libxml": "*",
  683. "ext-mbstring": "*",
  684. "ext-simplexml": "*",
  685. "ext-xml": "*",
  686. "ext-xmlreader": "*",
  687. "ext-xmlwriter": "*",
  688. "ext-zip": "*",
  689. "ext-zlib": "*",
  690. "ezyang/htmlpurifier": "^4.15",
  691. "maennchen/zipstream-php": "^2.1 || ^3.0",
  692. "markbaker/complex": "^3.0",
  693. "markbaker/matrix": "^3.0",
  694. "php": "^7.4 || ^8.0",
  695. "psr/http-client": "^1.0",
  696. "psr/http-factory": "^1.0",
  697. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  698. },
  699. "require-dev": {
  700. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  701. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  702. "friendsofphp/php-cs-fixer": "^3.2",
  703. "mitoteam/jpgraph": "^10.3",
  704. "mpdf/mpdf": "^8.1.1",
  705. "phpcompatibility/php-compatibility": "^9.3",
  706. "phpstan/phpstan": "^1.1",
  707. "phpstan/phpstan-phpunit": "^1.0",
  708. "phpunit/phpunit": "^8.5 || ^9.0",
  709. "squizlabs/php_codesniffer": "^3.7",
  710. "tecnickcom/tcpdf": "^6.5"
  711. },
  712. "suggest": {
  713. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  714. "ext-intl": "PHP Internationalization Functions",
  715. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  716. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  717. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  718. },
  719. "type": "library",
  720. "autoload": {
  721. "psr-4": {
  722. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  723. }
  724. },
  725. "notification-url": "https://packagist.org/downloads/",
  726. "license": [
  727. "MIT"
  728. ],
  729. "authors": [
  730. {
  731. "name": "Maarten Balliauw",
  732. "homepage": "https://blog.maartenballiauw.be"
  733. },
  734. {
  735. "name": "Mark Baker",
  736. "homepage": "https://markbakeruk.net"
  737. },
  738. {
  739. "name": "Franck Lefevre",
  740. "homepage": "https://rootslabs.net"
  741. },
  742. {
  743. "name": "Erik Tilt"
  744. },
  745. {
  746. "name": "Adrien Crivelli"
  747. }
  748. ],
  749. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  750. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  751. "keywords": [
  752. "OpenXML",
  753. "excel",
  754. "gnumeric",
  755. "ods",
  756. "php",
  757. "spreadsheet",
  758. "xls",
  759. "xlsx"
  760. ],
  761. "support": {
  762. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  763. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.10"
  764. },
  765. "time": "2025-02-08T02:56:14+00:00"
  766. },
  767. {
  768. "name": "psr/cache",
  769. "version": "1.0.1",
  770. "source": {
  771. "type": "git",
  772. "url": "https://github.com/php-fig/cache.git",
  773. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  774. },
  775. "dist": {
  776. "type": "zip",
  777. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  778. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  779. "shasum": "",
  780. "mirrors": [
  781. {
  782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  783. "preferred": true
  784. }
  785. ]
  786. },
  787. "require": {
  788. "php": ">=5.3.0"
  789. },
  790. "type": "library",
  791. "extra": {
  792. "branch-alias": {
  793. "dev-master": "1.0.x-dev"
  794. }
  795. },
  796. "autoload": {
  797. "psr-4": {
  798. "Psr\\Cache\\": "src/"
  799. }
  800. },
  801. "notification-url": "https://packagist.org/downloads/",
  802. "license": [
  803. "MIT"
  804. ],
  805. "authors": [
  806. {
  807. "name": "PHP-FIG",
  808. "homepage": "http://www.php-fig.org/"
  809. }
  810. ],
  811. "description": "Common interface for caching libraries",
  812. "keywords": [
  813. "cache",
  814. "psr",
  815. "psr-6"
  816. ],
  817. "support": {
  818. "source": "https://github.com/php-fig/cache/tree/master"
  819. },
  820. "time": "2016-08-06T20:24:11+00:00"
  821. },
  822. {
  823. "name": "psr/container",
  824. "version": "2.0.2",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/php-fig/container.git",
  828. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  833. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  834. "shasum": "",
  835. "mirrors": [
  836. {
  837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  838. "preferred": true
  839. }
  840. ]
  841. },
  842. "require": {
  843. "php": ">=7.4.0"
  844. },
  845. "type": "library",
  846. "extra": {
  847. "branch-alias": {
  848. "dev-master": "2.0.x-dev"
  849. }
  850. },
  851. "autoload": {
  852. "psr-4": {
  853. "Psr\\Container\\": "src/"
  854. }
  855. },
  856. "notification-url": "https://packagist.org/downloads/",
  857. "license": [
  858. "MIT"
  859. ],
  860. "authors": [
  861. {
  862. "name": "PHP-FIG",
  863. "homepage": "https://www.php-fig.org/"
  864. }
  865. ],
  866. "description": "Common Container Interface (PHP FIG PSR-11)",
  867. "homepage": "https://github.com/php-fig/container",
  868. "keywords": [
  869. "PSR-11",
  870. "container",
  871. "container-interface",
  872. "container-interop",
  873. "psr"
  874. ],
  875. "support": {
  876. "issues": "https://github.com/php-fig/container/issues",
  877. "source": "https://github.com/php-fig/container/tree/2.0.2"
  878. },
  879. "time": "2021-11-05T16:47:00+00:00"
  880. },
  881. {
  882. "name": "psr/http-client",
  883. "version": "1.0.3",
  884. "source": {
  885. "type": "git",
  886. "url": "https://github.com/php-fig/http-client.git",
  887. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  888. },
  889. "dist": {
  890. "type": "zip",
  891. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  892. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  893. "shasum": "",
  894. "mirrors": [
  895. {
  896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  897. "preferred": true
  898. }
  899. ]
  900. },
  901. "require": {
  902. "php": "^7.0 || ^8.0",
  903. "psr/http-message": "^1.0 || ^2.0"
  904. },
  905. "type": "library",
  906. "extra": {
  907. "branch-alias": {
  908. "dev-master": "1.0.x-dev"
  909. }
  910. },
  911. "autoload": {
  912. "psr-4": {
  913. "Psr\\Http\\Client\\": "src/"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "PHP-FIG",
  923. "homepage": "https://www.php-fig.org/"
  924. }
  925. ],
  926. "description": "Common interface for HTTP clients",
  927. "homepage": "https://github.com/php-fig/http-client",
  928. "keywords": [
  929. "http",
  930. "http-client",
  931. "psr",
  932. "psr-18"
  933. ],
  934. "support": {
  935. "source": "https://github.com/php-fig/http-client"
  936. },
  937. "time": "2023-09-23T14:17:50+00:00"
  938. },
  939. {
  940. "name": "psr/http-factory",
  941. "version": "1.0.2",
  942. "source": {
  943. "type": "git",
  944. "url": "https://github.com/php-fig/http-factory.git",
  945. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  946. },
  947. "dist": {
  948. "type": "zip",
  949. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  950. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  951. "shasum": "",
  952. "mirrors": [
  953. {
  954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  955. "preferred": true
  956. }
  957. ]
  958. },
  959. "require": {
  960. "php": ">=7.0.0",
  961. "psr/http-message": "^1.0 || ^2.0"
  962. },
  963. "type": "library",
  964. "extra": {
  965. "branch-alias": {
  966. "dev-master": "1.0.x-dev"
  967. }
  968. },
  969. "autoload": {
  970. "psr-4": {
  971. "Psr\\Http\\Message\\": "src/"
  972. }
  973. },
  974. "notification-url": "https://packagist.org/downloads/",
  975. "license": [
  976. "MIT"
  977. ],
  978. "authors": [
  979. {
  980. "name": "PHP-FIG",
  981. "homepage": "https://www.php-fig.org/"
  982. }
  983. ],
  984. "description": "Common interfaces for PSR-7 HTTP message factories",
  985. "keywords": [
  986. "factory",
  987. "http",
  988. "message",
  989. "psr",
  990. "psr-17",
  991. "psr-7",
  992. "request",
  993. "response"
  994. ],
  995. "support": {
  996. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  997. },
  998. "time": "2023-04-10T20:10:41+00:00"
  999. },
  1000. {
  1001. "name": "psr/http-message",
  1002. "version": "1.1",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/php-fig/http-message.git",
  1006. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1011. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1012. "shasum": "",
  1013. "mirrors": [
  1014. {
  1015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1016. "preferred": true
  1017. }
  1018. ]
  1019. },
  1020. "require": {
  1021. "php": "^7.2 || ^8.0"
  1022. },
  1023. "type": "library",
  1024. "extra": {
  1025. "branch-alias": {
  1026. "dev-master": "1.1.x-dev"
  1027. }
  1028. },
  1029. "autoload": {
  1030. "psr-4": {
  1031. "Psr\\Http\\Message\\": "src/"
  1032. }
  1033. },
  1034. "notification-url": "https://packagist.org/downloads/",
  1035. "license": [
  1036. "MIT"
  1037. ],
  1038. "authors": [
  1039. {
  1040. "name": "PHP-FIG",
  1041. "homepage": "http://www.php-fig.org/"
  1042. }
  1043. ],
  1044. "description": "Common interface for HTTP messages",
  1045. "homepage": "https://github.com/php-fig/http-message",
  1046. "keywords": [
  1047. "http",
  1048. "http-message",
  1049. "psr",
  1050. "psr-7",
  1051. "request",
  1052. "response"
  1053. ],
  1054. "support": {
  1055. "source": "https://github.com/php-fig/http-message/tree/1.1"
  1056. },
  1057. "time": "2023-04-04T09:50:52+00:00"
  1058. },
  1059. {
  1060. "name": "psr/log",
  1061. "version": "3.0.1",
  1062. "source": {
  1063. "type": "git",
  1064. "url": "https://github.com/php-fig/log.git",
  1065. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  1066. },
  1067. "dist": {
  1068. "type": "zip",
  1069. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  1070. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  1071. "shasum": "",
  1072. "mirrors": [
  1073. {
  1074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1075. "preferred": true
  1076. }
  1077. ]
  1078. },
  1079. "require": {
  1080. "php": ">=8.0.0"
  1081. },
  1082. "type": "library",
  1083. "extra": {
  1084. "branch-alias": {
  1085. "dev-master": "3.x-dev"
  1086. }
  1087. },
  1088. "autoload": {
  1089. "psr-4": {
  1090. "Psr\\Log\\": "src"
  1091. }
  1092. },
  1093. "notification-url": "https://packagist.org/downloads/",
  1094. "license": [
  1095. "MIT"
  1096. ],
  1097. "authors": [
  1098. {
  1099. "name": "PHP-FIG",
  1100. "homepage": "https://www.php-fig.org/"
  1101. }
  1102. ],
  1103. "description": "Common interface for logging libraries",
  1104. "homepage": "https://github.com/php-fig/log",
  1105. "keywords": [
  1106. "log",
  1107. "psr",
  1108. "psr-3"
  1109. ],
  1110. "support": {
  1111. "source": "https://github.com/php-fig/log/tree/3.0.1"
  1112. },
  1113. "time": "2024-08-21T13:31:24+00:00"
  1114. },
  1115. {
  1116. "name": "psr/simple-cache",
  1117. "version": "3.0.0",
  1118. "source": {
  1119. "type": "git",
  1120. "url": "https://github.com/php-fig/simple-cache.git",
  1121. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  1122. },
  1123. "dist": {
  1124. "type": "zip",
  1125. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1126. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  1127. "shasum": "",
  1128. "mirrors": [
  1129. {
  1130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1131. "preferred": true
  1132. }
  1133. ]
  1134. },
  1135. "require": {
  1136. "php": ">=8.0.0"
  1137. },
  1138. "type": "library",
  1139. "extra": {
  1140. "branch-alias": {
  1141. "dev-master": "3.0.x-dev"
  1142. }
  1143. },
  1144. "autoload": {
  1145. "psr-4": {
  1146. "Psr\\SimpleCache\\": "src/"
  1147. }
  1148. },
  1149. "notification-url": "https://packagist.org/downloads/",
  1150. "license": [
  1151. "MIT"
  1152. ],
  1153. "authors": [
  1154. {
  1155. "name": "PHP-FIG",
  1156. "homepage": "https://www.php-fig.org/"
  1157. }
  1158. ],
  1159. "description": "Common interfaces for simple caching",
  1160. "keywords": [
  1161. "cache",
  1162. "caching",
  1163. "psr",
  1164. "psr-16",
  1165. "simple-cache"
  1166. ],
  1167. "support": {
  1168. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  1169. },
  1170. "time": "2021-10-29T13:26:27+00:00"
  1171. },
  1172. {
  1173. "name": "symfony/deprecation-contracts",
  1174. "version": "v3.5.1",
  1175. "source": {
  1176. "type": "git",
  1177. "url": "https://github.com/symfony/deprecation-contracts.git",
  1178. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  1179. },
  1180. "dist": {
  1181. "type": "zip",
  1182. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  1183. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  1184. "shasum": "",
  1185. "mirrors": [
  1186. {
  1187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1188. "preferred": true
  1189. }
  1190. ]
  1191. },
  1192. "require": {
  1193. "php": ">=8.1"
  1194. },
  1195. "type": "library",
  1196. "extra": {
  1197. "thanks": {
  1198. "url": "https://github.com/symfony/contracts",
  1199. "name": "symfony/contracts"
  1200. },
  1201. "branch-alias": {
  1202. "dev-main": "3.5-dev"
  1203. }
  1204. },
  1205. "autoload": {
  1206. "files": [
  1207. "function.php"
  1208. ]
  1209. },
  1210. "notification-url": "https://packagist.org/downloads/",
  1211. "license": [
  1212. "MIT"
  1213. ],
  1214. "authors": [
  1215. {
  1216. "name": "Nicolas Grekas",
  1217. "email": "p@tchwork.com"
  1218. },
  1219. {
  1220. "name": "Symfony Community",
  1221. "homepage": "https://symfony.com/contributors"
  1222. }
  1223. ],
  1224. "description": "A generic function and convention to trigger deprecation notices",
  1225. "homepage": "https://symfony.com",
  1226. "support": {
  1227. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  1228. },
  1229. "funding": [
  1230. {
  1231. "url": "https://symfony.com/sponsor",
  1232. "type": "custom"
  1233. },
  1234. {
  1235. "url": "https://github.com/fabpot",
  1236. "type": "github"
  1237. },
  1238. {
  1239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1240. "type": "tidelift"
  1241. }
  1242. ],
  1243. "time": "2024-09-25T14:20:29+00:00"
  1244. },
  1245. {
  1246. "name": "symfony/http-foundation",
  1247. "version": "v6.4.21",
  1248. "source": {
  1249. "type": "git",
  1250. "url": "https://github.com/symfony/http-foundation.git",
  1251. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
  1252. },
  1253. "dist": {
  1254. "type": "zip",
  1255. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
  1256. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
  1257. "shasum": "",
  1258. "mirrors": [
  1259. {
  1260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1261. "preferred": true
  1262. }
  1263. ]
  1264. },
  1265. "require": {
  1266. "php": ">=8.1",
  1267. "symfony/deprecation-contracts": "^2.5|^3",
  1268. "symfony/polyfill-mbstring": "~1.1",
  1269. "symfony/polyfill-php83": "^1.27"
  1270. },
  1271. "conflict": {
  1272. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  1273. },
  1274. "require-dev": {
  1275. "doctrine/dbal": "^2.13.1|^3|^4",
  1276. "predis/predis": "^1.1|^2.0",
  1277. "symfony/cache": "^6.4.12|^7.1.5",
  1278. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  1279. "symfony/expression-language": "^5.4|^6.0|^7.0",
  1280. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  1281. "symfony/mime": "^5.4|^6.0|^7.0",
  1282. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  1283. },
  1284. "type": "library",
  1285. "autoload": {
  1286. "psr-4": {
  1287. "Symfony\\Component\\HttpFoundation\\": ""
  1288. },
  1289. "exclude-from-classmap": [
  1290. "/Tests/"
  1291. ]
  1292. },
  1293. "notification-url": "https://packagist.org/downloads/",
  1294. "license": [
  1295. "MIT"
  1296. ],
  1297. "authors": [
  1298. {
  1299. "name": "Fabien Potencier",
  1300. "email": "fabien@symfony.com"
  1301. },
  1302. {
  1303. "name": "Symfony Community",
  1304. "homepage": "https://symfony.com/contributors"
  1305. }
  1306. ],
  1307. "description": "Defines an object-oriented layer for the HTTP specification",
  1308. "homepage": "https://symfony.com",
  1309. "support": {
  1310. "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
  1311. },
  1312. "funding": [
  1313. {
  1314. "url": "https://symfony.com/sponsor",
  1315. "type": "custom"
  1316. },
  1317. {
  1318. "url": "https://github.com/fabpot",
  1319. "type": "github"
  1320. },
  1321. {
  1322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1323. "type": "tidelift"
  1324. }
  1325. ],
  1326. "time": "2025-04-27T13:27:38+00:00"
  1327. },
  1328. {
  1329. "name": "symfony/polyfill-mbstring",
  1330. "version": "v1.31.0",
  1331. "source": {
  1332. "type": "git",
  1333. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1334. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  1335. },
  1336. "dist": {
  1337. "type": "zip",
  1338. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  1339. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  1340. "shasum": "",
  1341. "mirrors": [
  1342. {
  1343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1344. "preferred": true
  1345. }
  1346. ]
  1347. },
  1348. "require": {
  1349. "php": ">=7.2"
  1350. },
  1351. "provide": {
  1352. "ext-mbstring": "*"
  1353. },
  1354. "suggest": {
  1355. "ext-mbstring": "For best performance"
  1356. },
  1357. "type": "library",
  1358. "extra": {
  1359. "thanks": {
  1360. "name": "symfony/polyfill",
  1361. "url": "https://github.com/symfony/polyfill"
  1362. }
  1363. },
  1364. "autoload": {
  1365. "files": [
  1366. "bootstrap.php"
  1367. ],
  1368. "psr-4": {
  1369. "Symfony\\Polyfill\\Mbstring\\": ""
  1370. }
  1371. },
  1372. "notification-url": "https://packagist.org/downloads/",
  1373. "license": [
  1374. "MIT"
  1375. ],
  1376. "authors": [
  1377. {
  1378. "name": "Nicolas Grekas",
  1379. "email": "p@tchwork.com"
  1380. },
  1381. {
  1382. "name": "Symfony Community",
  1383. "homepage": "https://symfony.com/contributors"
  1384. }
  1385. ],
  1386. "description": "Symfony polyfill for the Mbstring extension",
  1387. "homepage": "https://symfony.com",
  1388. "keywords": [
  1389. "compatibility",
  1390. "mbstring",
  1391. "polyfill",
  1392. "portable",
  1393. "shim"
  1394. ],
  1395. "support": {
  1396. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  1397. },
  1398. "funding": [
  1399. {
  1400. "url": "https://symfony.com/sponsor",
  1401. "type": "custom"
  1402. },
  1403. {
  1404. "url": "https://github.com/fabpot",
  1405. "type": "github"
  1406. },
  1407. {
  1408. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1409. "type": "tidelift"
  1410. }
  1411. ],
  1412. "time": "2024-09-09T11:45:10+00:00"
  1413. },
  1414. {
  1415. "name": "symfony/polyfill-php83",
  1416. "version": "v1.31.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/symfony/polyfill-php83.git",
  1420. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  1425. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  1426. "shasum": "",
  1427. "mirrors": [
  1428. {
  1429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1430. "preferred": true
  1431. }
  1432. ]
  1433. },
  1434. "require": {
  1435. "php": ">=7.2"
  1436. },
  1437. "type": "library",
  1438. "extra": {
  1439. "thanks": {
  1440. "url": "https://github.com/symfony/polyfill",
  1441. "name": "symfony/polyfill"
  1442. }
  1443. },
  1444. "autoload": {
  1445. "files": [
  1446. "bootstrap.php"
  1447. ],
  1448. "psr-4": {
  1449. "Symfony\\Polyfill\\Php83\\": ""
  1450. },
  1451. "classmap": [
  1452. "Resources/stubs"
  1453. ]
  1454. },
  1455. "notification-url": "https://packagist.org/downloads/",
  1456. "license": [
  1457. "MIT"
  1458. ],
  1459. "authors": [
  1460. {
  1461. "name": "Nicolas Grekas",
  1462. "email": "p@tchwork.com"
  1463. },
  1464. {
  1465. "name": "Symfony Community",
  1466. "homepage": "https://symfony.com/contributors"
  1467. }
  1468. ],
  1469. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  1470. "homepage": "https://symfony.com",
  1471. "keywords": [
  1472. "compatibility",
  1473. "polyfill",
  1474. "portable",
  1475. "shim"
  1476. ],
  1477. "support": {
  1478. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  1479. },
  1480. "funding": [
  1481. {
  1482. "url": "https://symfony.com/sponsor",
  1483. "type": "custom"
  1484. },
  1485. {
  1486. "url": "https://github.com/fabpot",
  1487. "type": "github"
  1488. },
  1489. {
  1490. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1491. "type": "tidelift"
  1492. }
  1493. ],
  1494. "time": "2024-09-09T11:45:10+00:00"
  1495. },
  1496. {
  1497. "name": "topthink/framework",
  1498. "version": "v8.1.2",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/top-think/framework.git",
  1502. "reference": "8faec5c9b7a7f2a66ca3140a57e81bd6cd37567c"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://api.github.com/repos/top-think/framework/zipball/8faec5c9b7a7f2a66ca3140a57e81bd6cd37567c",
  1507. "reference": "8faec5c9b7a7f2a66ca3140a57e81bd6cd37567c",
  1508. "shasum": "",
  1509. "mirrors": [
  1510. {
  1511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1512. "preferred": true
  1513. }
  1514. ]
  1515. },
  1516. "require": {
  1517. "ext-ctype": "*",
  1518. "ext-json": "*",
  1519. "ext-mbstring": "*",
  1520. "php": ">=8.0.0",
  1521. "psr/http-message": "^1.0",
  1522. "psr/log": "^1.0|^2.0|^3.0",
  1523. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1524. "topthink/think-container": "^3.0",
  1525. "topthink/think-helper": "^3.1",
  1526. "topthink/think-orm": "^3.0|^4.0",
  1527. "topthink/think-validate": "^3.0"
  1528. },
  1529. "require-dev": {
  1530. "guzzlehttp/psr7": "^2.1.0",
  1531. "mikey179/vfsstream": "^1.6",
  1532. "mockery/mockery": "^1.2",
  1533. "phpunit/phpunit": "^9.5"
  1534. },
  1535. "type": "library",
  1536. "autoload": {
  1537. "files": [],
  1538. "psr-4": {
  1539. "think\\": "src/think/"
  1540. }
  1541. },
  1542. "notification-url": "https://packagist.org/downloads/",
  1543. "license": [
  1544. "Apache-2.0"
  1545. ],
  1546. "authors": [
  1547. {
  1548. "name": "liu21st",
  1549. "email": "liu21st@gmail.com"
  1550. },
  1551. {
  1552. "name": "yunwuxin",
  1553. "email": "448901948@qq.com"
  1554. }
  1555. ],
  1556. "description": "The ThinkPHP Framework.",
  1557. "homepage": "http://thinkphp.cn/",
  1558. "keywords": [
  1559. "framework",
  1560. "orm",
  1561. "thinkphp"
  1562. ],
  1563. "support": {
  1564. "issues": "https://github.com/top-think/framework/issues",
  1565. "source": "https://github.com/top-think/framework/tree/v8.1.2"
  1566. },
  1567. "time": "2025-01-14T08:04:03+00:00"
  1568. },
  1569. {
  1570. "name": "topthink/think-annotation",
  1571. "version": "v2.0.4",
  1572. "source": {
  1573. "type": "git",
  1574. "url": "https://github.com/top-think/think-annotation.git",
  1575. "reference": "293dae6f2d7bdb6fed1a89babe176f6059738ccf"
  1576. },
  1577. "dist": {
  1578. "type": "zip",
  1579. "url": "https://api.github.com/repos/top-think/think-annotation/zipball/293dae6f2d7bdb6fed1a89babe176f6059738ccf",
  1580. "reference": "293dae6f2d7bdb6fed1a89babe176f6059738ccf",
  1581. "shasum": "",
  1582. "mirrors": [
  1583. {
  1584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1585. "preferred": true
  1586. }
  1587. ]
  1588. },
  1589. "require": {
  1590. "ergebnis/classy": "^1.4",
  1591. "php": "^8.0",
  1592. "topthink/framework": "^6.0 || ^8.0"
  1593. },
  1594. "require-dev": {
  1595. "topthink/think-ide-helper": "^1.0"
  1596. },
  1597. "type": "library",
  1598. "extra": {
  1599. "think": {
  1600. "config": {
  1601. "annotation": "src/config.php"
  1602. },
  1603. "services": [
  1604. "think\\annotation\\Service"
  1605. ]
  1606. }
  1607. },
  1608. "autoload": {
  1609. "psr-4": {
  1610. "think\\annotation\\": "src"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "Apache-2.0"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "yunwuxin",
  1620. "email": "448901948@qq.com"
  1621. }
  1622. ],
  1623. "description": "Annotation For ThinkPHP6",
  1624. "support": {
  1625. "issues": "https://github.com/top-think/think-annotation/issues",
  1626. "source": "https://github.com/top-think/think-annotation/tree/v2.0.4"
  1627. },
  1628. "time": "2023-07-01T10:56:40+00:00"
  1629. },
  1630. {
  1631. "name": "topthink/think-captcha",
  1632. "version": "v3.0.11",
  1633. "source": {
  1634. "type": "git",
  1635. "url": "https://github.com/top-think/think-captcha.git",
  1636. "reference": "4f24f560a31011329e3d144732e5370d7676b3fb"
  1637. },
  1638. "dist": {
  1639. "type": "zip",
  1640. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/4f24f560a31011329e3d144732e5370d7676b3fb",
  1641. "reference": "4f24f560a31011329e3d144732e5370d7676b3fb",
  1642. "shasum": "",
  1643. "mirrors": [
  1644. {
  1645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1646. "preferred": true
  1647. }
  1648. ]
  1649. },
  1650. "require": {
  1651. "topthink/framework": "^6.0|^8.0"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "think": {
  1656. "config": {
  1657. "captcha": "src/config.php"
  1658. },
  1659. "services": [
  1660. "think\\captcha\\CaptchaService"
  1661. ]
  1662. }
  1663. },
  1664. "autoload": {
  1665. "files": [
  1666. "src/helper.php"
  1667. ],
  1668. "psr-4": {
  1669. "think\\captcha\\": "src/"
  1670. }
  1671. },
  1672. "notification-url": "https://packagist.org/downloads/",
  1673. "license": [
  1674. "Apache-2.0"
  1675. ],
  1676. "authors": [
  1677. {
  1678. "name": "yunwuxin",
  1679. "email": "448901948@qq.com"
  1680. }
  1681. ],
  1682. "description": "captcha package for thinkphp",
  1683. "support": {
  1684. "issues": "https://github.com/top-think/think-captcha/issues",
  1685. "source": "https://github.com/top-think/think-captcha/tree/v3.0.11"
  1686. },
  1687. "time": "2024-11-22T12:59:35+00:00"
  1688. },
  1689. {
  1690. "name": "topthink/think-container",
  1691. "version": "v3.0.1",
  1692. "source": {
  1693. "type": "git",
  1694. "url": "https://github.com/top-think/think-container.git",
  1695. "reference": "a24d442a02fb2a4716de232ff1a4f006c178a370"
  1696. },
  1697. "dist": {
  1698. "type": "zip",
  1699. "url": "https://api.github.com/repos/top-think/think-container/zipball/a24d442a02fb2a4716de232ff1a4f006c178a370",
  1700. "reference": "a24d442a02fb2a4716de232ff1a4f006c178a370",
  1701. "shasum": "",
  1702. "mirrors": [
  1703. {
  1704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1705. "preferred": true
  1706. }
  1707. ]
  1708. },
  1709. "require": {
  1710. "php": ">=8.0",
  1711. "psr/container": "^2.0",
  1712. "topthink/think-helper": "^3.1"
  1713. },
  1714. "require-dev": {
  1715. "phpunit/phpunit": "^9.5"
  1716. },
  1717. "type": "library",
  1718. "autoload": {
  1719. "files": [],
  1720. "psr-4": {
  1721. "think\\": "src"
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "Apache-2.0"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "liu21st",
  1731. "email": "liu21st@gmail.com"
  1732. }
  1733. ],
  1734. "description": "PHP Container & Facade Manager",
  1735. "support": {
  1736. "issues": "https://github.com/top-think/think-container/issues",
  1737. "source": "https://github.com/top-think/think-container/tree/v3.0.1"
  1738. },
  1739. "time": "2025-01-07T08:19:23+00:00"
  1740. },
  1741. {
  1742. "name": "topthink/think-filesystem",
  1743. "version": "v2.0.3",
  1744. "source": {
  1745. "type": "git",
  1746. "url": "https://github.com/top-think/think-filesystem.git",
  1747. "reference": "e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d"
  1748. },
  1749. "dist": {
  1750. "type": "zip",
  1751. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d",
  1752. "reference": "e8e51adb9f3a3f3aac2aa3ef73b7b439100f777d",
  1753. "shasum": "",
  1754. "mirrors": [
  1755. {
  1756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1757. "preferred": true
  1758. }
  1759. ]
  1760. },
  1761. "require": {
  1762. "league/flysystem": "^1.1.4",
  1763. "league/flysystem-cached-adapter": "^1.0",
  1764. "php": ">=7.2.5",
  1765. "topthink/framework": "^6.1|^8.0"
  1766. },
  1767. "require-dev": {
  1768. "mikey179/vfsstream": "^1.6",
  1769. "mockery/mockery": "^1.2",
  1770. "phpunit/phpunit": "^8.0"
  1771. },
  1772. "type": "library",
  1773. "autoload": {
  1774. "psr-4": {
  1775. "think\\": "src"
  1776. }
  1777. },
  1778. "notification-url": "https://packagist.org/downloads/",
  1779. "license": [
  1780. "Apache-2.0"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "yunwuxin",
  1785. "email": "448901948@qq.com"
  1786. }
  1787. ],
  1788. "description": "The ThinkPHP6.1 Filesystem Package",
  1789. "support": {
  1790. "issues": "https://github.com/top-think/think-filesystem/issues",
  1791. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.3"
  1792. },
  1793. "time": "2024-10-16T03:37:24+00:00"
  1794. },
  1795. {
  1796. "name": "topthink/think-helper",
  1797. "version": "v3.1.11",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/top-think/think-helper.git",
  1801. "reference": "1d6ada9b9f3130046bf6922fe1bd159c8d88a33c"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/top-think/think-helper/zipball/1d6ada9b9f3130046bf6922fe1bd159c8d88a33c",
  1806. "reference": "1d6ada9b9f3130046bf6922fe1bd159c8d88a33c",
  1807. "shasum": "",
  1808. "mirrors": [
  1809. {
  1810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1811. "preferred": true
  1812. }
  1813. ]
  1814. },
  1815. "require": {
  1816. "php": ">=7.1.0"
  1817. },
  1818. "require-dev": {
  1819. "phpunit/phpunit": "^9.5"
  1820. },
  1821. "type": "library",
  1822. "autoload": {
  1823. "files": [
  1824. "src/helper.php"
  1825. ],
  1826. "psr-4": {
  1827. "think\\": "src"
  1828. }
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "Apache-2.0"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "yunwuxin",
  1837. "email": "448901948@qq.com"
  1838. }
  1839. ],
  1840. "description": "The ThinkPHP6 Helper Package",
  1841. "support": {
  1842. "issues": "https://github.com/top-think/think-helper/issues",
  1843. "source": "https://github.com/top-think/think-helper/tree/v3.1.11"
  1844. },
  1845. "time": "2025-04-07T06:55:59+00:00"
  1846. },
  1847. {
  1848. "name": "topthink/think-multi-app",
  1849. "version": "v1.1.1",
  1850. "source": {
  1851. "type": "git",
  1852. "url": "https://github.com/top-think/think-multi-app.git",
  1853. "reference": "f93c604d5cfac2b613756273224ee2f88e457b88"
  1854. },
  1855. "dist": {
  1856. "type": "zip",
  1857. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/f93c604d5cfac2b613756273224ee2f88e457b88",
  1858. "reference": "f93c604d5cfac2b613756273224ee2f88e457b88",
  1859. "shasum": "",
  1860. "mirrors": [
  1861. {
  1862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1863. "preferred": true
  1864. }
  1865. ]
  1866. },
  1867. "require": {
  1868. "php": ">=7.1.0",
  1869. "topthink/framework": "^6.0|^8.0"
  1870. },
  1871. "type": "library",
  1872. "extra": {
  1873. "think": {
  1874. "services": [
  1875. "think\\app\\Service"
  1876. ]
  1877. }
  1878. },
  1879. "autoload": {
  1880. "psr-4": {
  1881. "think\\app\\": "src"
  1882. }
  1883. },
  1884. "notification-url": "https://packagist.org/downloads/",
  1885. "license": [
  1886. "Apache-2.0"
  1887. ],
  1888. "authors": [
  1889. {
  1890. "name": "liu21st",
  1891. "email": "liu21st@gmail.com"
  1892. }
  1893. ],
  1894. "description": "thinkphp multi app support",
  1895. "support": {
  1896. "issues": "https://github.com/top-think/think-multi-app/issues",
  1897. "source": "https://github.com/top-think/think-multi-app/tree/v1.1.1"
  1898. },
  1899. "time": "2024-11-25T08:52:44+00:00"
  1900. },
  1901. {
  1902. "name": "topthink/think-orm",
  1903. "version": "v3.0.34",
  1904. "source": {
  1905. "type": "git",
  1906. "url": "https://github.com/top-think/think-orm.git",
  1907. "reference": "715e55da149fe32a12d68ef10e5b00e70bd3dbec"
  1908. },
  1909. "dist": {
  1910. "type": "zip",
  1911. "url": "https://api.github.com/repos/top-think/think-orm/zipball/715e55da149fe32a12d68ef10e5b00e70bd3dbec",
  1912. "reference": "715e55da149fe32a12d68ef10e5b00e70bd3dbec",
  1913. "shasum": "",
  1914. "mirrors": [
  1915. {
  1916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1917. "preferred": true
  1918. }
  1919. ]
  1920. },
  1921. "require": {
  1922. "ext-json": "*",
  1923. "ext-pdo": "*",
  1924. "php": ">=8.0.0",
  1925. "psr/log": ">=1.0",
  1926. "psr/simple-cache": ">=1.0",
  1927. "topthink/think-helper": "^3.1"
  1928. },
  1929. "require-dev": {
  1930. "phpunit/phpunit": "^9.6|^10"
  1931. },
  1932. "suggest": {
  1933. "ext-mongodb": "provide mongodb support"
  1934. },
  1935. "type": "library",
  1936. "autoload": {
  1937. "files": [
  1938. "stubs/load_stubs.php"
  1939. ],
  1940. "psr-4": {
  1941. "think\\": "src"
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "Apache-2.0"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "liu21st",
  1951. "email": "liu21st@gmail.com"
  1952. }
  1953. ],
  1954. "description": "the PHP Database&ORM Framework",
  1955. "keywords": [
  1956. "database",
  1957. "orm"
  1958. ],
  1959. "support": {
  1960. "issues": "https://github.com/top-think/think-orm/issues",
  1961. "source": "https://github.com/top-think/think-orm/tree/v3.0.34"
  1962. },
  1963. "time": "2025-01-14T06:03:33+00:00"
  1964. },
  1965. {
  1966. "name": "topthink/think-template",
  1967. "version": "v3.0.2",
  1968. "source": {
  1969. "type": "git",
  1970. "url": "https://github.com/top-think/think-template.git",
  1971. "reference": "0b88bd449f0f7626dd75b05f557c8bc208c08b0c"
  1972. },
  1973. "dist": {
  1974. "type": "zip",
  1975. "url": "https://api.github.com/repos/top-think/think-template/zipball/0b88bd449f0f7626dd75b05f557c8bc208c08b0c",
  1976. "reference": "0b88bd449f0f7626dd75b05f557c8bc208c08b0c",
  1977. "shasum": "",
  1978. "mirrors": [
  1979. {
  1980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1981. "preferred": true
  1982. }
  1983. ]
  1984. },
  1985. "require": {
  1986. "php": ">=8.0.0",
  1987. "psr/simple-cache": ">=1.0"
  1988. },
  1989. "type": "library",
  1990. "autoload": {
  1991. "psr-4": {
  1992. "think\\": "src"
  1993. }
  1994. },
  1995. "notification-url": "https://packagist.org/downloads/",
  1996. "license": [
  1997. "Apache-2.0"
  1998. ],
  1999. "authors": [
  2000. {
  2001. "name": "liu21st",
  2002. "email": "liu21st@gmail.com"
  2003. }
  2004. ],
  2005. "description": "the php template engine",
  2006. "support": {
  2007. "issues": "https://github.com/top-think/think-template/issues",
  2008. "source": "https://github.com/top-think/think-template/tree/v3.0.2"
  2009. },
  2010. "time": "2024-10-16T03:41:06+00:00"
  2011. },
  2012. {
  2013. "name": "topthink/think-validate",
  2014. "version": "v3.0.7",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://github.com/top-think/think-validate.git",
  2018. "reference": "85063f6d4ef8ed122f17a36179dc3e0949b30988"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://api.github.com/repos/top-think/think-validate/zipball/85063f6d4ef8ed122f17a36179dc3e0949b30988",
  2023. "reference": "85063f6d4ef8ed122f17a36179dc3e0949b30988",
  2024. "shasum": "",
  2025. "mirrors": [
  2026. {
  2027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2028. "preferred": true
  2029. }
  2030. ]
  2031. },
  2032. "require": {
  2033. "php": ">=8.0",
  2034. "topthink/think-container": ">=3.0"
  2035. },
  2036. "type": "library",
  2037. "autoload": {
  2038. "files": [
  2039. "src/helper.php"
  2040. ],
  2041. "psr-4": {
  2042. "think\\": "src"
  2043. }
  2044. },
  2045. "notification-url": "https://packagist.org/downloads/",
  2046. "license": [
  2047. "Apache-2.0"
  2048. ],
  2049. "authors": [
  2050. {
  2051. "name": "liu21st",
  2052. "email": "liu21st@gmail.com"
  2053. }
  2054. ],
  2055. "description": "think validate",
  2056. "support": {
  2057. "issues": "https://github.com/top-think/think-validate/issues",
  2058. "source": "https://github.com/top-think/think-validate/tree/v3.0.7"
  2059. },
  2060. "time": "2025-06-11T05:51:40+00:00"
  2061. },
  2062. {
  2063. "name": "topthink/think-view",
  2064. "version": "v2.0.0",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/top-think/think-view.git",
  2068. "reference": "d2a076011c96d2edd8016703a827fb54b2683c62"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/top-think/think-view/zipball/d2a076011c96d2edd8016703a827fb54b2683c62",
  2073. "reference": "d2a076011c96d2edd8016703a827fb54b2683c62",
  2074. "shasum": "",
  2075. "mirrors": [
  2076. {
  2077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2078. "preferred": true
  2079. }
  2080. ]
  2081. },
  2082. "require": {
  2083. "php": ">=8.0.0",
  2084. "topthink/think-template": "^3.0"
  2085. },
  2086. "type": "library",
  2087. "autoload": {
  2088. "psr-4": {
  2089. "think\\view\\driver\\": "src"
  2090. }
  2091. },
  2092. "notification-url": "https://packagist.org/downloads/",
  2093. "license": [
  2094. "Apache-2.0"
  2095. ],
  2096. "authors": [
  2097. {
  2098. "name": "liu21st",
  2099. "email": "liu21st@gmail.com"
  2100. }
  2101. ],
  2102. "description": "thinkphp template driver",
  2103. "support": {
  2104. "issues": "https://github.com/top-think/think-view/issues",
  2105. "source": "https://github.com/top-think/think-view/tree/v2.0.0"
  2106. },
  2107. "time": "2023-02-25T12:18:09+00:00"
  2108. }
  2109. ],
  2110. "packages-dev": [
  2111. {
  2112. "name": "symfony/var-dumper",
  2113. "version": "v7.2.6",
  2114. "source": {
  2115. "type": "git",
  2116. "url": "https://github.com/symfony/var-dumper.git",
  2117. "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb"
  2118. },
  2119. "dist": {
  2120. "type": "zip",
  2121. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9c46038cd4ed68952166cf7001b54eb539184ccb",
  2122. "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb",
  2123. "shasum": "",
  2124. "mirrors": [
  2125. {
  2126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2127. "preferred": true
  2128. }
  2129. ]
  2130. },
  2131. "require": {
  2132. "php": ">=8.2",
  2133. "symfony/polyfill-mbstring": "~1.0"
  2134. },
  2135. "conflict": {
  2136. "symfony/console": "<6.4"
  2137. },
  2138. "require-dev": {
  2139. "ext-iconv": "*",
  2140. "symfony/console": "^6.4|^7.0",
  2141. "symfony/http-kernel": "^6.4|^7.0",
  2142. "symfony/process": "^6.4|^7.0",
  2143. "symfony/uid": "^6.4|^7.0",
  2144. "twig/twig": "^3.12"
  2145. },
  2146. "bin": [
  2147. "Resources/bin/var-dump-server"
  2148. ],
  2149. "type": "library",
  2150. "autoload": {
  2151. "files": [
  2152. "Resources/functions/dump.php"
  2153. ],
  2154. "psr-4": {
  2155. "Symfony\\Component\\VarDumper\\": ""
  2156. },
  2157. "exclude-from-classmap": [
  2158. "/Tests/"
  2159. ]
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "authors": [
  2166. {
  2167. "name": "Nicolas Grekas",
  2168. "email": "p@tchwork.com"
  2169. },
  2170. {
  2171. "name": "Symfony Community",
  2172. "homepage": "https://symfony.com/contributors"
  2173. }
  2174. ],
  2175. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  2176. "homepage": "https://symfony.com",
  2177. "keywords": [
  2178. "debug",
  2179. "dump"
  2180. ],
  2181. "support": {
  2182. "source": "https://github.com/symfony/var-dumper/tree/v7.2.6"
  2183. },
  2184. "funding": [
  2185. {
  2186. "url": "https://symfony.com/sponsor",
  2187. "type": "custom"
  2188. },
  2189. {
  2190. "url": "https://github.com/fabpot",
  2191. "type": "github"
  2192. },
  2193. {
  2194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2195. "type": "tidelift"
  2196. }
  2197. ],
  2198. "time": "2025-04-09T08:14:01+00:00"
  2199. }
  2200. ],
  2201. "aliases": [],
  2202. "minimum-stability": "stable",
  2203. "stability-flags": [],
  2204. "prefer-stable": false,
  2205. "prefer-lowest": false,
  2206. "platform": {
  2207. "php": ">=8.0.0"
  2208. },
  2209. "platform-dev": [],
  2210. "plugin-api-version": "2.2.0"
  2211. }