composer.lock 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  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": "dfd7b5f332887b4896a6bfb9afb1bcac",
  8. "packages": [
  9. {
  10. "name": "chamilo/pclzip",
  11. "version": "v2.8.4",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/chamilo/pclzip.git",
  15. "reference": "b94b7a190e186a31bd37f21be3a83a48c7d6b49a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/chamilo/pclzip/zipball/b94b7a190e186a31bd37f21be3a83a48c7d6b49a",
  20. "reference": "b94b7a190e186a31bd37f21be3a83a48c7d6b49a",
  21. "shasum": ""
  22. },
  23. "replace": {
  24. "pclzip/pclzip": "^2.8"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "classmap": [
  29. "pclzip.lib.php"
  30. ]
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "LGPL-2.1"
  35. ],
  36. "authors": [
  37. {
  38. "name": "Vincent Blavet"
  39. }
  40. ],
  41. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  42. "homepage": "https://github.com/chamilo/pclzip",
  43. "keywords": [
  44. "php",
  45. "zip"
  46. ],
  47. "support": {
  48. "issues": "https://github.com/chamilo/pclzip/issues",
  49. "source": "https://github.com/chamilo/pclzip/tree/v2.8.4"
  50. },
  51. "time": "2017-11-28T22:14:11+00:00"
  52. },
  53. {
  54. "name": "electrolinux/phpquery",
  55. "version": "0.9.6",
  56. "source": {
  57. "type": "git",
  58. "url": "https://github.com/electrolinux/phpquery.git",
  59. "reference": "6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a"
  60. },
  61. "dist": {
  62. "type": "zip",
  63. "url": "https://api.github.com/repos/electrolinux/phpquery/zipball/6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a",
  64. "reference": "6cb8afcfe8cd4ce45f2f8c27d561383037c27a3a",
  65. "shasum": ""
  66. },
  67. "type": "library",
  68. "autoload": {
  69. "classmap": [
  70. "phpQuery/"
  71. ]
  72. },
  73. "notification-url": "https://packagist.org/downloads/",
  74. "license": [
  75. "MIT"
  76. ],
  77. "authors": [
  78. {
  79. "name": "Tobiasz Cudnik",
  80. "email": "tobiasz.cudnik@gmail.com",
  81. "homepage": "https://github.com/TobiaszCudnik",
  82. "role": "Developer"
  83. },
  84. {
  85. "name": "didier Belot",
  86. "role": "Packager"
  87. }
  88. ],
  89. "description": "phpQuery is a server-side, chainable, CSS3 selector driven Document Object Model (DOM) API based on jQuery JavaScript Library",
  90. "homepage": "http://code.google.com/p/phpquery/",
  91. "support": {
  92. "source": "https://github.com/electrolinux/phpquery/tree/0.9.6"
  93. },
  94. "time": "2013-03-21T12:39:33+00:00"
  95. },
  96. {
  97. "name": "ezyang/htmlpurifier",
  98. "version": "v4.14.0",
  99. "source": {
  100. "type": "git",
  101. "url": "https://github.com/ezyang/htmlpurifier.git",
  102. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  103. },
  104. "dist": {
  105. "type": "zip",
  106. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  107. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  108. "shasum": ""
  109. },
  110. "require": {
  111. "php": ">=5.2"
  112. },
  113. "type": "library",
  114. "autoload": {
  115. "files": [
  116. "library/HTMLPurifier.composer.php"
  117. ],
  118. "psr-0": {
  119. "HTMLPurifier": "library/"
  120. },
  121. "exclude-from-classmap": [
  122. "/library/HTMLPurifier/Language/"
  123. ]
  124. },
  125. "notification-url": "https://packagist.org/downloads/",
  126. "license": [
  127. "LGPL-2.1-or-later"
  128. ],
  129. "authors": [
  130. {
  131. "name": "Edward Z. Yang",
  132. "email": "admin@htmlpurifier.org",
  133. "homepage": "http://ezyang.com"
  134. }
  135. ],
  136. "description": "Standards compliant HTML filter written in PHP",
  137. "homepage": "http://htmlpurifier.org/",
  138. "keywords": [
  139. "html"
  140. ],
  141. "support": {
  142. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  143. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  144. },
  145. "time": "2021-12-25T01:21:49+00:00"
  146. },
  147. {
  148. "name": "league/flysystem",
  149. "version": "1.1.9",
  150. "source": {
  151. "type": "git",
  152. "url": "https://github.com/thephpleague/flysystem.git",
  153. "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
  154. },
  155. "dist": {
  156. "type": "zip",
  157. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
  158. "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
  159. "shasum": ""
  160. },
  161. "require": {
  162. "ext-fileinfo": "*",
  163. "league/mime-type-detection": "^1.3",
  164. "php": "^7.2.5 || ^8.0"
  165. },
  166. "conflict": {
  167. "league/flysystem-sftp": "<1.0.6"
  168. },
  169. "require-dev": {
  170. "phpspec/prophecy": "^1.11.1",
  171. "phpunit/phpunit": "^8.5.8"
  172. },
  173. "suggest": {
  174. "ext-ftp": "Allows you to use FTP server storage",
  175. "ext-openssl": "Allows you to use FTPS server storage",
  176. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  177. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  178. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  179. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  180. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  181. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  182. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  183. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  184. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  185. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  186. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  187. },
  188. "type": "library",
  189. "extra": {
  190. "branch-alias": {
  191. "dev-master": "1.1-dev"
  192. }
  193. },
  194. "autoload": {
  195. "psr-4": {
  196. "League\\Flysystem\\": "src/"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "MIT"
  202. ],
  203. "authors": [
  204. {
  205. "name": "Frank de Jonge",
  206. "email": "info@frenky.net"
  207. }
  208. ],
  209. "description": "Filesystem abstraction: Many filesystems, one API.",
  210. "keywords": [
  211. "Cloud Files",
  212. "WebDAV",
  213. "abstraction",
  214. "aws",
  215. "cloud",
  216. "copy.com",
  217. "dropbox",
  218. "file systems",
  219. "files",
  220. "filesystem",
  221. "filesystems",
  222. "ftp",
  223. "rackspace",
  224. "remote",
  225. "s3",
  226. "sftp",
  227. "storage"
  228. ],
  229. "support": {
  230. "issues": "https://github.com/thephpleague/flysystem/issues",
  231. "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
  232. },
  233. "funding": [
  234. {
  235. "url": "https://offset.earth/frankdejonge",
  236. "type": "other"
  237. }
  238. ],
  239. "time": "2021-12-09T09:40:50+00:00"
  240. },
  241. {
  242. "name": "league/flysystem-cached-adapter",
  243. "version": "1.1.0",
  244. "source": {
  245. "type": "git",
  246. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  247. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  248. },
  249. "dist": {
  250. "type": "zip",
  251. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  252. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  253. "shasum": ""
  254. },
  255. "require": {
  256. "league/flysystem": "~1.0",
  257. "psr/cache": "^1.0.0"
  258. },
  259. "require-dev": {
  260. "mockery/mockery": "~0.9",
  261. "phpspec/phpspec": "^3.4",
  262. "phpunit/phpunit": "^5.7",
  263. "predis/predis": "~1.0",
  264. "tedivm/stash": "~0.12"
  265. },
  266. "suggest": {
  267. "ext-phpredis": "Pure C implemented extension for PHP"
  268. },
  269. "type": "library",
  270. "autoload": {
  271. "psr-4": {
  272. "League\\Flysystem\\Cached\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "frankdejonge",
  282. "email": "info@frenky.net"
  283. }
  284. ],
  285. "description": "An adapter decorator to enable meta-data caching.",
  286. "support": {
  287. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  288. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  289. },
  290. "time": "2020-07-25T15:56:04+00:00"
  291. },
  292. {
  293. "name": "league/mime-type-detection",
  294. "version": "1.11.0",
  295. "source": {
  296. "type": "git",
  297. "url": "https://github.com/thephpleague/mime-type-detection.git",
  298. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  299. },
  300. "dist": {
  301. "type": "zip",
  302. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  303. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  304. "shasum": ""
  305. },
  306. "require": {
  307. "ext-fileinfo": "*",
  308. "php": "^7.2 || ^8.0"
  309. },
  310. "require-dev": {
  311. "friendsofphp/php-cs-fixer": "^3.2",
  312. "phpstan/phpstan": "^0.12.68",
  313. "phpunit/phpunit": "^8.5.8 || ^9.3"
  314. },
  315. "type": "library",
  316. "autoload": {
  317. "psr-4": {
  318. "League\\MimeTypeDetection\\": "src"
  319. }
  320. },
  321. "notification-url": "https://packagist.org/downloads/",
  322. "license": [
  323. "MIT"
  324. ],
  325. "authors": [
  326. {
  327. "name": "Frank de Jonge",
  328. "email": "info@frankdejonge.nl"
  329. }
  330. ],
  331. "description": "Mime-type detection for Flysystem",
  332. "support": {
  333. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  334. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  335. },
  336. "funding": [
  337. {
  338. "url": "https://github.com/frankdejonge",
  339. "type": "github"
  340. },
  341. {
  342. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  343. "type": "tidelift"
  344. }
  345. ],
  346. "time": "2022-04-17T13:12:02+00:00"
  347. },
  348. {
  349. "name": "mindplay/annotations",
  350. "version": "1.3.2",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/php-annotations/php-annotations.git",
  354. "reference": "7e1547259a6aa7e3abc3832207499943614e9d13"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/php-annotations/php-annotations/zipball/7e1547259a6aa7e3abc3832207499943614e9d13",
  359. "reference": "7e1547259a6aa7e3abc3832207499943614e9d13",
  360. "shasum": ""
  361. },
  362. "require": {
  363. "php": ">=5.3.3"
  364. },
  365. "require-dev": {
  366. "phpunit/php-code-coverage": "~1.2.1",
  367. "phpunit/php-file-iterator": ">=1.3.0@stable"
  368. },
  369. "type": "library",
  370. "extra": {
  371. "branch-alias": {
  372. "dev-master": "1.3.x-dev"
  373. }
  374. },
  375. "autoload": {
  376. "psr-4": {
  377. "mindplay\\annotations\\": "src\\annotations"
  378. }
  379. },
  380. "notification-url": "https://packagist.org/downloads/",
  381. "license": [
  382. "LGPL-3.0+"
  383. ],
  384. "authors": [
  385. {
  386. "name": "Rasmus Schultz",
  387. "email": "rasmus@mindplay.dk"
  388. }
  389. ],
  390. "description": "Industrial-strength annotations for PHP",
  391. "homepage": "http://blog.mindplay.dk/",
  392. "keywords": [
  393. "annotations",
  394. "framework"
  395. ],
  396. "support": {
  397. "issues": "https://github.com/php-annotations/php-annotations/issues",
  398. "source": "https://github.com/php-annotations/php-annotations/tree/1.3.2"
  399. },
  400. "time": "2021-01-21T11:42:37+00:00"
  401. },
  402. {
  403. "name": "phpmailer/phpmailer",
  404. "version": "v6.6.0",
  405. "source": {
  406. "type": "git",
  407. "url": "https://github.com/PHPMailer/PHPMailer.git",
  408. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1"
  409. },
  410. "dist": {
  411. "type": "zip",
  412. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  413. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  414. "shasum": ""
  415. },
  416. "require": {
  417. "ext-ctype": "*",
  418. "ext-filter": "*",
  419. "ext-hash": "*",
  420. "php": ">=5.5.0"
  421. },
  422. "require-dev": {
  423. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  424. "doctrine/annotations": "^1.2",
  425. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  426. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  427. "phpcompatibility/php-compatibility": "^9.3.5",
  428. "roave/security-advisories": "dev-latest",
  429. "squizlabs/php_codesniffer": "^3.6.2",
  430. "yoast/phpunit-polyfills": "^1.0.0"
  431. },
  432. "suggest": {
  433. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  434. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  435. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  436. "psr/log": "For optional PSR-3 debug logging",
  437. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  438. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "PHPMailer\\PHPMailer\\": "src/"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "LGPL-2.1-only"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Marcus Bointon",
  453. "email": "phpmailer@synchromedia.co.uk"
  454. },
  455. {
  456. "name": "Jim Jagielski",
  457. "email": "jimjag@gmail.com"
  458. },
  459. {
  460. "name": "Andy Prevost",
  461. "email": "codeworxtech@users.sourceforge.net"
  462. },
  463. {
  464. "name": "Brent R. Matzelle"
  465. }
  466. ],
  467. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  468. "support": {
  469. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  470. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.6.0"
  471. },
  472. "funding": [
  473. {
  474. "url": "https://github.com/Synchro",
  475. "type": "github"
  476. }
  477. ],
  478. "time": "2022-02-28T15:31:21+00:00"
  479. },
  480. {
  481. "name": "psr/cache",
  482. "version": "1.0.1",
  483. "source": {
  484. "type": "git",
  485. "url": "https://github.com/php-fig/cache.git",
  486. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  487. },
  488. "dist": {
  489. "type": "zip",
  490. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  491. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  492. "shasum": ""
  493. },
  494. "require": {
  495. "php": ">=5.3.0"
  496. },
  497. "type": "library",
  498. "extra": {
  499. "branch-alias": {
  500. "dev-master": "1.0.x-dev"
  501. }
  502. },
  503. "autoload": {
  504. "psr-4": {
  505. "Psr\\Cache\\": "src/"
  506. }
  507. },
  508. "notification-url": "https://packagist.org/downloads/",
  509. "license": [
  510. "MIT"
  511. ],
  512. "authors": [
  513. {
  514. "name": "PHP-FIG",
  515. "homepage": "http://www.php-fig.org/"
  516. }
  517. ],
  518. "description": "Common interface for caching libraries",
  519. "keywords": [
  520. "cache",
  521. "psr",
  522. "psr-6"
  523. ],
  524. "support": {
  525. "source": "https://github.com/php-fig/cache/tree/master"
  526. },
  527. "time": "2016-08-06T20:24:11+00:00"
  528. },
  529. {
  530. "name": "psr/container",
  531. "version": "1.1.2",
  532. "source": {
  533. "type": "git",
  534. "url": "https://github.com/php-fig/container.git",
  535. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  536. },
  537. "dist": {
  538. "type": "zip",
  539. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  540. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  541. "shasum": ""
  542. },
  543. "require": {
  544. "php": ">=7.4.0"
  545. },
  546. "type": "library",
  547. "autoload": {
  548. "psr-4": {
  549. "Psr\\Container\\": "src/"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "PHP-FIG",
  559. "homepage": "https://www.php-fig.org/"
  560. }
  561. ],
  562. "description": "Common Container Interface (PHP FIG PSR-11)",
  563. "homepage": "https://github.com/php-fig/container",
  564. "keywords": [
  565. "PSR-11",
  566. "container",
  567. "container-interface",
  568. "container-interop",
  569. "psr"
  570. ],
  571. "support": {
  572. "issues": "https://github.com/php-fig/container/issues",
  573. "source": "https://github.com/php-fig/container/tree/1.1.2"
  574. },
  575. "time": "2021-11-05T16:50:12+00:00"
  576. },
  577. {
  578. "name": "psr/http-message",
  579. "version": "1.0.1",
  580. "source": {
  581. "type": "git",
  582. "url": "https://github.com/php-fig/http-message.git",
  583. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  584. },
  585. "dist": {
  586. "type": "zip",
  587. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  588. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  589. "shasum": ""
  590. },
  591. "require": {
  592. "php": ">=5.3.0"
  593. },
  594. "type": "library",
  595. "extra": {
  596. "branch-alias": {
  597. "dev-master": "1.0.x-dev"
  598. }
  599. },
  600. "autoload": {
  601. "psr-4": {
  602. "Psr\\Http\\Message\\": "src/"
  603. }
  604. },
  605. "notification-url": "https://packagist.org/downloads/",
  606. "license": [
  607. "MIT"
  608. ],
  609. "authors": [
  610. {
  611. "name": "PHP-FIG",
  612. "homepage": "http://www.php-fig.org/"
  613. }
  614. ],
  615. "description": "Common interface for HTTP messages",
  616. "homepage": "https://github.com/php-fig/http-message",
  617. "keywords": [
  618. "http",
  619. "http-message",
  620. "psr",
  621. "psr-7",
  622. "request",
  623. "response"
  624. ],
  625. "support": {
  626. "source": "https://github.com/php-fig/http-message/tree/master"
  627. },
  628. "time": "2016-08-06T14:39:51+00:00"
  629. },
  630. {
  631. "name": "psr/log",
  632. "version": "1.1.4",
  633. "source": {
  634. "type": "git",
  635. "url": "https://github.com/php-fig/log.git",
  636. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  637. },
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  641. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "php": ">=5.3.0"
  646. },
  647. "type": "library",
  648. "extra": {
  649. "branch-alias": {
  650. "dev-master": "1.1.x-dev"
  651. }
  652. },
  653. "autoload": {
  654. "psr-4": {
  655. "Psr\\Log\\": "Psr/Log/"
  656. }
  657. },
  658. "notification-url": "https://packagist.org/downloads/",
  659. "license": [
  660. "MIT"
  661. ],
  662. "authors": [
  663. {
  664. "name": "PHP-FIG",
  665. "homepage": "https://www.php-fig.org/"
  666. }
  667. ],
  668. "description": "Common interface for logging libraries",
  669. "homepage": "https://github.com/php-fig/log",
  670. "keywords": [
  671. "log",
  672. "psr",
  673. "psr-3"
  674. ],
  675. "support": {
  676. "source": "https://github.com/php-fig/log/tree/1.1.4"
  677. },
  678. "time": "2021-05-03T11:20:27+00:00"
  679. },
  680. {
  681. "name": "psr/simple-cache",
  682. "version": "1.0.1",
  683. "source": {
  684. "type": "git",
  685. "url": "https://github.com/php-fig/simple-cache.git",
  686. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  687. },
  688. "dist": {
  689. "type": "zip",
  690. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  691. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  692. "shasum": ""
  693. },
  694. "require": {
  695. "php": ">=5.3.0"
  696. },
  697. "type": "library",
  698. "extra": {
  699. "branch-alias": {
  700. "dev-master": "1.0.x-dev"
  701. }
  702. },
  703. "autoload": {
  704. "psr-4": {
  705. "Psr\\SimpleCache\\": "src/"
  706. }
  707. },
  708. "notification-url": "https://packagist.org/downloads/",
  709. "license": [
  710. "MIT"
  711. ],
  712. "authors": [
  713. {
  714. "name": "PHP-FIG",
  715. "homepage": "http://www.php-fig.org/"
  716. }
  717. ],
  718. "description": "Common interfaces for simple caching",
  719. "keywords": [
  720. "cache",
  721. "caching",
  722. "psr",
  723. "psr-16",
  724. "simple-cache"
  725. ],
  726. "support": {
  727. "source": "https://github.com/php-fig/simple-cache/tree/master"
  728. },
  729. "time": "2017-10-23T01:57:42+00:00"
  730. },
  731. {
  732. "name": "thinkcmf/cmf",
  733. "version": "v6.0.8",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/thinkcmf/cmf-core.git",
  737. "reference": "30ba807dc80bcd959f0db175924be2c7d3ea2868"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://api.github.com/repos/thinkcmf/cmf-core/zipball/30ba807dc80bcd959f0db175924be2c7d3ea2868",
  742. "reference": "30ba807dc80bcd959f0db175924be2c7d3ea2868",
  743. "shasum": ""
  744. },
  745. "require": {
  746. "electrolinux/phpquery": "^0.9.6",
  747. "ezyang/htmlpurifier": "^4.9",
  748. "mindplay/annotations": "^1.3",
  749. "phpmailer/phpmailer": "~6.0",
  750. "thinkcmf/cmf-extend": "~5.1.0",
  751. "thinkcmf/cmf-route": "^6.0.0",
  752. "thinkcmf/think-view": "~1.0.15",
  753. "topthink/framework": "~6.0.0",
  754. "topthink/think-captcha": "^3.0",
  755. "topthink/think-orm": "^2.0",
  756. "xia/migration": "^6.0"
  757. },
  758. "type": "library",
  759. "extra": {
  760. "think": {
  761. "services": [
  762. "think\\captcha\\CaptchaService"
  763. ]
  764. }
  765. },
  766. "autoload": {
  767. "files": [
  768. "src/common.php"
  769. ],
  770. "psr-4": {
  771. "cmf\\": "src"
  772. },
  773. "classmap": [
  774. "src/App.php",
  775. "src/console/command/VendorPublish.php",
  776. "src/captcha/Captcha.php"
  777. ]
  778. },
  779. "notification-url": "https://packagist.org/downloads/",
  780. "license": [
  781. "Apache-2.0"
  782. ],
  783. "authors": [
  784. {
  785. "name": "catman",
  786. "email": "catman@thinkcmf.com"
  787. }
  788. ],
  789. "description": "The ThinkCMF Core Package",
  790. "support": {
  791. "issues": "https://github.com/thinkcmf/cmf-core/issues",
  792. "source": "https://github.com/thinkcmf/cmf-core/tree/v6.0.8"
  793. },
  794. "time": "2022-04-30T02:37:14+00:00"
  795. },
  796. {
  797. "name": "thinkcmf/cmf-api",
  798. "version": "v6.0.4",
  799. "source": {
  800. "type": "git",
  801. "url": "https://github.com/thinkcmf/cmf-api.git",
  802. "reference": "d597f3d8e4abbbbbe7e777e39983fba658a9a651"
  803. },
  804. "dist": {
  805. "type": "zip",
  806. "url": "https://api.github.com/repos/thinkcmf/cmf-api/zipball/d597f3d8e4abbbbbe7e777e39983fba658a9a651",
  807. "reference": "d597f3d8e4abbbbbe7e777e39983fba658a9a651",
  808. "shasum": ""
  809. },
  810. "require": {
  811. "thinkcmf/cmf": "^6.0.0"
  812. },
  813. "type": "library",
  814. "autoload": {
  815. "files": [],
  816. "psr-4": {
  817. "api\\": "src"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "license": [
  822. "Apache-2.0"
  823. ],
  824. "authors": [
  825. {
  826. "name": "catman",
  827. "email": "catman@thinkcmf.com"
  828. }
  829. ],
  830. "description": "The ThinkCMF 5.1 Core Api Package",
  831. "support": {
  832. "issues": "https://github.com/thinkcmf/cmf-api/issues",
  833. "source": "https://github.com/thinkcmf/cmf-api/tree/v6.0.4"
  834. },
  835. "time": "2022-04-30T12:07:48+00:00"
  836. },
  837. {
  838. "name": "thinkcmf/cmf-app",
  839. "version": "v6.0.6",
  840. "source": {
  841. "type": "git",
  842. "url": "https://github.com/thinkcmf/cmf-app.git",
  843. "reference": "778c32aadf1673d7611f6aa5bfaf95788159e21a"
  844. },
  845. "dist": {
  846. "type": "zip",
  847. "url": "https://api.github.com/repos/thinkcmf/cmf-app/zipball/778c32aadf1673d7611f6aa5bfaf95788159e21a",
  848. "reference": "778c32aadf1673d7611f6aa5bfaf95788159e21a",
  849. "shasum": ""
  850. },
  851. "require": {
  852. "thinkcmf/cmf": "^6.0.0"
  853. },
  854. "type": "library",
  855. "autoload": {
  856. "files": [],
  857. "psr-4": {
  858. "app\\": "src"
  859. }
  860. },
  861. "notification-url": "https://packagist.org/downloads/",
  862. "license": [
  863. "Apache-2.0"
  864. ],
  865. "authors": [
  866. {
  867. "name": "catman",
  868. "email": "catman@thinkcmf.com"
  869. }
  870. ],
  871. "description": "The ThinkCMF App Package",
  872. "support": {
  873. "issues": "https://github.com/thinkcmf/cmf-app/issues",
  874. "source": "https://github.com/thinkcmf/cmf-app/tree/v6.0.6"
  875. },
  876. "time": "2022-04-30T12:23:34+00:00"
  877. },
  878. {
  879. "name": "thinkcmf/cmf-appstore",
  880. "version": "v1.0.5",
  881. "source": {
  882. "type": "git",
  883. "url": "https://github.com/thinkcmf/cmf-appstore.git",
  884. "reference": "f1894e521c52cd666888769c440a2cc4c0d8fd55"
  885. },
  886. "dist": {
  887. "type": "zip",
  888. "url": "https://api.github.com/repos/thinkcmf/cmf-appstore/zipball/f1894e521c52cd666888769c440a2cc4c0d8fd55",
  889. "reference": "f1894e521c52cd666888769c440a2cc4c0d8fd55",
  890. "shasum": ""
  891. },
  892. "require": {
  893. "chamilo/pclzip": "^2.8"
  894. },
  895. "type": "library",
  896. "autoload": {
  897. "files": [],
  898. "psr-4": {
  899. "app\\admin\\": "src"
  900. }
  901. },
  902. "notification-url": "https://packagist.org/downloads/",
  903. "license": [
  904. "Apache-2.0"
  905. ],
  906. "authors": [
  907. {
  908. "name": "catman",
  909. "email": "catman@thinkcmf.com"
  910. }
  911. ],
  912. "description": "The ThinkCMF App Store Package",
  913. "support": {
  914. "issues": "https://github.com/thinkcmf/cmf-appstore/issues",
  915. "source": "https://github.com/thinkcmf/cmf-appstore/tree/v1.0.5"
  916. },
  917. "time": "2022-04-30T12:39:11+00:00"
  918. },
  919. {
  920. "name": "thinkcmf/cmf-extend",
  921. "version": "v5.1.1",
  922. "source": {
  923. "type": "git",
  924. "url": "https://github.com/thinkcmf/cmf-extend.git",
  925. "reference": "500ac89f30b9352dbac4f3f13c88212d8b2a9618"
  926. },
  927. "dist": {
  928. "type": "zip",
  929. "url": "https://api.github.com/repos/thinkcmf/cmf-extend/zipball/500ac89f30b9352dbac4f3f13c88212d8b2a9618",
  930. "reference": "500ac89f30b9352dbac4f3f13c88212d8b2a9618",
  931. "shasum": ""
  932. },
  933. "type": "library",
  934. "autoload": {
  935. "files": [],
  936. "psr-4": {
  937. "dir\\": "src/dir",
  938. "tree\\": "src/tree",
  939. "wxapp\\": "src/wxapp"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "Apache-2.0"
  945. ],
  946. "authors": [
  947. {
  948. "name": "catman",
  949. "email": "catman@thinkcmf.com"
  950. }
  951. ],
  952. "description": "The ThinkCMF extend Package",
  953. "support": {
  954. "issues": "https://github.com/thinkcmf/cmf-extend/issues",
  955. "source": "https://github.com/thinkcmf/cmf-extend/tree/v5.1.1"
  956. },
  957. "time": "2021-02-10T07:02:12+00:00"
  958. },
  959. {
  960. "name": "thinkcmf/cmf-install",
  961. "version": "v6.0.4",
  962. "source": {
  963. "type": "git",
  964. "url": "https://github.com/thinkcmf/cmf-install.git",
  965. "reference": "3da59c433913d117498d7e99869d6903e27188e2"
  966. },
  967. "dist": {
  968. "type": "zip",
  969. "url": "https://api.github.com/repos/thinkcmf/cmf-install/zipball/3da59c433913d117498d7e99869d6903e27188e2",
  970. "reference": "3da59c433913d117498d7e99869d6903e27188e2",
  971. "shasum": ""
  972. },
  973. "type": "library",
  974. "autoload": {
  975. "files": [],
  976. "psr-4": {
  977. "app\\": "src"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "Apache-2.0"
  983. ],
  984. "authors": [
  985. {
  986. "name": "catman",
  987. "email": "catman@thinkcmf.com"
  988. }
  989. ],
  990. "description": "The ThinkCMF Install Package",
  991. "support": {
  992. "issues": "https://github.com/thinkcmf/cmf-install/issues",
  993. "source": "https://github.com/thinkcmf/cmf-install/tree/v6.0.4"
  994. },
  995. "time": "2022-04-30T12:13:32+00:00"
  996. },
  997. {
  998. "name": "thinkcmf/cmf-root",
  999. "version": "v1.0.4",
  1000. "source": {
  1001. "type": "git",
  1002. "url": "https://github.com/thinkcmf/cmf-root.git",
  1003. "reference": "04e343ea2efaa9bdad4c53efaa9efbf6046df687"
  1004. },
  1005. "dist": {
  1006. "type": "zip",
  1007. "url": "https://api.github.com/repos/thinkcmf/cmf-root/zipball/04e343ea2efaa9bdad4c53efaa9efbf6046df687",
  1008. "reference": "04e343ea2efaa9bdad4c53efaa9efbf6046df687",
  1009. "shasum": ""
  1010. },
  1011. "require": {
  1012. "composer-plugin-api": "^1.0||^2.0"
  1013. },
  1014. "require-dev": {
  1015. "composer/composer": "^1.0||^2.0"
  1016. },
  1017. "type": "composer-plugin",
  1018. "extra": {
  1019. "class": "cmf\\composer\\RootDirPlugin"
  1020. },
  1021. "autoload": {
  1022. "psr-4": {
  1023. "cmf\\composer\\": "src"
  1024. }
  1025. },
  1026. "notification-url": "https://packagist.org/downloads/",
  1027. "license": [
  1028. "Apache-2.0"
  1029. ],
  1030. "authors": [
  1031. {
  1032. "name": "catman",
  1033. "email": "catman@thinkcmf.com"
  1034. }
  1035. ],
  1036. "description": "The files in ThinkCMF root dir",
  1037. "support": {
  1038. "issues": "https://github.com/thinkcmf/cmf-root/issues",
  1039. "source": "https://github.com/thinkcmf/cmf-root/tree/v1.0.4"
  1040. },
  1041. "time": "2022-04-30T14:36:07+00:00"
  1042. },
  1043. {
  1044. "name": "thinkcmf/cmf-route",
  1045. "version": "v6.0.4",
  1046. "source": {
  1047. "type": "git",
  1048. "url": "https://github.com/thinkcmf/cmf-route.git",
  1049. "reference": "6ae5e0218461ac6dc16f6c569cc4ee424101deea"
  1050. },
  1051. "dist": {
  1052. "type": "zip",
  1053. "url": "https://api.github.com/repos/thinkcmf/cmf-route/zipball/6ae5e0218461ac6dc16f6c569cc4ee424101deea",
  1054. "reference": "6ae5e0218461ac6dc16f6c569cc4ee424101deea",
  1055. "shasum": ""
  1056. },
  1057. "require": {
  1058. "php": ">=7.1.0"
  1059. },
  1060. "type": "library",
  1061. "autoload": {
  1062. "psr-4": {
  1063. "think\\": "src"
  1064. },
  1065. "classmap": [
  1066. "src/Route.php",
  1067. "src/Http.php",
  1068. "src/route/Rule.php",
  1069. "src/route/Url.php",
  1070. "src/route/dispatch/Controller.php",
  1071. "src/route/dispatch/Url.php"
  1072. ]
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "Apache-2.0"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "liu21st",
  1081. "email": "liu21st@gmail.com"
  1082. },
  1083. {
  1084. "name": "catman",
  1085. "email": "catman@thinkcmf.com"
  1086. }
  1087. ],
  1088. "description": "thinkcmf6 route",
  1089. "support": {
  1090. "issues": "https://github.com/thinkcmf/cmf-route/issues",
  1091. "source": "https://github.com/thinkcmf/cmf-route/tree/v6.0.4"
  1092. },
  1093. "time": "2022-04-30T12:17:17+00:00"
  1094. },
  1095. {
  1096. "name": "thinkcmf/think-template",
  1097. "version": "v2.0.9",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/thinkcmf/think-template.git",
  1101. "reference": "9d52df5f7ab5e1904b3dfa42b6ad49f5ea398c01"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/thinkcmf/think-template/zipball/9d52df5f7ab5e1904b3dfa42b6ad49f5ea398c01",
  1106. "reference": "9d52df5f7ab5e1904b3dfa42b6ad49f5ea398c01",
  1107. "shasum": ""
  1108. },
  1109. "require": {
  1110. "php": ">=7.1.0",
  1111. "psr/simple-cache": "^1.0"
  1112. },
  1113. "type": "library",
  1114. "autoload": {
  1115. "psr-4": {
  1116. "think\\": "src"
  1117. },
  1118. "classmap": [
  1119. "src/View.php"
  1120. ]
  1121. },
  1122. "notification-url": "https://packagist.org/downloads/",
  1123. "license": [
  1124. "Apache-2.0"
  1125. ],
  1126. "authors": [
  1127. {
  1128. "name": "liu21st",
  1129. "email": "liu21st@gmail.com"
  1130. }
  1131. ],
  1132. "description": "the php template engine",
  1133. "support": {
  1134. "source": "https://github.com/thinkcmf/think-template/tree/v2.0.9"
  1135. },
  1136. "time": "2021-02-10T06:11:43+00:00"
  1137. },
  1138. {
  1139. "name": "thinkcmf/think-view",
  1140. "version": "v1.0.15",
  1141. "source": {
  1142. "type": "git",
  1143. "url": "https://github.com/thinkcmf/think-view.git",
  1144. "reference": "1cd8abf6639e5fe4e25f7f244152c9f67779bf67"
  1145. },
  1146. "dist": {
  1147. "type": "zip",
  1148. "url": "https://api.github.com/repos/thinkcmf/think-view/zipball/1cd8abf6639e5fe4e25f7f244152c9f67779bf67",
  1149. "reference": "1cd8abf6639e5fe4e25f7f244152c9f67779bf67",
  1150. "shasum": ""
  1151. },
  1152. "require": {
  1153. "php": ">=7.1.0",
  1154. "thinkcmf/think-template": "~2.0.8"
  1155. },
  1156. "type": "library",
  1157. "autoload": {
  1158. "psr-4": {
  1159. "think\\view\\driver\\": "src"
  1160. }
  1161. },
  1162. "notification-url": "https://packagist.org/downloads/",
  1163. "license": [
  1164. "Apache-2.0"
  1165. ],
  1166. "authors": [
  1167. {
  1168. "name": "liu21st",
  1169. "email": "liu21st@gmail.com"
  1170. }
  1171. ],
  1172. "description": "thinkphp template driver",
  1173. "support": {
  1174. "source": "https://github.com/thinkcmf/think-view/tree/v1.0.15"
  1175. },
  1176. "time": "2020-12-31T05:13:44+00:00"
  1177. },
  1178. {
  1179. "name": "topthink/framework",
  1180. "version": "v6.0.12",
  1181. "source": {
  1182. "type": "git",
  1183. "url": "https://github.com/top-think/framework.git",
  1184. "reference": "e478316ac843c1a884a3b3a7a94db17c4001ff5c"
  1185. },
  1186. "dist": {
  1187. "type": "zip",
  1188. "url": "https://api.github.com/repos/top-think/framework/zipball/e478316ac843c1a884a3b3a7a94db17c4001ff5c",
  1189. "reference": "e478316ac843c1a884a3b3a7a94db17c4001ff5c",
  1190. "shasum": ""
  1191. },
  1192. "require": {
  1193. "ext-json": "*",
  1194. "ext-mbstring": "*",
  1195. "league/flysystem": "^1.1.4",
  1196. "league/flysystem-cached-adapter": "^1.0",
  1197. "php": ">=7.2.5",
  1198. "psr/container": "~1.0",
  1199. "psr/http-message": "^1.0",
  1200. "psr/log": "~1.0",
  1201. "psr/simple-cache": "^1.0",
  1202. "topthink/think-helper": "^3.1.1",
  1203. "topthink/think-orm": "^2.0"
  1204. },
  1205. "require-dev": {
  1206. "guzzlehttp/psr7": "^2.1.0",
  1207. "mikey179/vfsstream": "^1.6",
  1208. "mockery/mockery": "^1.2",
  1209. "phpunit/phpunit": "^7.0"
  1210. },
  1211. "type": "library",
  1212. "autoload": {
  1213. "files": [],
  1214. "psr-4": {
  1215. "think\\": "src/think/"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "Apache-2.0"
  1221. ],
  1222. "authors": [
  1223. {
  1224. "name": "liu21st",
  1225. "email": "liu21st@gmail.com"
  1226. },
  1227. {
  1228. "name": "yunwuxin",
  1229. "email": "448901948@qq.com"
  1230. }
  1231. ],
  1232. "description": "The ThinkPHP Framework.",
  1233. "homepage": "http://thinkphp.cn/",
  1234. "keywords": [
  1235. "framework",
  1236. "orm",
  1237. "thinkphp"
  1238. ],
  1239. "support": {
  1240. "issues": "https://github.com/top-think/framework/issues",
  1241. "source": "https://github.com/top-think/framework/tree/v6.0.12"
  1242. },
  1243. "time": "2022-01-21T06:31:07+00:00"
  1244. },
  1245. {
  1246. "name": "topthink/think-captcha",
  1247. "version": "v3.0.6",
  1248. "source": {
  1249. "type": "git",
  1250. "url": "https://github.com/top-think/think-captcha.git",
  1251. "reference": "3b60feb4d484381ff7ddda4af7582a6b9be5dacf"
  1252. },
  1253. "dist": {
  1254. "type": "zip",
  1255. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/3b60feb4d484381ff7ddda4af7582a6b9be5dacf",
  1256. "reference": "3b60feb4d484381ff7ddda4af7582a6b9be5dacf",
  1257. "shasum": ""
  1258. },
  1259. "require": {
  1260. "topthink/framework": "^6.0.0"
  1261. },
  1262. "type": "library",
  1263. "extra": {
  1264. "think": {
  1265. "services": [
  1266. "think\\captcha\\CaptchaService"
  1267. ],
  1268. "config": {
  1269. "captcha": "src/config.php"
  1270. }
  1271. }
  1272. },
  1273. "autoload": {
  1274. "files": [
  1275. "src/helper.php"
  1276. ],
  1277. "psr-4": {
  1278. "think\\captcha\\": "src/"
  1279. }
  1280. },
  1281. "notification-url": "https://packagist.org/downloads/",
  1282. "license": [
  1283. "Apache-2.0"
  1284. ],
  1285. "authors": [
  1286. {
  1287. "name": "yunwuxin",
  1288. "email": "448901948@qq.com"
  1289. }
  1290. ],
  1291. "description": "captcha package for thinkphp",
  1292. "support": {
  1293. "issues": "https://github.com/top-think/think-captcha/issues",
  1294. "source": "https://github.com/top-think/think-captcha/tree/v3.0.6"
  1295. },
  1296. "time": "2022-03-18T09:11:51+00:00"
  1297. },
  1298. {
  1299. "name": "topthink/think-helper",
  1300. "version": "v3.1.6",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/top-think/think-helper.git",
  1304. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  1309. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "php": ">=7.1.0"
  1314. },
  1315. "require-dev": {
  1316. "phpunit/phpunit": "^9.5"
  1317. },
  1318. "type": "library",
  1319. "autoload": {
  1320. "files": [
  1321. "src/helper.php"
  1322. ],
  1323. "psr-4": {
  1324. "think\\": "src"
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "Apache-2.0"
  1330. ],
  1331. "authors": [
  1332. {
  1333. "name": "yunwuxin",
  1334. "email": "448901948@qq.com"
  1335. }
  1336. ],
  1337. "description": "The ThinkPHP6 Helper Package",
  1338. "support": {
  1339. "issues": "https://github.com/top-think/think-helper/issues",
  1340. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  1341. },
  1342. "time": "2021-12-15T04:27:55+00:00"
  1343. },
  1344. {
  1345. "name": "topthink/think-orm",
  1346. "version": "v2.0.53",
  1347. "source": {
  1348. "type": "git",
  1349. "url": "https://github.com/top-think/think-orm.git",
  1350. "reference": "06783eda65547a70ea686360a897759e1f873fff"
  1351. },
  1352. "dist": {
  1353. "type": "zip",
  1354. "url": "https://api.github.com/repos/top-think/think-orm/zipball/06783eda65547a70ea686360a897759e1f873fff",
  1355. "reference": "06783eda65547a70ea686360a897759e1f873fff",
  1356. "shasum": ""
  1357. },
  1358. "require": {
  1359. "ext-json": "*",
  1360. "ext-pdo": "*",
  1361. "php": ">=7.1.0",
  1362. "psr/log": "~1.0",
  1363. "psr/simple-cache": "^1.0",
  1364. "topthink/think-helper": "^3.1"
  1365. },
  1366. "require-dev": {
  1367. "phpunit/phpunit": "^7|^8|^9.5"
  1368. },
  1369. "type": "library",
  1370. "autoload": {
  1371. "files": [
  1372. "stubs/load_stubs.php"
  1373. ],
  1374. "psr-4": {
  1375. "think\\": "src"
  1376. }
  1377. },
  1378. "notification-url": "https://packagist.org/downloads/",
  1379. "license": [
  1380. "Apache-2.0"
  1381. ],
  1382. "authors": [
  1383. {
  1384. "name": "liu21st",
  1385. "email": "liu21st@gmail.com"
  1386. }
  1387. ],
  1388. "description": "think orm",
  1389. "keywords": [
  1390. "database",
  1391. "orm"
  1392. ],
  1393. "support": {
  1394. "issues": "https://github.com/top-think/think-orm/issues",
  1395. "source": "https://github.com/top-think/think-orm/tree/v2.0.53"
  1396. },
  1397. "time": "2022-02-28T14:54:22+00:00"
  1398. },
  1399. {
  1400. "name": "xia/migration",
  1401. "version": "v6.0.0",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/449134904/artisan.git",
  1405. "reference": "7c9dd1fced5b43a590cebbbb965b22f14d7befd9"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/449134904/artisan/zipball/7c9dd1fced5b43a590cebbbb965b22f14d7befd9",
  1410. "reference": "7c9dd1fced5b43a590cebbbb965b22f14d7befd9",
  1411. "shasum": ""
  1412. },
  1413. "require": {
  1414. "topthink/framework": "^6.0.0",
  1415. "topthink/think-helper": "^3.0.3"
  1416. },
  1417. "type": "library",
  1418. "extra": {
  1419. "think": {
  1420. "services": [
  1421. "think\\migration\\Service"
  1422. ]
  1423. }
  1424. },
  1425. "autoload": {
  1426. "psr-4": {
  1427. "Phinx\\": "phinx/src/Phinx",
  1428. "think\\migration\\": "src"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "Apache-2.0"
  1434. ],
  1435. "authors": [
  1436. {
  1437. "name": "小夏",
  1438. "email": "yyw168@vip.qq.com"
  1439. }
  1440. ],
  1441. "support": {
  1442. "issues": "https://github.com/449134904/artisan/issues",
  1443. "source": "https://github.com/449134904/artisan/tree/v6.0.0"
  1444. },
  1445. "time": "2021-09-30T09:53:18+00:00"
  1446. }
  1447. ],
  1448. "packages-dev": [
  1449. {
  1450. "name": "symfony/polyfill-mbstring",
  1451. "version": "v1.25.0",
  1452. "source": {
  1453. "type": "git",
  1454. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1455. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  1456. },
  1457. "dist": {
  1458. "type": "zip",
  1459. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  1460. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  1461. "shasum": ""
  1462. },
  1463. "require": {
  1464. "php": ">=7.1"
  1465. },
  1466. "provide": {
  1467. "ext-mbstring": "*"
  1468. },
  1469. "suggest": {
  1470. "ext-mbstring": "For best performance"
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-main": "1.23-dev"
  1476. },
  1477. "thanks": {
  1478. "name": "symfony/polyfill",
  1479. "url": "https://github.com/symfony/polyfill"
  1480. }
  1481. },
  1482. "autoload": {
  1483. "files": [
  1484. "bootstrap.php"
  1485. ],
  1486. "psr-4": {
  1487. "Symfony\\Polyfill\\Mbstring\\": ""
  1488. }
  1489. },
  1490. "notification-url": "https://packagist.org/downloads/",
  1491. "license": [
  1492. "MIT"
  1493. ],
  1494. "authors": [
  1495. {
  1496. "name": "Nicolas Grekas",
  1497. "email": "p@tchwork.com"
  1498. },
  1499. {
  1500. "name": "Symfony Community",
  1501. "homepage": "https://symfony.com/contributors"
  1502. }
  1503. ],
  1504. "description": "Symfony polyfill for the Mbstring extension",
  1505. "homepage": "https://symfony.com",
  1506. "keywords": [
  1507. "compatibility",
  1508. "mbstring",
  1509. "polyfill",
  1510. "portable",
  1511. "shim"
  1512. ],
  1513. "support": {
  1514. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0"
  1515. },
  1516. "funding": [
  1517. {
  1518. "url": "https://symfony.com/sponsor",
  1519. "type": "custom"
  1520. },
  1521. {
  1522. "url": "https://github.com/fabpot",
  1523. "type": "github"
  1524. },
  1525. {
  1526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1527. "type": "tidelift"
  1528. }
  1529. ],
  1530. "time": "2021-11-30T18:21:41+00:00"
  1531. },
  1532. {
  1533. "name": "symfony/polyfill-php72",
  1534. "version": "v1.25.0",
  1535. "source": {
  1536. "type": "git",
  1537. "url": "https://github.com/symfony/polyfill-php72.git",
  1538. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  1539. },
  1540. "dist": {
  1541. "type": "zip",
  1542. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  1543. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  1544. "shasum": ""
  1545. },
  1546. "require": {
  1547. "php": ">=7.1"
  1548. },
  1549. "type": "library",
  1550. "extra": {
  1551. "branch-alias": {
  1552. "dev-main": "1.23-dev"
  1553. },
  1554. "thanks": {
  1555. "name": "symfony/polyfill",
  1556. "url": "https://github.com/symfony/polyfill"
  1557. }
  1558. },
  1559. "autoload": {
  1560. "files": [
  1561. "bootstrap.php"
  1562. ],
  1563. "psr-4": {
  1564. "Symfony\\Polyfill\\Php72\\": ""
  1565. }
  1566. },
  1567. "notification-url": "https://packagist.org/downloads/",
  1568. "license": [
  1569. "MIT"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "Nicolas Grekas",
  1574. "email": "p@tchwork.com"
  1575. },
  1576. {
  1577. "name": "Symfony Community",
  1578. "homepage": "https://symfony.com/contributors"
  1579. }
  1580. ],
  1581. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1582. "homepage": "https://symfony.com",
  1583. "keywords": [
  1584. "compatibility",
  1585. "polyfill",
  1586. "portable",
  1587. "shim"
  1588. ],
  1589. "support": {
  1590. "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0"
  1591. },
  1592. "funding": [
  1593. {
  1594. "url": "https://symfony.com/sponsor",
  1595. "type": "custom"
  1596. },
  1597. {
  1598. "url": "https://github.com/fabpot",
  1599. "type": "github"
  1600. },
  1601. {
  1602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1603. "type": "tidelift"
  1604. }
  1605. ],
  1606. "time": "2021-05-27T09:17:38+00:00"
  1607. },
  1608. {
  1609. "name": "symfony/polyfill-php80",
  1610. "version": "v1.25.0",
  1611. "source": {
  1612. "type": "git",
  1613. "url": "https://github.com/symfony/polyfill-php80.git",
  1614. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c"
  1615. },
  1616. "dist": {
  1617. "type": "zip",
  1618. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  1619. "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c",
  1620. "shasum": ""
  1621. },
  1622. "require": {
  1623. "php": ">=7.1"
  1624. },
  1625. "type": "library",
  1626. "extra": {
  1627. "branch-alias": {
  1628. "dev-main": "1.23-dev"
  1629. },
  1630. "thanks": {
  1631. "name": "symfony/polyfill",
  1632. "url": "https://github.com/symfony/polyfill"
  1633. }
  1634. },
  1635. "autoload": {
  1636. "files": [
  1637. "bootstrap.php"
  1638. ],
  1639. "psr-4": {
  1640. "Symfony\\Polyfill\\Php80\\": ""
  1641. },
  1642. "classmap": [
  1643. "Resources/stubs"
  1644. ]
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "MIT"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "Ion Bazan",
  1653. "email": "ion.bazan@gmail.com"
  1654. },
  1655. {
  1656. "name": "Nicolas Grekas",
  1657. "email": "p@tchwork.com"
  1658. },
  1659. {
  1660. "name": "Symfony Community",
  1661. "homepage": "https://symfony.com/contributors"
  1662. }
  1663. ],
  1664. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1665. "homepage": "https://symfony.com",
  1666. "keywords": [
  1667. "compatibility",
  1668. "polyfill",
  1669. "portable",
  1670. "shim"
  1671. ],
  1672. "support": {
  1673. "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0"
  1674. },
  1675. "funding": [
  1676. {
  1677. "url": "https://symfony.com/sponsor",
  1678. "type": "custom"
  1679. },
  1680. {
  1681. "url": "https://github.com/fabpot",
  1682. "type": "github"
  1683. },
  1684. {
  1685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1686. "type": "tidelift"
  1687. }
  1688. ],
  1689. "time": "2022-03-04T08:16:47+00:00"
  1690. },
  1691. {
  1692. "name": "symfony/var-dumper",
  1693. "version": "v4.4.41",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/symfony/var-dumper.git",
  1697. "reference": "58eb36075c04aaf92a7a9f38ee9a8b97e24eb481"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/58eb36075c04aaf92a7a9f38ee9a8b97e24eb481",
  1702. "reference": "58eb36075c04aaf92a7a9f38ee9a8b97e24eb481",
  1703. "shasum": ""
  1704. },
  1705. "require": {
  1706. "php": ">=7.1.3",
  1707. "symfony/polyfill-mbstring": "~1.0",
  1708. "symfony/polyfill-php72": "~1.5",
  1709. "symfony/polyfill-php80": "^1.16"
  1710. },
  1711. "conflict": {
  1712. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1713. "symfony/console": "<3.4"
  1714. },
  1715. "require-dev": {
  1716. "ext-iconv": "*",
  1717. "symfony/console": "^3.4|^4.0|^5.0",
  1718. "symfony/process": "^4.4|^5.0",
  1719. "twig/twig": "^1.43|^2.13|^3.0.4"
  1720. },
  1721. "suggest": {
  1722. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1723. "ext-intl": "To show region name in time zone dump",
  1724. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  1725. },
  1726. "bin": [
  1727. "Resources/bin/var-dump-server"
  1728. ],
  1729. "type": "library",
  1730. "autoload": {
  1731. "files": [
  1732. "Resources/functions/dump.php"
  1733. ],
  1734. "psr-4": {
  1735. "Symfony\\Component\\VarDumper\\": ""
  1736. },
  1737. "exclude-from-classmap": [
  1738. "/Tests/"
  1739. ]
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "MIT"
  1744. ],
  1745. "authors": [
  1746. {
  1747. "name": "Nicolas Grekas",
  1748. "email": "p@tchwork.com"
  1749. },
  1750. {
  1751. "name": "Symfony Community",
  1752. "homepage": "https://symfony.com/contributors"
  1753. }
  1754. ],
  1755. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  1756. "homepage": "https://symfony.com",
  1757. "keywords": [
  1758. "debug",
  1759. "dump"
  1760. ],
  1761. "support": {
  1762. "source": "https://github.com/symfony/var-dumper/tree/v4.4.41"
  1763. },
  1764. "funding": [
  1765. {
  1766. "url": "https://symfony.com/sponsor",
  1767. "type": "custom"
  1768. },
  1769. {
  1770. "url": "https://github.com/fabpot",
  1771. "type": "github"
  1772. },
  1773. {
  1774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1775. "type": "tidelift"
  1776. }
  1777. ],
  1778. "time": "2022-04-25T21:15:06+00:00"
  1779. },
  1780. {
  1781. "name": "topthink/think-trace",
  1782. "version": "v1.4",
  1783. "source": {
  1784. "type": "git",
  1785. "url": "https://github.com/top-think/think-trace.git",
  1786. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
  1787. },
  1788. "dist": {
  1789. "type": "zip",
  1790. "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  1791. "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
  1792. "shasum": ""
  1793. },
  1794. "require": {
  1795. "php": ">=7.1.0",
  1796. "topthink/framework": "^6.0.0"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "think": {
  1801. "services": [
  1802. "think\\trace\\Service"
  1803. ],
  1804. "config": {
  1805. "trace": "src/config.php"
  1806. }
  1807. }
  1808. },
  1809. "autoload": {
  1810. "psr-4": {
  1811. "think\\trace\\": "src"
  1812. }
  1813. },
  1814. "notification-url": "https://packagist.org/downloads/",
  1815. "license": [
  1816. "Apache-2.0"
  1817. ],
  1818. "authors": [
  1819. {
  1820. "name": "liu21st",
  1821. "email": "liu21st@gmail.com"
  1822. }
  1823. ],
  1824. "description": "thinkphp debug trace",
  1825. "support": {
  1826. "issues": "https://github.com/top-think/think-trace/issues",
  1827. "source": "https://github.com/top-think/think-trace/tree/v1.4"
  1828. },
  1829. "time": "2020-06-29T05:27:28+00:00"
  1830. }
  1831. ],
  1832. "aliases": [],
  1833. "minimum-stability": "stable",
  1834. "stability-flags": [],
  1835. "prefer-stable": true,
  1836. "prefer-lowest": false,
  1837. "platform": {
  1838. "php": ">=7.1.0",
  1839. "ext-json": "*",
  1840. "ext-curl": "*",
  1841. "ext-pdo": "*"
  1842. },
  1843. "platform-dev": [],
  1844. "plugin-api-version": "2.3.0"
  1845. }