installed.json 65 KB

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