composer.lock 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935
  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": "c77cf8360f473eddbf9d33eef75ca58c",
  8. "packages": [
  9. {
  10. "name": "ezyang/htmlpurifier",
  11. "version": "v4.13.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/ezyang/htmlpurifier.git",
  15. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  20. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  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": ">=5.2"
  31. },
  32. "require-dev": {
  33. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  34. },
  35. "type": "library",
  36. "autoload": {
  37. "psr-0": {
  38. "HTMLPurifier": "library/"
  39. },
  40. "files": [
  41. "library/HTMLPurifier.composer.php"
  42. ],
  43. "exclude-from-classmap": [
  44. "/library/HTMLPurifier/Language/"
  45. ]
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "LGPL-2.1-or-later"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Edward Z. Yang",
  54. "email": "admin@htmlpurifier.org",
  55. "homepage": "http://ezyang.com"
  56. }
  57. ],
  58. "description": "Standards compliant HTML filter written in PHP",
  59. "homepage": "http://htmlpurifier.org/",
  60. "keywords": [
  61. "html"
  62. ],
  63. "support": {
  64. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  65. "source": "https://github.com/ezyang/htmlpurifier/tree/master"
  66. },
  67. "time": "2020-06-29T00:56:53+00:00"
  68. },
  69. {
  70. "name": "league/flysystem",
  71. "version": "1.1.3",
  72. "source": {
  73. "type": "git",
  74. "url": "https://github.com/thephpleague/flysystem.git",
  75. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  76. },
  77. "dist": {
  78. "type": "zip",
  79. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  80. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  81. "shasum": "",
  82. "mirrors": [
  83. {
  84. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  85. "preferred": true
  86. }
  87. ]
  88. },
  89. "require": {
  90. "ext-fileinfo": "*",
  91. "league/mime-type-detection": "^1.3",
  92. "php": "^7.2.5 || ^8.0"
  93. },
  94. "conflict": {
  95. "league/flysystem-sftp": "<1.0.6"
  96. },
  97. "require-dev": {
  98. "phpspec/prophecy": "^1.11.1",
  99. "phpunit/phpunit": "^8.5.8"
  100. },
  101. "suggest": {
  102. "ext-fileinfo": "Required for MimeType",
  103. "ext-ftp": "Allows you to use FTP server storage",
  104. "ext-openssl": "Allows you to use FTPS server storage",
  105. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  106. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  107. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  108. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  109. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  110. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  111. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  112. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  113. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  114. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  115. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  116. },
  117. "type": "library",
  118. "extra": {
  119. "branch-alias": {
  120. "dev-master": "1.1-dev"
  121. }
  122. },
  123. "autoload": {
  124. "psr-4": {
  125. "League\\Flysystem\\": "src/"
  126. }
  127. },
  128. "notification-url": "https://packagist.org/downloads/",
  129. "license": [
  130. "MIT"
  131. ],
  132. "authors": [
  133. {
  134. "name": "Frank de Jonge",
  135. "email": "info@frenky.net"
  136. }
  137. ],
  138. "description": "Filesystem abstraction: Many filesystems, one API.",
  139. "keywords": [
  140. "Cloud Files",
  141. "WebDAV",
  142. "abstraction",
  143. "aws",
  144. "cloud",
  145. "copy.com",
  146. "dropbox",
  147. "file systems",
  148. "files",
  149. "filesystem",
  150. "filesystems",
  151. "ftp",
  152. "rackspace",
  153. "remote",
  154. "s3",
  155. "sftp",
  156. "storage"
  157. ],
  158. "support": {
  159. "issues": "https://github.com/thephpleague/flysystem/issues",
  160. "source": "https://github.com/thephpleague/flysystem/tree/1.x"
  161. },
  162. "funding": [
  163. {
  164. "url": "https://offset.earth/frankdejonge",
  165. "type": "other"
  166. }
  167. ],
  168. "time": "2020-08-23T07:39:11+00:00"
  169. },
  170. {
  171. "name": "league/flysystem-cached-adapter",
  172. "version": "1.1.0",
  173. "source": {
  174. "type": "git",
  175. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  176. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  177. },
  178. "dist": {
  179. "type": "zip",
  180. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  181. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  182. "shasum": "",
  183. "mirrors": [
  184. {
  185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  186. "preferred": true
  187. }
  188. ]
  189. },
  190. "require": {
  191. "league/flysystem": "~1.0",
  192. "psr/cache": "^1.0.0"
  193. },
  194. "require-dev": {
  195. "mockery/mockery": "~0.9",
  196. "phpspec/phpspec": "^3.4",
  197. "phpunit/phpunit": "^5.7",
  198. "predis/predis": "~1.0",
  199. "tedivm/stash": "~0.12"
  200. },
  201. "suggest": {
  202. "ext-phpredis": "Pure C implemented extension for PHP"
  203. },
  204. "type": "library",
  205. "autoload": {
  206. "psr-4": {
  207. "League\\Flysystem\\Cached\\": "src/"
  208. }
  209. },
  210. "notification-url": "https://packagist.org/downloads/",
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "frankdejonge",
  217. "email": "info@frenky.net"
  218. }
  219. ],
  220. "description": "An adapter decorator to enable meta-data caching.",
  221. "support": {
  222. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  223. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  224. },
  225. "time": "2020-07-25T15:56:04+00:00"
  226. },
  227. {
  228. "name": "league/mime-type-detection",
  229. "version": "1.7.0",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/thephpleague/mime-type-detection.git",
  233. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  238. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  239. "shasum": "",
  240. "mirrors": [
  241. {
  242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  243. "preferred": true
  244. }
  245. ]
  246. },
  247. "require": {
  248. "ext-fileinfo": "*",
  249. "php": "^7.2 || ^8.0"
  250. },
  251. "require-dev": {
  252. "friendsofphp/php-cs-fixer": "^2.18",
  253. "phpstan/phpstan": "^0.12.68",
  254. "phpunit/phpunit": "^8.5.8 || ^9.3"
  255. },
  256. "type": "library",
  257. "autoload": {
  258. "psr-4": {
  259. "League\\MimeTypeDetection\\": "src"
  260. }
  261. },
  262. "notification-url": "https://packagist.org/downloads/",
  263. "license": [
  264. "MIT"
  265. ],
  266. "authors": [
  267. {
  268. "name": "Frank de Jonge",
  269. "email": "info@frankdejonge.nl"
  270. }
  271. ],
  272. "description": "Mime-type detection for Flysystem",
  273. "support": {
  274. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  275. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  276. },
  277. "funding": [
  278. {
  279. "url": "https://github.com/frankdejonge",
  280. "type": "github"
  281. },
  282. {
  283. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  284. "type": "tidelift"
  285. }
  286. ],
  287. "time": "2021-01-18T20:58:21+00:00"
  288. },
  289. {
  290. "name": "maennchen/zipstream-php",
  291. "version": "2.1.0",
  292. "source": {
  293. "type": "git",
  294. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  295. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  296. },
  297. "dist": {
  298. "type": "zip",
  299. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  300. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  301. "shasum": "",
  302. "mirrors": [
  303. {
  304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  305. "preferred": true
  306. }
  307. ]
  308. },
  309. "require": {
  310. "myclabs/php-enum": "^1.5",
  311. "php": ">= 7.1",
  312. "psr/http-message": "^1.0",
  313. "symfony/polyfill-mbstring": "^1.0"
  314. },
  315. "require-dev": {
  316. "ext-zip": "*",
  317. "guzzlehttp/guzzle": ">= 6.3",
  318. "mikey179/vfsstream": "^1.6",
  319. "phpunit/phpunit": ">= 7.5"
  320. },
  321. "type": "library",
  322. "autoload": {
  323. "psr-4": {
  324. "ZipStream\\": "src/"
  325. }
  326. },
  327. "notification-url": "https://packagist.org/downloads/",
  328. "license": [
  329. "MIT"
  330. ],
  331. "authors": [
  332. {
  333. "name": "Paul Duncan",
  334. "email": "pabs@pablotron.org"
  335. },
  336. {
  337. "name": "Jonatan Männchen",
  338. "email": "jonatan@maennchen.ch"
  339. },
  340. {
  341. "name": "Jesse Donat",
  342. "email": "donatj@gmail.com"
  343. },
  344. {
  345. "name": "András Kolesár",
  346. "email": "kolesar@kolesar.hu"
  347. }
  348. ],
  349. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  350. "keywords": [
  351. "stream",
  352. "zip"
  353. ],
  354. "support": {
  355. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  356. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  357. },
  358. "funding": [
  359. {
  360. "url": "https://opencollective.com/zipstream",
  361. "type": "open_collective"
  362. }
  363. ],
  364. "time": "2020-05-30T13:11:16+00:00"
  365. },
  366. {
  367. "name": "markbaker/complex",
  368. "version": "2.0.3",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/MarkBaker/PHPComplex.git",
  372. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  377. "reference": "6f724d7e04606fd8adaa4e3bb381c3e9db09c946",
  378. "shasum": "",
  379. "mirrors": [
  380. {
  381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  382. "preferred": true
  383. }
  384. ]
  385. },
  386. "require": {
  387. "php": "^7.2 || ^8.0"
  388. },
  389. "require-dev": {
  390. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  391. "phpcompatibility/php-compatibility": "^9.0",
  392. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  393. "squizlabs/php_codesniffer": "^3.4"
  394. },
  395. "type": "library",
  396. "autoload": {
  397. "psr-4": {
  398. "Complex\\": "classes/src/"
  399. },
  400. "files": [
  401. "classes/src/functions/abs.php",
  402. "classes/src/functions/acos.php",
  403. "classes/src/functions/acosh.php",
  404. "classes/src/functions/acot.php",
  405. "classes/src/functions/acoth.php",
  406. "classes/src/functions/acsc.php",
  407. "classes/src/functions/acsch.php",
  408. "classes/src/functions/argument.php",
  409. "classes/src/functions/asec.php",
  410. "classes/src/functions/asech.php",
  411. "classes/src/functions/asin.php",
  412. "classes/src/functions/asinh.php",
  413. "classes/src/functions/atan.php",
  414. "classes/src/functions/atanh.php",
  415. "classes/src/functions/conjugate.php",
  416. "classes/src/functions/cos.php",
  417. "classes/src/functions/cosh.php",
  418. "classes/src/functions/cot.php",
  419. "classes/src/functions/coth.php",
  420. "classes/src/functions/csc.php",
  421. "classes/src/functions/csch.php",
  422. "classes/src/functions/exp.php",
  423. "classes/src/functions/inverse.php",
  424. "classes/src/functions/ln.php",
  425. "classes/src/functions/log2.php",
  426. "classes/src/functions/log10.php",
  427. "classes/src/functions/negative.php",
  428. "classes/src/functions/pow.php",
  429. "classes/src/functions/rho.php",
  430. "classes/src/functions/sec.php",
  431. "classes/src/functions/sech.php",
  432. "classes/src/functions/sin.php",
  433. "classes/src/functions/sinh.php",
  434. "classes/src/functions/sqrt.php",
  435. "classes/src/functions/tan.php",
  436. "classes/src/functions/tanh.php",
  437. "classes/src/functions/theta.php",
  438. "classes/src/operations/add.php",
  439. "classes/src/operations/subtract.php",
  440. "classes/src/operations/multiply.php",
  441. "classes/src/operations/divideby.php",
  442. "classes/src/operations/divideinto.php"
  443. ]
  444. },
  445. "notification-url": "https://packagist.org/downloads/",
  446. "license": [
  447. "MIT"
  448. ],
  449. "authors": [
  450. {
  451. "name": "Mark Baker",
  452. "email": "mark@lange.demon.co.uk"
  453. }
  454. ],
  455. "description": "PHP Class for working with complex numbers",
  456. "homepage": "https://github.com/MarkBaker/PHPComplex",
  457. "keywords": [
  458. "complex",
  459. "mathematics"
  460. ],
  461. "support": {
  462. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  463. "source": "https://github.com/MarkBaker/PHPComplex/tree/2.0.3"
  464. },
  465. "time": "2021-06-02T09:44:11+00:00"
  466. },
  467. {
  468. "name": "markbaker/matrix",
  469. "version": "2.1.3",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  473. "reference": "174395a901b5ba0925f1d790fa91bab531074b61"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/174395a901b5ba0925f1d790fa91bab531074b61",
  478. "reference": "174395a901b5ba0925f1d790fa91bab531074b61",
  479. "shasum": "",
  480. "mirrors": [
  481. {
  482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  483. "preferred": true
  484. }
  485. ]
  486. },
  487. "require": {
  488. "php": "^7.1 || ^8.0"
  489. },
  490. "require-dev": {
  491. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  492. "phpcompatibility/php-compatibility": "^9.0",
  493. "phpdocumentor/phpdocumentor": "2.*",
  494. "phploc/phploc": "^4.0",
  495. "phpmd/phpmd": "2.*",
  496. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  497. "sebastian/phpcpd": "^4.0",
  498. "squizlabs/php_codesniffer": "^3.4"
  499. },
  500. "type": "library",
  501. "autoload": {
  502. "psr-4": {
  503. "Matrix\\": "classes/src/"
  504. },
  505. "files": [
  506. "classes/src/Functions/adjoint.php",
  507. "classes/src/Functions/antidiagonal.php",
  508. "classes/src/Functions/cofactors.php",
  509. "classes/src/Functions/determinant.php",
  510. "classes/src/Functions/diagonal.php",
  511. "classes/src/Functions/identity.php",
  512. "classes/src/Functions/inverse.php",
  513. "classes/src/Functions/minors.php",
  514. "classes/src/Functions/trace.php",
  515. "classes/src/Functions/transpose.php",
  516. "classes/src/Operations/add.php",
  517. "classes/src/Operations/directsum.php",
  518. "classes/src/Operations/subtract.php",
  519. "classes/src/Operations/multiply.php",
  520. "classes/src/Operations/divideby.php",
  521. "classes/src/Operations/divideinto.php"
  522. ]
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Mark Baker",
  531. "email": "mark@demon-angel.eu"
  532. }
  533. ],
  534. "description": "PHP Class for working with matrices",
  535. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  536. "keywords": [
  537. "mathematics",
  538. "matrix",
  539. "vector"
  540. ],
  541. "support": {
  542. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  543. "source": "https://github.com/MarkBaker/PHPMatrix/tree/2.1.3"
  544. },
  545. "time": "2021-05-25T15:42:17+00:00"
  546. },
  547. {
  548. "name": "myclabs/php-enum",
  549. "version": "1.7.7",
  550. "source": {
  551. "type": "git",
  552. "url": "https://github.com/myclabs/php-enum.git",
  553. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  554. },
  555. "dist": {
  556. "type": "zip",
  557. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  558. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  559. "shasum": "",
  560. "mirrors": [
  561. {
  562. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  563. "preferred": true
  564. }
  565. ]
  566. },
  567. "require": {
  568. "ext-json": "*",
  569. "php": ">=7.1"
  570. },
  571. "require-dev": {
  572. "phpunit/phpunit": "^7",
  573. "squizlabs/php_codesniffer": "1.*",
  574. "vimeo/psalm": "^3.8"
  575. },
  576. "type": "library",
  577. "autoload": {
  578. "psr-4": {
  579. "MyCLabs\\Enum\\": "src/"
  580. }
  581. },
  582. "notification-url": "https://packagist.org/downloads/",
  583. "license": [
  584. "MIT"
  585. ],
  586. "authors": [
  587. {
  588. "name": "PHP Enum contributors",
  589. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  590. }
  591. ],
  592. "description": "PHP Enum implementation",
  593. "homepage": "http://github.com/myclabs/php-enum",
  594. "keywords": [
  595. "enum"
  596. ],
  597. "support": {
  598. "issues": "https://github.com/myclabs/php-enum/issues",
  599. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  600. },
  601. "funding": [
  602. {
  603. "url": "https://github.com/mnapoli",
  604. "type": "github"
  605. },
  606. {
  607. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  608. "type": "tidelift"
  609. }
  610. ],
  611. "time": "2020-11-14T18:14:52+00:00"
  612. },
  613. {
  614. "name": "phpoffice/phpspreadsheet",
  615. "version": "1.18.0",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  619. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  624. "reference": "418cd304e8e6b417ea79c3b29126a25dc4b1170c",
  625. "shasum": "",
  626. "mirrors": [
  627. {
  628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  629. "preferred": true
  630. }
  631. ]
  632. },
  633. "require": {
  634. "ext-ctype": "*",
  635. "ext-dom": "*",
  636. "ext-fileinfo": "*",
  637. "ext-gd": "*",
  638. "ext-iconv": "*",
  639. "ext-libxml": "*",
  640. "ext-mbstring": "*",
  641. "ext-simplexml": "*",
  642. "ext-xml": "*",
  643. "ext-xmlreader": "*",
  644. "ext-xmlwriter": "*",
  645. "ext-zip": "*",
  646. "ext-zlib": "*",
  647. "ezyang/htmlpurifier": "^4.13",
  648. "maennchen/zipstream-php": "^2.1",
  649. "markbaker/complex": "^2.0",
  650. "markbaker/matrix": "^2.0",
  651. "php": "^7.2 || ^8.0",
  652. "psr/http-client": "^1.0",
  653. "psr/http-factory": "^1.0",
  654. "psr/simple-cache": "^1.0"
  655. },
  656. "require-dev": {
  657. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  658. "dompdf/dompdf": "^1.0",
  659. "friendsofphp/php-cs-fixer": "^2.18",
  660. "jpgraph/jpgraph": "^4.0",
  661. "mpdf/mpdf": "^8.0",
  662. "phpcompatibility/php-compatibility": "^9.3",
  663. "phpstan/phpstan": "^0.12.82",
  664. "phpstan/phpstan-phpunit": "^0.12.18",
  665. "phpunit/phpunit": "^8.5",
  666. "squizlabs/php_codesniffer": "^3.5",
  667. "tecnickcom/tcpdf": "^6.3"
  668. },
  669. "suggest": {
  670. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  671. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  672. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  673. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  674. },
  675. "type": "library",
  676. "autoload": {
  677. "psr-4": {
  678. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Maarten Balliauw",
  688. "homepage": "https://blog.maartenballiauw.be"
  689. },
  690. {
  691. "name": "Mark Baker",
  692. "homepage": "https://markbakeruk.net"
  693. },
  694. {
  695. "name": "Franck Lefevre",
  696. "homepage": "https://rootslabs.net"
  697. },
  698. {
  699. "name": "Erik Tilt"
  700. },
  701. {
  702. "name": "Adrien Crivelli"
  703. }
  704. ],
  705. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  706. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  707. "keywords": [
  708. "OpenXML",
  709. "excel",
  710. "gnumeric",
  711. "ods",
  712. "php",
  713. "spreadsheet",
  714. "xls",
  715. "xlsx"
  716. ],
  717. "support": {
  718. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  719. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.18.0"
  720. },
  721. "time": "2021-05-31T18:21:15+00:00"
  722. },
  723. {
  724. "name": "psr/cache",
  725. "version": "1.0.1",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/php-fig/cache.git",
  729. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  734. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  735. "shasum": "",
  736. "mirrors": [
  737. {
  738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  739. "preferred": true
  740. }
  741. ]
  742. },
  743. "require": {
  744. "php": ">=5.3.0"
  745. },
  746. "type": "library",
  747. "extra": {
  748. "branch-alias": {
  749. "dev-master": "1.0.x-dev"
  750. }
  751. },
  752. "autoload": {
  753. "psr-4": {
  754. "Psr\\Cache\\": "src/"
  755. }
  756. },
  757. "notification-url": "https://packagist.org/downloads/",
  758. "license": [
  759. "MIT"
  760. ],
  761. "authors": [
  762. {
  763. "name": "PHP-FIG",
  764. "homepage": "http://www.php-fig.org/"
  765. }
  766. ],
  767. "description": "Common interface for caching libraries",
  768. "keywords": [
  769. "cache",
  770. "psr",
  771. "psr-6"
  772. ],
  773. "support": {
  774. "source": "https://github.com/php-fig/cache/tree/master"
  775. },
  776. "time": "2016-08-06T20:24:11+00:00"
  777. },
  778. {
  779. "name": "psr/container",
  780. "version": "1.1.1",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/php-fig/container.git",
  784. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  789. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  790. "shasum": "",
  791. "mirrors": [
  792. {
  793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  794. "preferred": true
  795. }
  796. ]
  797. },
  798. "require": {
  799. "php": ">=7.2.0"
  800. },
  801. "type": "library",
  802. "autoload": {
  803. "psr-4": {
  804. "Psr\\Container\\": "src/"
  805. }
  806. },
  807. "notification-url": "https://packagist.org/downloads/",
  808. "license": [
  809. "MIT"
  810. ],
  811. "authors": [
  812. {
  813. "name": "PHP-FIG",
  814. "homepage": "https://www.php-fig.org/"
  815. }
  816. ],
  817. "description": "Common Container Interface (PHP FIG PSR-11)",
  818. "homepage": "https://github.com/php-fig/container",
  819. "keywords": [
  820. "PSR-11",
  821. "container",
  822. "container-interface",
  823. "container-interop",
  824. "psr"
  825. ],
  826. "support": {
  827. "issues": "https://github.com/php-fig/container/issues",
  828. "source": "https://github.com/php-fig/container/tree/1.1.1"
  829. },
  830. "time": "2021-03-05T17:36:06+00:00"
  831. },
  832. {
  833. "name": "psr/http-client",
  834. "version": "1.0.1",
  835. "source": {
  836. "type": "git",
  837. "url": "https://github.com/php-fig/http-client.git",
  838. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  839. },
  840. "dist": {
  841. "type": "zip",
  842. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  843. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  844. "shasum": "",
  845. "mirrors": [
  846. {
  847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  848. "preferred": true
  849. }
  850. ]
  851. },
  852. "require": {
  853. "php": "^7.0 || ^8.0",
  854. "psr/http-message": "^1.0"
  855. },
  856. "type": "library",
  857. "extra": {
  858. "branch-alias": {
  859. "dev-master": "1.0.x-dev"
  860. }
  861. },
  862. "autoload": {
  863. "psr-4": {
  864. "Psr\\Http\\Client\\": "src/"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "PHP-FIG",
  874. "homepage": "http://www.php-fig.org/"
  875. }
  876. ],
  877. "description": "Common interface for HTTP clients",
  878. "homepage": "https://github.com/php-fig/http-client",
  879. "keywords": [
  880. "http",
  881. "http-client",
  882. "psr",
  883. "psr-18"
  884. ],
  885. "support": {
  886. "source": "https://github.com/php-fig/http-client/tree/master"
  887. },
  888. "time": "2020-06-29T06:28:15+00:00"
  889. },
  890. {
  891. "name": "psr/http-factory",
  892. "version": "1.0.1",
  893. "source": {
  894. "type": "git",
  895. "url": "https://github.com/php-fig/http-factory.git",
  896. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  897. },
  898. "dist": {
  899. "type": "zip",
  900. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  901. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  902. "shasum": "",
  903. "mirrors": [
  904. {
  905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  906. "preferred": true
  907. }
  908. ]
  909. },
  910. "require": {
  911. "php": ">=7.0.0",
  912. "psr/http-message": "^1.0"
  913. },
  914. "type": "library",
  915. "extra": {
  916. "branch-alias": {
  917. "dev-master": "1.0.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Psr\\Http\\Message\\": "src/"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "PHP-FIG",
  932. "homepage": "http://www.php-fig.org/"
  933. }
  934. ],
  935. "description": "Common interfaces for PSR-7 HTTP message factories",
  936. "keywords": [
  937. "factory",
  938. "http",
  939. "message",
  940. "psr",
  941. "psr-17",
  942. "psr-7",
  943. "request",
  944. "response"
  945. ],
  946. "support": {
  947. "source": "https://github.com/php-fig/http-factory/tree/master"
  948. },
  949. "time": "2019-04-30T12:38:16+00:00"
  950. },
  951. {
  952. "name": "psr/http-message",
  953. "version": "1.0.1",
  954. "source": {
  955. "type": "git",
  956. "url": "https://github.com/php-fig/http-message.git",
  957. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  958. },
  959. "dist": {
  960. "type": "zip",
  961. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  962. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  963. "shasum": "",
  964. "mirrors": [
  965. {
  966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  967. "preferred": true
  968. }
  969. ]
  970. },
  971. "require": {
  972. "php": ">=5.3.0"
  973. },
  974. "type": "library",
  975. "extra": {
  976. "branch-alias": {
  977. "dev-master": "1.0.x-dev"
  978. }
  979. },
  980. "autoload": {
  981. "psr-4": {
  982. "Psr\\Http\\Message\\": "src/"
  983. }
  984. },
  985. "notification-url": "https://packagist.org/downloads/",
  986. "license": [
  987. "MIT"
  988. ],
  989. "authors": [
  990. {
  991. "name": "PHP-FIG",
  992. "homepage": "http://www.php-fig.org/"
  993. }
  994. ],
  995. "description": "Common interface for HTTP messages",
  996. "homepage": "https://github.com/php-fig/http-message",
  997. "keywords": [
  998. "http",
  999. "http-message",
  1000. "psr",
  1001. "psr-7",
  1002. "request",
  1003. "response"
  1004. ],
  1005. "support": {
  1006. "source": "https://github.com/php-fig/http-message/tree/master"
  1007. },
  1008. "time": "2016-08-06T14:39:51+00:00"
  1009. },
  1010. {
  1011. "name": "psr/log",
  1012. "version": "1.1.3",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/php-fig/log.git",
  1016. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  1021. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  1022. "shasum": "",
  1023. "mirrors": [
  1024. {
  1025. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1026. "preferred": true
  1027. }
  1028. ]
  1029. },
  1030. "require": {
  1031. "php": ">=5.3.0"
  1032. },
  1033. "type": "library",
  1034. "extra": {
  1035. "branch-alias": {
  1036. "dev-master": "1.1.x-dev"
  1037. }
  1038. },
  1039. "autoload": {
  1040. "psr-4": {
  1041. "Psr\\Log\\": "Psr/Log/"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "PHP-FIG",
  1051. "homepage": "http://www.php-fig.org/"
  1052. }
  1053. ],
  1054. "description": "Common interface for logging libraries",
  1055. "homepage": "https://github.com/php-fig/log",
  1056. "keywords": [
  1057. "log",
  1058. "psr",
  1059. "psr-3"
  1060. ],
  1061. "support": {
  1062. "source": "https://github.com/php-fig/log/tree/1.1.3"
  1063. },
  1064. "time": "2020-03-23T09:12:05+00:00"
  1065. },
  1066. {
  1067. "name": "psr/simple-cache",
  1068. "version": "1.0.1",
  1069. "source": {
  1070. "type": "git",
  1071. "url": "https://github.com/php-fig/simple-cache.git",
  1072. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1073. },
  1074. "dist": {
  1075. "type": "zip",
  1076. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1077. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1078. "shasum": "",
  1079. "mirrors": [
  1080. {
  1081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1082. "preferred": true
  1083. }
  1084. ]
  1085. },
  1086. "require": {
  1087. "php": ">=5.3.0"
  1088. },
  1089. "type": "library",
  1090. "extra": {
  1091. "branch-alias": {
  1092. "dev-master": "1.0.x-dev"
  1093. }
  1094. },
  1095. "autoload": {
  1096. "psr-4": {
  1097. "Psr\\SimpleCache\\": "src/"
  1098. }
  1099. },
  1100. "notification-url": "https://packagist.org/downloads/",
  1101. "license": [
  1102. "MIT"
  1103. ],
  1104. "authors": [
  1105. {
  1106. "name": "PHP-FIG",
  1107. "homepage": "http://www.php-fig.org/"
  1108. }
  1109. ],
  1110. "description": "Common interfaces for simple caching",
  1111. "keywords": [
  1112. "cache",
  1113. "caching",
  1114. "psr",
  1115. "psr-16",
  1116. "simple-cache"
  1117. ],
  1118. "support": {
  1119. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1120. },
  1121. "time": "2017-10-23T01:57:42+00:00"
  1122. },
  1123. {
  1124. "name": "symfony/polyfill-mbstring",
  1125. "version": "v1.22.1",
  1126. "source": {
  1127. "type": "git",
  1128. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1129. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  1130. },
  1131. "dist": {
  1132. "type": "zip",
  1133. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  1134. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  1135. "shasum": "",
  1136. "mirrors": [
  1137. {
  1138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1139. "preferred": true
  1140. }
  1141. ]
  1142. },
  1143. "require": {
  1144. "php": ">=7.1"
  1145. },
  1146. "suggest": {
  1147. "ext-mbstring": "For best performance"
  1148. },
  1149. "type": "library",
  1150. "extra": {
  1151. "branch-alias": {
  1152. "dev-main": "1.22-dev"
  1153. },
  1154. "thanks": {
  1155. "name": "symfony/polyfill",
  1156. "url": "https://github.com/symfony/polyfill"
  1157. }
  1158. },
  1159. "autoload": {
  1160. "psr-4": {
  1161. "Symfony\\Polyfill\\Mbstring\\": ""
  1162. },
  1163. "files": [
  1164. "bootstrap.php"
  1165. ]
  1166. },
  1167. "notification-url": "https://packagist.org/downloads/",
  1168. "license": [
  1169. "MIT"
  1170. ],
  1171. "authors": [
  1172. {
  1173. "name": "Nicolas Grekas",
  1174. "email": "p@tchwork.com"
  1175. },
  1176. {
  1177. "name": "Symfony Community",
  1178. "homepage": "https://symfony.com/contributors"
  1179. }
  1180. ],
  1181. "description": "Symfony polyfill for the Mbstring extension",
  1182. "homepage": "https://symfony.com",
  1183. "keywords": [
  1184. "compatibility",
  1185. "mbstring",
  1186. "polyfill",
  1187. "portable",
  1188. "shim"
  1189. ],
  1190. "support": {
  1191. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  1192. },
  1193. "funding": [
  1194. {
  1195. "url": "https://symfony.com/sponsor",
  1196. "type": "custom"
  1197. },
  1198. {
  1199. "url": "https://github.com/fabpot",
  1200. "type": "github"
  1201. },
  1202. {
  1203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1204. "type": "tidelift"
  1205. }
  1206. ],
  1207. "time": "2021-01-22T09:19:47+00:00"
  1208. },
  1209. {
  1210. "name": "tecnickcom/tcpdf",
  1211. "version": "6.4.4",
  1212. "source": {
  1213. "type": "git",
  1214. "url": "https://github.com/tecnickcom/TCPDF.git",
  1215. "reference": "42cd0f9786af7e5db4fcedaa66f717b0d0032320"
  1216. },
  1217. "dist": {
  1218. "type": "zip",
  1219. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/42cd0f9786af7e5db4fcedaa66f717b0d0032320",
  1220. "reference": "42cd0f9786af7e5db4fcedaa66f717b0d0032320",
  1221. "shasum": ""
  1222. },
  1223. "require": {
  1224. "php": ">=5.3.0"
  1225. },
  1226. "type": "library",
  1227. "autoload": {
  1228. "classmap": [
  1229. "config",
  1230. "include",
  1231. "tcpdf.php",
  1232. "tcpdf_parser.php",
  1233. "tcpdf_import.php",
  1234. "tcpdf_barcodes_1d.php",
  1235. "tcpdf_barcodes_2d.php",
  1236. "include/tcpdf_colors.php",
  1237. "include/tcpdf_filters.php",
  1238. "include/tcpdf_font_data.php",
  1239. "include/tcpdf_fonts.php",
  1240. "include/tcpdf_images.php",
  1241. "include/tcpdf_static.php",
  1242. "include/barcodes/datamatrix.php",
  1243. "include/barcodes/pdf417.php",
  1244. "include/barcodes/qrcode.php"
  1245. ]
  1246. },
  1247. "notification-url": "https://packagist.org/downloads/",
  1248. "license": [
  1249. "LGPL-3.0-only"
  1250. ],
  1251. "authors": [
  1252. {
  1253. "name": "Nicola Asuni",
  1254. "email": "info@tecnick.com",
  1255. "role": "lead"
  1256. }
  1257. ],
  1258. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  1259. "homepage": "http://www.tcpdf.org/",
  1260. "keywords": [
  1261. "PDFD32000-2008",
  1262. "TCPDF",
  1263. "barcodes",
  1264. "datamatrix",
  1265. "pdf",
  1266. "pdf417",
  1267. "qrcode"
  1268. ],
  1269. "support": {
  1270. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  1271. "source": "https://github.com/tecnickcom/TCPDF/tree/6.4.4"
  1272. },
  1273. "funding": [
  1274. {
  1275. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&currency_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project",
  1276. "type": "custom"
  1277. }
  1278. ],
  1279. "time": "2021-12-31T08:39:24+00:00"
  1280. },
  1281. {
  1282. "name": "topthink/framework",
  1283. "version": "v6.0.7",
  1284. "source": {
  1285. "type": "git",
  1286. "url": "https://github.com/top-think/framework.git",
  1287. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270"
  1288. },
  1289. "dist": {
  1290. "type": "zip",
  1291. "url": "https://api.github.com/repos/top-think/framework/zipball/db8fe22520a9660dd5e4c87e304034ac49e39270",
  1292. "reference": "db8fe22520a9660dd5e4c87e304034ac49e39270",
  1293. "shasum": "",
  1294. "mirrors": [
  1295. {
  1296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1297. "preferred": true
  1298. }
  1299. ]
  1300. },
  1301. "require": {
  1302. "ext-json": "*",
  1303. "ext-mbstring": "*",
  1304. "league/flysystem": "^1.0",
  1305. "league/flysystem-cached-adapter": "^1.0",
  1306. "php": ">=7.1.0",
  1307. "psr/container": "~1.0",
  1308. "psr/log": "~1.0",
  1309. "psr/simple-cache": "^1.0",
  1310. "topthink/think-helper": "^3.1.1",
  1311. "topthink/think-orm": "^2.0"
  1312. },
  1313. "require-dev": {
  1314. "mikey179/vfsstream": "^1.6",
  1315. "mockery/mockery": "^1.2",
  1316. "phpunit/phpunit": "^7.0"
  1317. },
  1318. "type": "library",
  1319. "autoload": {
  1320. "files": [],
  1321. "psr-4": {
  1322. "think\\": "src/think/"
  1323. }
  1324. },
  1325. "notification-url": "https://packagist.org/downloads/",
  1326. "license": [
  1327. "Apache-2.0"
  1328. ],
  1329. "authors": [
  1330. {
  1331. "name": "liu21st",
  1332. "email": "liu21st@gmail.com"
  1333. },
  1334. {
  1335. "name": "yunwuxin",
  1336. "email": "448901948@qq.com"
  1337. }
  1338. ],
  1339. "description": "The ThinkPHP Framework.",
  1340. "homepage": "http://thinkphp.cn/",
  1341. "keywords": [
  1342. "framework",
  1343. "orm",
  1344. "thinkphp"
  1345. ],
  1346. "support": {
  1347. "issues": "https://github.com/top-think/framework/issues",
  1348. "source": "https://github.com/top-think/framework/tree/v6.0.7"
  1349. },
  1350. "time": "2021-01-25T14:48:29+00:00"
  1351. },
  1352. {
  1353. "name": "topthink/think-helper",
  1354. "version": "v3.1.4",
  1355. "source": {
  1356. "type": "git",
  1357. "url": "https://github.com/top-think/think-helper.git",
  1358. "reference": "c28d37743bda4a0455286ca85b17b5791d626e10"
  1359. },
  1360. "dist": {
  1361. "type": "zip",
  1362. "url": "https://api.github.com/repos/top-think/think-helper/zipball/c28d37743bda4a0455286ca85b17b5791d626e10",
  1363. "reference": "c28d37743bda4a0455286ca85b17b5791d626e10",
  1364. "shasum": "",
  1365. "mirrors": [
  1366. {
  1367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1368. "preferred": true
  1369. }
  1370. ]
  1371. },
  1372. "require": {
  1373. "php": ">=7.1.0"
  1374. },
  1375. "type": "library",
  1376. "autoload": {
  1377. "psr-4": {
  1378. "think\\": "src"
  1379. },
  1380. "files": [
  1381. "src/helper.php"
  1382. ]
  1383. },
  1384. "notification-url": "https://packagist.org/downloads/",
  1385. "license": [
  1386. "Apache-2.0"
  1387. ],
  1388. "authors": [
  1389. {
  1390. "name": "yunwuxin",
  1391. "email": "448901948@qq.com"
  1392. }
  1393. ],
  1394. "description": "The ThinkPHP6 Helper Package",
  1395. "support": {
  1396. "issues": "https://github.com/top-think/think-helper/issues",
  1397. "source": "https://github.com/top-think/think-helper/tree/3.0"
  1398. },
  1399. "time": "2019-11-08T08:01:10+00:00"
  1400. },
  1401. {
  1402. "name": "topthink/think-multi-app",
  1403. "version": "v1.0.14",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/top-think/think-multi-app.git",
  1407. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  1412. "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
  1413. "shasum": "",
  1414. "mirrors": [
  1415. {
  1416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1417. "preferred": true
  1418. }
  1419. ]
  1420. },
  1421. "require": {
  1422. "php": ">=7.1.0",
  1423. "topthink/framework": "^6.0.0"
  1424. },
  1425. "type": "library",
  1426. "extra": {
  1427. "think": {
  1428. "services": [
  1429. "think\\app\\Service"
  1430. ]
  1431. }
  1432. },
  1433. "autoload": {
  1434. "psr-4": {
  1435. "think\\app\\": "src"
  1436. }
  1437. },
  1438. "notification-url": "https://packagist.org/downloads/",
  1439. "license": [
  1440. "Apache-2.0"
  1441. ],
  1442. "authors": [
  1443. {
  1444. "name": "liu21st",
  1445. "email": "liu21st@gmail.com"
  1446. }
  1447. ],
  1448. "description": "thinkphp6 multi app support",
  1449. "support": {
  1450. "issues": "https://github.com/top-think/think-multi-app/issues",
  1451. "source": "https://github.com/top-think/think-multi-app/tree/master"
  1452. },
  1453. "time": "2020-07-12T13:50:37+00:00"
  1454. },
  1455. {
  1456. "name": "topthink/think-orm",
  1457. "version": "v2.0.39",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/top-think/think-orm.git",
  1461. "reference": "39a9d0a0e52d9b8bad9d98484d8484cdf5b683a7"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/top-think/think-orm/zipball/39a9d0a0e52d9b8bad9d98484d8484cdf5b683a7",
  1466. "reference": "39a9d0a0e52d9b8bad9d98484d8484cdf5b683a7",
  1467. "shasum": "",
  1468. "mirrors": [
  1469. {
  1470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1471. "preferred": true
  1472. }
  1473. ]
  1474. },
  1475. "require": {
  1476. "ext-json": "*",
  1477. "ext-pdo": "*",
  1478. "php": ">=7.1.0",
  1479. "psr/log": "~1.0",
  1480. "psr/simple-cache": "^1.0",
  1481. "topthink/think-helper": "^3.1"
  1482. },
  1483. "require-dev": {
  1484. "phpunit/phpunit": "^7|^8|^9.5"
  1485. },
  1486. "type": "library",
  1487. "autoload": {
  1488. "psr-4": {
  1489. "think\\": "src"
  1490. },
  1491. "files": [
  1492. "stubs/load_stubs.php"
  1493. ]
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "Apache-2.0"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "liu21st",
  1502. "email": "liu21st@gmail.com"
  1503. }
  1504. ],
  1505. "description": "think orm",
  1506. "keywords": [
  1507. "database",
  1508. "orm"
  1509. ],
  1510. "support": {
  1511. "issues": "https://github.com/top-think/think-orm/issues",
  1512. "source": "https://github.com/top-think/think-orm/tree/v2.0.39"
  1513. },
  1514. "time": "2021-02-26T10:20:00+00:00"
  1515. },
  1516. {
  1517. "name": "topthink/think-template",
  1518. "version": "v2.0.8",
  1519. "source": {
  1520. "type": "git",
  1521. "url": "https://github.com/top-think/think-template.git",
  1522. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  1523. },
  1524. "dist": {
  1525. "type": "zip",
  1526. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  1527. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  1528. "shasum": ""
  1529. },
  1530. "require": {
  1531. "php": ">=7.1.0",
  1532. "psr/simple-cache": "^1.0"
  1533. },
  1534. "type": "library",
  1535. "autoload": {
  1536. "psr-4": {
  1537. "think\\": "src"
  1538. }
  1539. },
  1540. "notification-url": "https://packagist.org/downloads/",
  1541. "license": [
  1542. "Apache-2.0"
  1543. ],
  1544. "authors": [
  1545. {
  1546. "name": "liu21st",
  1547. "email": "liu21st@gmail.com"
  1548. }
  1549. ],
  1550. "description": "the php template engine",
  1551. "support": {
  1552. "issues": "https://github.com/top-think/think-template/issues",
  1553. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  1554. },
  1555. "time": "2020-12-10T07:52:03+00:00"
  1556. },
  1557. {
  1558. "name": "topthink/think-view",
  1559. "version": "v1.0.14",
  1560. "source": {
  1561. "type": "git",
  1562. "url": "https://github.com/top-think/think-view.git",
  1563. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  1564. },
  1565. "dist": {
  1566. "type": "zip",
  1567. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  1568. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  1569. "shasum": ""
  1570. },
  1571. "require": {
  1572. "php": ">=7.1.0",
  1573. "topthink/think-template": "^2.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "think\\view\\driver\\": "src"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "Apache-2.0"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "liu21st",
  1588. "email": "liu21st@gmail.com"
  1589. }
  1590. ],
  1591. "description": "thinkphp template driver",
  1592. "support": {
  1593. "issues": "https://github.com/top-think/think-view/issues",
  1594. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  1595. },
  1596. "time": "2019-11-06T11:40:13+00:00"
  1597. }
  1598. ],
  1599. "packages-dev": [
  1600. {
  1601. "name": "symfony/polyfill-php72",
  1602. "version": "v1.22.1",
  1603. "source": {
  1604. "type": "git",
  1605. "url": "https://github.com/symfony/polyfill-php72.git",
  1606. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  1607. },
  1608. "dist": {
  1609. "type": "zip",
  1610. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  1611. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  1612. "shasum": "",
  1613. "mirrors": [
  1614. {
  1615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1616. "preferred": true
  1617. }
  1618. ]
  1619. },
  1620. "require": {
  1621. "php": ">=7.1"
  1622. },
  1623. "type": "library",
  1624. "extra": {
  1625. "branch-alias": {
  1626. "dev-main": "1.22-dev"
  1627. },
  1628. "thanks": {
  1629. "name": "symfony/polyfill",
  1630. "url": "https://github.com/symfony/polyfill"
  1631. }
  1632. },
  1633. "autoload": {
  1634. "psr-4": {
  1635. "Symfony\\Polyfill\\Php72\\": ""
  1636. },
  1637. "files": [
  1638. "bootstrap.php"
  1639. ]
  1640. },
  1641. "notification-url": "https://packagist.org/downloads/",
  1642. "license": [
  1643. "MIT"
  1644. ],
  1645. "authors": [
  1646. {
  1647. "name": "Nicolas Grekas",
  1648. "email": "p@tchwork.com"
  1649. },
  1650. {
  1651. "name": "Symfony Community",
  1652. "homepage": "https://symfony.com/contributors"
  1653. }
  1654. ],
  1655. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1656. "homepage": "https://symfony.com",
  1657. "keywords": [
  1658. "compatibility",
  1659. "polyfill",
  1660. "portable",
  1661. "shim"
  1662. ],
  1663. "support": {
  1664. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  1665. },
  1666. "funding": [
  1667. {
  1668. "url": "https://symfony.com/sponsor",
  1669. "type": "custom"
  1670. },
  1671. {
  1672. "url": "https://github.com/fabpot",
  1673. "type": "github"
  1674. },
  1675. {
  1676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1677. "type": "tidelift"
  1678. }
  1679. ],
  1680. "time": "2021-01-07T16:49:33+00:00"
  1681. },
  1682. {
  1683. "name": "symfony/polyfill-php80",
  1684. "version": "v1.22.1",
  1685. "source": {
  1686. "type": "git",
  1687. "url": "https://github.com/symfony/polyfill-php80.git",
  1688. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  1689. },
  1690. "dist": {
  1691. "type": "zip",
  1692. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  1693. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  1694. "shasum": "",
  1695. "mirrors": [
  1696. {
  1697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1698. "preferred": true
  1699. }
  1700. ]
  1701. },
  1702. "require": {
  1703. "php": ">=7.1"
  1704. },
  1705. "type": "library",
  1706. "extra": {
  1707. "branch-alias": {
  1708. "dev-main": "1.22-dev"
  1709. },
  1710. "thanks": {
  1711. "name": "symfony/polyfill",
  1712. "url": "https://github.com/symfony/polyfill"
  1713. }
  1714. },
  1715. "autoload": {
  1716. "psr-4": {
  1717. "Symfony\\Polyfill\\Php80\\": ""
  1718. },
  1719. "files": [
  1720. "bootstrap.php"
  1721. ],
  1722. "classmap": [
  1723. "Resources/stubs"
  1724. ]
  1725. },
  1726. "notification-url": "https://packagist.org/downloads/",
  1727. "license": [
  1728. "MIT"
  1729. ],
  1730. "authors": [
  1731. {
  1732. "name": "Ion Bazan",
  1733. "email": "ion.bazan@gmail.com"
  1734. },
  1735. {
  1736. "name": "Nicolas Grekas",
  1737. "email": "p@tchwork.com"
  1738. },
  1739. {
  1740. "name": "Symfony Community",
  1741. "homepage": "https://symfony.com/contributors"
  1742. }
  1743. ],
  1744. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1745. "homepage": "https://symfony.com",
  1746. "keywords": [
  1747. "compatibility",
  1748. "polyfill",
  1749. "portable",
  1750. "shim"
  1751. ],
  1752. "support": {
  1753. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  1754. },
  1755. "funding": [
  1756. {
  1757. "url": "https://symfony.com/sponsor",
  1758. "type": "custom"
  1759. },
  1760. {
  1761. "url": "https://github.com/fabpot",
  1762. "type": "github"
  1763. },
  1764. {
  1765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1766. "type": "tidelift"
  1767. }
  1768. ],
  1769. "time": "2021-01-07T16:49:33+00:00"
  1770. },
  1771. {
  1772. "name": "symfony/var-dumper",
  1773. "version": "v4.4.21",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/symfony/var-dumper.git",
  1777. "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0da0e174f728996f5d5072d6a9f0a42259dbc806",
  1782. "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806",
  1783. "shasum": "",
  1784. "mirrors": [
  1785. {
  1786. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1787. "preferred": true
  1788. }
  1789. ]
  1790. },
  1791. "require": {
  1792. "php": ">=7.1.3",
  1793. "symfony/polyfill-mbstring": "~1.0",
  1794. "symfony/polyfill-php72": "~1.5",
  1795. "symfony/polyfill-php80": "^1.15"
  1796. },
  1797. "conflict": {
  1798. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1799. "symfony/console": "<3.4"
  1800. },
  1801. "require-dev": {
  1802. "ext-iconv": "*",
  1803. "symfony/console": "^3.4|^4.0|^5.0",
  1804. "symfony/process": "^4.4|^5.0",
  1805. "twig/twig": "^1.43|^2.13|^3.0.4"
  1806. },
  1807. "suggest": {
  1808. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1809. "ext-intl": "To show region name in time zone dump",
  1810. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  1811. },
  1812. "bin": [
  1813. "Resources/bin/var-dump-server"
  1814. ],
  1815. "type": "library",
  1816. "autoload": {
  1817. "files": [
  1818. "Resources/functions/dump.php"
  1819. ],
  1820. "psr-4": {
  1821. "Symfony\\Component\\VarDumper\\": ""
  1822. },
  1823. "exclude-from-classmap": [
  1824. "/Tests/"
  1825. ]
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "MIT"
  1830. ],
  1831. "authors": [
  1832. {
  1833. "name": "Nicolas Grekas",
  1834. "email": "p@tchwork.com"
  1835. },
  1836. {
  1837. "name": "Symfony Community",
  1838. "homepage": "https://symfony.com/contributors"
  1839. }
  1840. ],
  1841. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  1842. "homepage": "https://symfony.com",
  1843. "keywords": [
  1844. "debug",
  1845. "dump"
  1846. ],
  1847. "support": {
  1848. "source": "https://github.com/symfony/var-dumper/tree/v4.4.21"
  1849. },
  1850. "funding": [
  1851. {
  1852. "url": "https://symfony.com/sponsor",
  1853. "type": "custom"
  1854. },
  1855. {
  1856. "url": "https://github.com/fabpot",
  1857. "type": "github"
  1858. },
  1859. {
  1860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1861. "type": "tidelift"
  1862. }
  1863. ],
  1864. "time": "2021-03-27T19:49:03+00:00"
  1865. },
  1866. {
  1867. "name": "topthink/think-trace",
  1868. "version": "v1.4",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/top-think/think-trace.git",
  1872. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  1877. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  1878. "shasum": "",
  1879. "mirrors": [
  1880. {
  1881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1882. "preferred": true
  1883. }
  1884. ]
  1885. },
  1886. "require": {
  1887. "php": ">=7.1.0",
  1888. "topthink/framework": "^6.0.0"
  1889. },
  1890. "type": "library",
  1891. "extra": {
  1892. "think": {
  1893. "services": [
  1894. "think\\trace\\Service"
  1895. ],
  1896. "config": {
  1897. "trace": "src/config.php"
  1898. }
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "think\\trace\\": "src"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "Apache-2.0"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "liu21st",
  1913. "email": "liu21st@gmail.com"
  1914. }
  1915. ],
  1916. "description": "thinkphp debug trace",
  1917. "support": {
  1918. "issues": "https://github.com/top-think/think-trace/issues",
  1919. "source": "https://github.com/top-think/think-trace/tree/v1.4"
  1920. },
  1921. "time": "2020-06-29T05:27:28+00:00"
  1922. }
  1923. ],
  1924. "aliases": [],
  1925. "minimum-stability": "stable",
  1926. "stability-flags": [],
  1927. "prefer-stable": false,
  1928. "prefer-lowest": false,
  1929. "platform": {
  1930. "php": ">=7.1.0"
  1931. },
  1932. "platform-dev": [],
  1933. "plugin-api-version": "2.0.0"
  1934. }