installed.json 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517
  1. {
  2. "packages": [
  3. {
  4. "name": "easywechat-composer/easywechat-composer",
  5. "version": "1.4.1",
  6. "version_normalized": "1.4.1.0",
  7. "dist": {
  8. "type": "zip",
  9. "url": "https://mirrors.cloud.tencent.com/repository/composer/easywechat-composer/easywechat-composer/1.4.1/easywechat-composer-easywechat-composer-1.4.1.zip",
  10. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  11. "shasum": ""
  12. },
  13. "require": {
  14. "composer-plugin-api": "^1.0 || ^2.0",
  15. "php": ">=7.0"
  16. },
  17. "require-dev": {
  18. "composer/composer": "^1.0 || ^2.0",
  19. "phpunit/phpunit": "^6.5 || ^7.0"
  20. },
  21. "time": "2021-07-05T04:03:22+00:00",
  22. "type": "composer-plugin",
  23. "extra": {
  24. "class": "EasyWeChatComposer\\Plugin"
  25. },
  26. "installation-source": "dist",
  27. "autoload": {
  28. "psr-4": {
  29. "EasyWeChatComposer\\": "src/"
  30. }
  31. },
  32. "license": [
  33. "MIT"
  34. ],
  35. "authors": [
  36. {
  37. "name": "张铭阳",
  38. "email": "mingyoungcheung@gmail.com"
  39. }
  40. ],
  41. "description": "The composer plugin for EasyWeChat",
  42. "install-path": "../easywechat-composer/easywechat-composer"
  43. },
  44. {
  45. "name": "ezyang/htmlpurifier",
  46. "version": "v4.16.0",
  47. "version_normalized": "4.16.0.0",
  48. "dist": {
  49. "type": "zip",
  50. "url": "https://mirrors.cloud.tencent.com/repository/composer/ezyang/htmlpurifier/v4.16.0/ezyang-htmlpurifier-v4.16.0.zip",
  51. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  52. "shasum": ""
  53. },
  54. "require": {
  55. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  56. },
  57. "require-dev": {
  58. "cerdic/css-tidy": "^1.7 || ^2.0",
  59. "simpletest/simpletest": "dev-master"
  60. },
  61. "suggest": {
  62. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  63. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  64. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  65. "ext-tidy": "Used for pretty-printing HTML"
  66. },
  67. "time": "2022-09-18T07:06:19+00:00",
  68. "type": "library",
  69. "installation-source": "dist",
  70. "autoload": {
  71. "files": [
  72. "library/HTMLPurifier.composer.php"
  73. ],
  74. "psr-0": {
  75. "HTMLPurifier": "library/"
  76. },
  77. "exclude-from-classmap": [
  78. "/library/HTMLPurifier/Language/"
  79. ]
  80. },
  81. "license": [
  82. "LGPL-2.1-or-later"
  83. ],
  84. "authors": [
  85. {
  86. "name": "Edward Z. Yang",
  87. "email": "admin@htmlpurifier.org",
  88. "homepage": "http://ezyang.com"
  89. }
  90. ],
  91. "description": "Standards compliant HTML filter written in PHP",
  92. "homepage": "http://htmlpurifier.org/",
  93. "keywords": [
  94. "html"
  95. ],
  96. "install-path": "../ezyang/htmlpurifier"
  97. },
  98. {
  99. "name": "guzzlehttp/guzzle",
  100. "version": "7.5.0",
  101. "version_normalized": "7.5.0.0",
  102. "dist": {
  103. "type": "zip",
  104. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/guzzle/7.5.0/guzzlehttp-guzzle-7.5.0.zip",
  105. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  106. "shasum": ""
  107. },
  108. "require": {
  109. "ext-json": "*",
  110. "guzzlehttp/promises": "^1.5",
  111. "guzzlehttp/psr7": "^1.9 || ^2.4",
  112. "php": "^7.2.5 || ^8.0",
  113. "psr/http-client": "^1.0",
  114. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  115. },
  116. "provide": {
  117. "psr/http-client-implementation": "1.0"
  118. },
  119. "require-dev": {
  120. "bamarni/composer-bin-plugin": "^1.8.1",
  121. "ext-curl": "*",
  122. "php-http/client-integration-tests": "^3.0",
  123. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  124. "psr/log": "^1.1 || ^2.0 || ^3.0"
  125. },
  126. "suggest": {
  127. "ext-curl": "Required for CURL handler support",
  128. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  129. "psr/log": "Required for using the Log middleware"
  130. },
  131. "time": "2022-08-28T15:39:27+00:00",
  132. "type": "library",
  133. "extra": {
  134. "bamarni-bin": {
  135. "bin-links": true,
  136. "forward-command": false
  137. },
  138. "branch-alias": {
  139. "dev-master": "7.5-dev"
  140. }
  141. },
  142. "installation-source": "dist",
  143. "autoload": {
  144. "files": [
  145. "src/functions_include.php"
  146. ],
  147. "psr-4": {
  148. "GuzzleHttp\\": "src/"
  149. }
  150. },
  151. "license": [
  152. "MIT"
  153. ],
  154. "authors": [
  155. {
  156. "name": "Graham Campbell",
  157. "email": "hello@gjcampbell.co.uk",
  158. "homepage": "https://github.com/GrahamCampbell"
  159. },
  160. {
  161. "name": "Michael Dowling",
  162. "email": "mtdowling@gmail.com",
  163. "homepage": "https://github.com/mtdowling"
  164. },
  165. {
  166. "name": "Jeremy Lindblom",
  167. "email": "jeremeamia@gmail.com",
  168. "homepage": "https://github.com/jeremeamia"
  169. },
  170. {
  171. "name": "George Mponos",
  172. "email": "gmponos@gmail.com",
  173. "homepage": "https://github.com/gmponos"
  174. },
  175. {
  176. "name": "Tobias Nyholm",
  177. "email": "tobias.nyholm@gmail.com",
  178. "homepage": "https://github.com/Nyholm"
  179. },
  180. {
  181. "name": "Márk Sági-Kazár",
  182. "email": "mark.sagikazar@gmail.com",
  183. "homepage": "https://github.com/sagikazarmark"
  184. },
  185. {
  186. "name": "Tobias Schultze",
  187. "email": "webmaster@tubo-world.de",
  188. "homepage": "https://github.com/Tobion"
  189. }
  190. ],
  191. "description": "Guzzle is a PHP HTTP client library",
  192. "keywords": [
  193. "client",
  194. "curl",
  195. "framework",
  196. "http",
  197. "http client",
  198. "psr-18",
  199. "psr-7",
  200. "rest",
  201. "web service"
  202. ],
  203. "install-path": "../guzzlehttp/guzzle"
  204. },
  205. {
  206. "name": "guzzlehttp/promises",
  207. "version": "1.5.2",
  208. "version_normalized": "1.5.2.0",
  209. "dist": {
  210. "type": "zip",
  211. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/promises/1.5.2/guzzlehttp-promises-1.5.2.zip",
  212. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  213. "shasum": ""
  214. },
  215. "require": {
  216. "php": ">=5.5"
  217. },
  218. "require-dev": {
  219. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  220. },
  221. "time": "2022-08-28T14:55:35+00:00",
  222. "type": "library",
  223. "extra": {
  224. "branch-alias": {
  225. "dev-master": "1.5-dev"
  226. }
  227. },
  228. "installation-source": "dist",
  229. "autoload": {
  230. "files": [
  231. "src/functions_include.php"
  232. ],
  233. "psr-4": {
  234. "GuzzleHttp\\Promise\\": "src/"
  235. }
  236. },
  237. "license": [
  238. "MIT"
  239. ],
  240. "authors": [
  241. {
  242. "name": "Graham Campbell",
  243. "email": "hello@gjcampbell.co.uk",
  244. "homepage": "https://github.com/GrahamCampbell"
  245. },
  246. {
  247. "name": "Michael Dowling",
  248. "email": "mtdowling@gmail.com",
  249. "homepage": "https://github.com/mtdowling"
  250. },
  251. {
  252. "name": "Tobias Nyholm",
  253. "email": "tobias.nyholm@gmail.com",
  254. "homepage": "https://github.com/Nyholm"
  255. },
  256. {
  257. "name": "Tobias Schultze",
  258. "email": "webmaster@tubo-world.de",
  259. "homepage": "https://github.com/Tobion"
  260. }
  261. ],
  262. "description": "Guzzle promises library",
  263. "keywords": [
  264. "promise"
  265. ],
  266. "install-path": "../guzzlehttp/promises"
  267. },
  268. {
  269. "name": "guzzlehttp/psr7",
  270. "version": "2.4.3",
  271. "version_normalized": "2.4.3.0",
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/psr7/2.4.3/guzzlehttp-psr7-2.4.3.zip",
  275. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "php": "^7.2.5 || ^8.0",
  280. "psr/http-factory": "^1.0",
  281. "psr/http-message": "^1.0",
  282. "ralouphie/getallheaders": "^3.0"
  283. },
  284. "provide": {
  285. "psr/http-factory-implementation": "1.0",
  286. "psr/http-message-implementation": "1.0"
  287. },
  288. "require-dev": {
  289. "bamarni/composer-bin-plugin": "^1.8.1",
  290. "http-interop/http-factory-tests": "^0.9",
  291. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  292. },
  293. "suggest": {
  294. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  295. },
  296. "time": "2022-10-26T14:07:24+00:00",
  297. "type": "library",
  298. "extra": {
  299. "bamarni-bin": {
  300. "bin-links": true,
  301. "forward-command": false
  302. },
  303. "branch-alias": {
  304. "dev-master": "2.4-dev"
  305. }
  306. },
  307. "installation-source": "dist",
  308. "autoload": {
  309. "psr-4": {
  310. "GuzzleHttp\\Psr7\\": "src/"
  311. }
  312. },
  313. "license": [
  314. "MIT"
  315. ],
  316. "authors": [
  317. {
  318. "name": "Graham Campbell",
  319. "email": "hello@gjcampbell.co.uk",
  320. "homepage": "https://github.com/GrahamCampbell"
  321. },
  322. {
  323. "name": "Michael Dowling",
  324. "email": "mtdowling@gmail.com",
  325. "homepage": "https://github.com/mtdowling"
  326. },
  327. {
  328. "name": "George Mponos",
  329. "email": "gmponos@gmail.com",
  330. "homepage": "https://github.com/gmponos"
  331. },
  332. {
  333. "name": "Tobias Nyholm",
  334. "email": "tobias.nyholm@gmail.com",
  335. "homepage": "https://github.com/Nyholm"
  336. },
  337. {
  338. "name": "Márk Sági-Kazár",
  339. "email": "mark.sagikazar@gmail.com",
  340. "homepage": "https://github.com/sagikazarmark"
  341. },
  342. {
  343. "name": "Tobias Schultze",
  344. "email": "webmaster@tubo-world.de",
  345. "homepage": "https://github.com/Tobion"
  346. },
  347. {
  348. "name": "Márk Sági-Kazár",
  349. "email": "mark.sagikazar@gmail.com",
  350. "homepage": "https://sagikazarmark.hu"
  351. }
  352. ],
  353. "description": "PSR-7 message implementation that also provides common utility methods",
  354. "keywords": [
  355. "http",
  356. "message",
  357. "psr-7",
  358. "request",
  359. "response",
  360. "stream",
  361. "uri",
  362. "url"
  363. ],
  364. "install-path": "../guzzlehttp/psr7"
  365. },
  366. {
  367. "name": "karsonzhang/fastadmin-addons",
  368. "version": "1.3.3",
  369. "version_normalized": "1.3.3.0",
  370. "dist": {
  371. "type": "zip",
  372. "url": "https://mirrors.cloud.tencent.com/repository/composer/karsonzhang/fastadmin-addons/1.3.3/karsonzhang-fastadmin-addons-1.3.3.zip",
  373. "reference": "f5bb4dabda55271b08371a8ae9355a205be48c56",
  374. "shasum": ""
  375. },
  376. "require": {
  377. "nelexa/zip": "^3.3",
  378. "php": ">=7.0.0",
  379. "symfony/var-exporter": "^4.4.13"
  380. },
  381. "time": "2022-05-27T09:30:12+00:00",
  382. "type": "library",
  383. "extra": {
  384. "think-config": {
  385. "addons": "src/config.php"
  386. }
  387. },
  388. "installation-source": "dist",
  389. "autoload": {
  390. "files": [
  391. "src/common.php"
  392. ],
  393. "psr-4": {
  394. "think\\": "src/"
  395. }
  396. },
  397. "license": [
  398. "Apache-2.0"
  399. ],
  400. "authors": [
  401. {
  402. "name": "Karson",
  403. "email": "karson@fastadmin.net"
  404. },
  405. {
  406. "name": "xiaobo.sun",
  407. "email": "xiaobo.sun@qq.com"
  408. }
  409. ],
  410. "description": "addons package for fastadmin",
  411. "homepage": "https://github.com/karsonzhang/fastadmin-addons",
  412. "install-path": "../karsonzhang/fastadmin-addons"
  413. },
  414. {
  415. "name": "maennchen/zipstream-php",
  416. "version": "2.2.6",
  417. "version_normalized": "2.2.6.0",
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://mirrors.cloud.tencent.com/repository/composer/maennchen/zipstream-php/2.2.6/maennchen-zipstream-php-2.2.6.zip",
  421. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "myclabs/php-enum": "^1.5",
  426. "php": "^7.4 || ^8.0",
  427. "psr/http-message": "^1.0",
  428. "symfony/polyfill-mbstring": "^1.0"
  429. },
  430. "require-dev": {
  431. "ext-zip": "*",
  432. "friendsofphp/php-cs-fixer": "^3.9",
  433. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  434. "mikey179/vfsstream": "^1.6",
  435. "php-coveralls/php-coveralls": "^2.4",
  436. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  437. "vimeo/psalm": "^4.1"
  438. },
  439. "time": "2022-11-25T18:57:19+00:00",
  440. "type": "library",
  441. "installation-source": "dist",
  442. "autoload": {
  443. "psr-4": {
  444. "ZipStream\\": "src/"
  445. }
  446. },
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Paul Duncan",
  453. "email": "pabs@pablotron.org"
  454. },
  455. {
  456. "name": "Jonatan Männchen",
  457. "email": "jonatan@maennchen.ch"
  458. },
  459. {
  460. "name": "Jesse Donat",
  461. "email": "donatj@gmail.com"
  462. },
  463. {
  464. "name": "András Kolesár",
  465. "email": "kolesar@kolesar.hu"
  466. }
  467. ],
  468. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  469. "keywords": [
  470. "stream",
  471. "zip"
  472. ],
  473. "install-path": "../maennchen/zipstream-php"
  474. },
  475. {
  476. "name": "markbaker/complex",
  477. "version": "3.0.2",
  478. "version_normalized": "3.0.2.0",
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://mirrors.cloud.tencent.com/repository/composer/markbaker/complex/3.0.2/markbaker-complex-3.0.2.zip",
  482. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  483. "shasum": ""
  484. },
  485. "require": {
  486. "php": "^7.2 || ^8.0"
  487. },
  488. "require-dev": {
  489. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  490. "phpcompatibility/php-compatibility": "^9.3",
  491. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  492. "squizlabs/php_codesniffer": "^3.7"
  493. },
  494. "time": "2022-12-06T16:21:08+00:00",
  495. "type": "library",
  496. "installation-source": "dist",
  497. "autoload": {
  498. "psr-4": {
  499. "Complex\\": "classes/src/"
  500. }
  501. },
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Mark Baker",
  508. "email": "mark@lange.demon.co.uk"
  509. }
  510. ],
  511. "description": "PHP Class for working with complex numbers",
  512. "homepage": "https://github.com/MarkBaker/PHPComplex",
  513. "keywords": [
  514. "complex",
  515. "mathematics"
  516. ],
  517. "install-path": "../markbaker/complex"
  518. },
  519. {
  520. "name": "markbaker/matrix",
  521. "version": "3.0.1",
  522. "version_normalized": "3.0.1.0",
  523. "dist": {
  524. "type": "zip",
  525. "url": "https://mirrors.cloud.tencent.com/repository/composer/markbaker/matrix/3.0.1/markbaker-matrix-3.0.1.zip",
  526. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  527. "shasum": ""
  528. },
  529. "require": {
  530. "php": "^7.1 || ^8.0"
  531. },
  532. "require-dev": {
  533. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  534. "phpcompatibility/php-compatibility": "^9.3",
  535. "phpdocumentor/phpdocumentor": "2.*",
  536. "phploc/phploc": "^4.0",
  537. "phpmd/phpmd": "2.*",
  538. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  539. "sebastian/phpcpd": "^4.0",
  540. "squizlabs/php_codesniffer": "^3.7"
  541. },
  542. "time": "2022-12-02T22:17:43+00:00",
  543. "type": "library",
  544. "installation-source": "dist",
  545. "autoload": {
  546. "psr-4": {
  547. "Matrix\\": "classes/src/"
  548. }
  549. },
  550. "license": [
  551. "MIT"
  552. ],
  553. "authors": [
  554. {
  555. "name": "Mark Baker",
  556. "email": "mark@demon-angel.eu"
  557. }
  558. ],
  559. "description": "PHP Class for working with matrices",
  560. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  561. "keywords": [
  562. "mathematics",
  563. "matrix",
  564. "vector"
  565. ],
  566. "install-path": "../markbaker/matrix"
  567. },
  568. {
  569. "name": "monolog/monolog",
  570. "version": "2.8.0",
  571. "version_normalized": "2.8.0.0",
  572. "dist": {
  573. "type": "zip",
  574. "url": "https://mirrors.cloud.tencent.com/repository/composer/monolog/monolog/2.8.0/monolog-monolog-2.8.0.zip",
  575. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  576. "shasum": ""
  577. },
  578. "require": {
  579. "php": ">=7.2",
  580. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  581. },
  582. "provide": {
  583. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  584. },
  585. "require-dev": {
  586. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  587. "doctrine/couchdb": "~1.0@dev",
  588. "elasticsearch/elasticsearch": "^7 || ^8",
  589. "ext-json": "*",
  590. "graylog2/gelf-php": "^1.4.2",
  591. "guzzlehttp/guzzle": "^7.4",
  592. "guzzlehttp/psr7": "^2.2",
  593. "mongodb/mongodb": "^1.8",
  594. "php-amqplib/php-amqplib": "~2.4 || ^3",
  595. "phpspec/prophecy": "^1.15",
  596. "phpstan/phpstan": "^0.12.91",
  597. "phpunit/phpunit": "^8.5.14",
  598. "predis/predis": "^1.1 || ^2.0",
  599. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  600. "ruflin/elastica": "^7",
  601. "swiftmailer/swiftmailer": "^5.3|^6.0",
  602. "symfony/mailer": "^5.4 || ^6",
  603. "symfony/mime": "^5.4 || ^6"
  604. },
  605. "suggest": {
  606. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  607. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  608. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  609. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  610. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  611. "ext-mbstring": "Allow to work properly with unicode symbols",
  612. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  613. "ext-openssl": "Required to send log messages using SSL",
  614. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  615. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  616. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  617. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  618. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  619. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  620. },
  621. "time": "2022-07-24T11:55:47+00:00",
  622. "type": "library",
  623. "extra": {
  624. "branch-alias": {
  625. "dev-main": "2.x-dev"
  626. }
  627. },
  628. "installation-source": "dist",
  629. "autoload": {
  630. "psr-4": {
  631. "Monolog\\": "src/Monolog"
  632. }
  633. },
  634. "license": [
  635. "MIT"
  636. ],
  637. "authors": [
  638. {
  639. "name": "Jordi Boggiano",
  640. "email": "j.boggiano@seld.be",
  641. "homepage": "https://seld.be"
  642. }
  643. ],
  644. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  645. "homepage": "https://github.com/Seldaek/monolog",
  646. "keywords": [
  647. "log",
  648. "logging",
  649. "psr-3"
  650. ],
  651. "install-path": "../monolog/monolog"
  652. },
  653. {
  654. "name": "myclabs/php-enum",
  655. "version": "1.8.4",
  656. "version_normalized": "1.8.4.0",
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://mirrors.cloud.tencent.com/repository/composer/myclabs/php-enum/1.8.4/myclabs-php-enum-1.8.4.zip",
  660. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  661. "shasum": ""
  662. },
  663. "require": {
  664. "ext-json": "*",
  665. "php": "^7.3 || ^8.0"
  666. },
  667. "require-dev": {
  668. "phpunit/phpunit": "^9.5",
  669. "squizlabs/php_codesniffer": "1.*",
  670. "vimeo/psalm": "^4.6.2"
  671. },
  672. "time": "2022-08-04T09:53:51+00:00",
  673. "type": "library",
  674. "installation-source": "dist",
  675. "autoload": {
  676. "psr-4": {
  677. "MyCLabs\\Enum\\": "src/"
  678. },
  679. "classmap": [
  680. "stubs/Stringable.php"
  681. ]
  682. },
  683. "license": [
  684. "MIT"
  685. ],
  686. "authors": [
  687. {
  688. "name": "PHP Enum contributors",
  689. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  690. }
  691. ],
  692. "description": "PHP Enum implementation",
  693. "homepage": "http://github.com/myclabs/php-enum",
  694. "keywords": [
  695. "enum"
  696. ],
  697. "install-path": "../myclabs/php-enum"
  698. },
  699. {
  700. "name": "nelexa/zip",
  701. "version": "3.3.3",
  702. "version_normalized": "3.3.3.0",
  703. "dist": {
  704. "type": "zip",
  705. "url": "https://mirrors.cloud.tencent.com/repository/composer/nelexa/zip/3.3.3/nelexa-zip-3.3.3.zip",
  706. "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6",
  707. "shasum": ""
  708. },
  709. "require": {
  710. "ext-zlib": "*",
  711. "paragonie/random_compat": "*",
  712. "php": "^5.5.9 || ^7.0",
  713. "psr/http-message": "^1.0",
  714. "symfony/finder": "^3.0|^4.0|^5.0"
  715. },
  716. "require-dev": {
  717. "ext-bz2": "*",
  718. "ext-fileinfo": "*",
  719. "ext-openssl": "*",
  720. "ext-xml": "*",
  721. "guzzlehttp/psr7": "^1.6",
  722. "phpunit/phpunit": "^4.8|^5.7",
  723. "symfony/var-dumper": "^3.0|^4.0|^5.0"
  724. },
  725. "suggest": {
  726. "ext-bz2": "Needed to support BZIP2 compression",
  727. "ext-fileinfo": "Needed to get mime-type file",
  728. "ext-mcrypt": "Needed to support encrypt zip entries or use ext-openssl",
  729. "ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt"
  730. },
  731. "time": "2020-07-11T21:01:42+00:00",
  732. "type": "library",
  733. "installation-source": "dist",
  734. "autoload": {
  735. "psr-4": {
  736. "PhpZip\\": "src/"
  737. }
  738. },
  739. "license": [
  740. "MIT"
  741. ],
  742. "authors": [
  743. {
  744. "name": "Ne-Lexa",
  745. "email": "alexey@nelexa.ru",
  746. "role": "Developer"
  747. }
  748. ],
  749. "description": "PhpZip is a php-library for extended work with ZIP-archives. Open, create, update, delete, extract and get info tool. Supports appending to existing ZIP files, WinZip AES encryption, Traditional PKWARE Encryption, ZipAlign tool, BZIP2 compression, external file attributes and ZIP64 extensions. Alternative ZipArchive. It does not require php-zip extension.",
  750. "homepage": "https://github.com/Ne-Lexa/php-zip",
  751. "keywords": [
  752. "archive",
  753. "extract",
  754. "unzip",
  755. "winzip",
  756. "zip",
  757. "zipalign",
  758. "ziparchive"
  759. ],
  760. "install-path": "../nelexa/zip"
  761. },
  762. {
  763. "name": "overtrue/pinyin",
  764. "version": "3.0.6",
  765. "version_normalized": "3.0.6.0",
  766. "dist": {
  767. "type": "zip",
  768. "url": "https://mirrors.cloud.tencent.com/repository/composer/overtrue/pinyin/3.0.6/overtrue-pinyin-3.0.6.zip",
  769. "reference": "3b781d267197b74752daa32814d3a2cf5d140779",
  770. "shasum": ""
  771. },
  772. "require": {
  773. "php": ">=5.3"
  774. },
  775. "require-dev": {
  776. "phpunit/phpunit": "~4.8"
  777. },
  778. "time": "2017-07-10T07:20:01+00:00",
  779. "type": "library",
  780. "installation-source": "dist",
  781. "autoload": {
  782. "psr-4": {
  783. "Overtrue\\Pinyin\\": "src/"
  784. }
  785. },
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Carlos",
  792. "homepage": "http://github.com/overtrue"
  793. }
  794. ],
  795. "description": "Chinese to pinyin translator.",
  796. "homepage": "https://github.com/overtrue/pinyin",
  797. "keywords": [
  798. "Chinese",
  799. "Pinyin",
  800. "cn2pinyin"
  801. ],
  802. "install-path": "../overtrue/pinyin"
  803. },
  804. {
  805. "name": "overtrue/socialite",
  806. "version": "2.0.24",
  807. "version_normalized": "2.0.24.0",
  808. "dist": {
  809. "type": "zip",
  810. "url": "https://mirrors.tencent.com/repository/composer/overtrue/socialite/2.0.24/overtrue-socialite-2.0.24.zip",
  811. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  812. "shasum": ""
  813. },
  814. "require": {
  815. "ext-json": "*",
  816. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  817. "php": ">=5.6",
  818. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  819. },
  820. "require-dev": {
  821. "mockery/mockery": "~1.2",
  822. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  823. },
  824. "time": "2021-05-13T16:04:48+00:00",
  825. "type": "library",
  826. "installation-source": "dist",
  827. "autoload": {
  828. "psr-4": {
  829. "Overtrue\\Socialite\\": "src/"
  830. }
  831. },
  832. "license": [
  833. "MIT"
  834. ],
  835. "authors": [
  836. {
  837. "name": "overtrue",
  838. "email": "anzhengchao@gmail.com"
  839. }
  840. ],
  841. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  842. "keywords": [
  843. "login",
  844. "oauth",
  845. "qq",
  846. "social",
  847. "wechat",
  848. "weibo"
  849. ],
  850. "install-path": "../overtrue/socialite"
  851. },
  852. {
  853. "name": "overtrue/wechat",
  854. "version": "4.7.0",
  855. "version_normalized": "4.7.0.0",
  856. "dist": {
  857. "type": "zip",
  858. "url": "https://mirrors.cloud.tencent.com/repository/composer/overtrue/wechat/4.7.0/overtrue-wechat-4.7.0.zip",
  859. "reference": "4accb0627803ffb6e45d2988898a0293d2a48e68",
  860. "shasum": ""
  861. },
  862. "require": {
  863. "easywechat-composer/easywechat-composer": "^1.1",
  864. "ext-fileinfo": "*",
  865. "ext-openssl": "*",
  866. "ext-simplexml": "*",
  867. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  868. "monolog/monolog": "^1.22 || ^2.0",
  869. "overtrue/socialite": "~2.0",
  870. "php": ">=7.2",
  871. "pimple/pimple": "^3.0",
  872. "psr/simple-cache": "^1.0",
  873. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  874. "symfony/event-dispatcher": "^4.3 || ^5.0",
  875. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  876. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  877. },
  878. "require-dev": {
  879. "friendsofphp/php-cs-fixer": "^2.15",
  880. "mikey179/vfsstream": "^1.6",
  881. "mockery/mockery": "^1.2.3",
  882. "phpstan/phpstan": "^0.12.0",
  883. "phpunit/phpunit": "^7.5"
  884. },
  885. "time": "2022-10-21T07:00:02+00:00",
  886. "type": "library",
  887. "installation-source": "dist",
  888. "autoload": {
  889. "files": [
  890. "src/Kernel/Support/Helpers.php",
  891. "src/Kernel/Helpers.php"
  892. ],
  893. "psr-4": {
  894. "EasyWeChat\\": "src/"
  895. }
  896. },
  897. "license": [
  898. "MIT"
  899. ],
  900. "authors": [
  901. {
  902. "name": "overtrue",
  903. "email": "anzhengchao@gmail.com"
  904. }
  905. ],
  906. "description": "微信SDK",
  907. "keywords": [
  908. "easywechat",
  909. "sdk",
  910. "wechat",
  911. "weixin",
  912. "weixin-sdk"
  913. ],
  914. "install-path": "../overtrue/wechat"
  915. },
  916. {
  917. "name": "paragonie/random_compat",
  918. "version": "v9.99.100",
  919. "version_normalized": "9.99.100.0",
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://mirrors.cloud.tencent.com/repository/composer/paragonie/random_compat/v9.99.100/paragonie-random_compat-v9.99.100.zip",
  923. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "php": ">= 7"
  928. },
  929. "require-dev": {
  930. "phpunit/phpunit": "4.*|5.*",
  931. "vimeo/psalm": "^1"
  932. },
  933. "suggest": {
  934. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  935. },
  936. "time": "2020-10-15T08:29:30+00:00",
  937. "type": "library",
  938. "installation-source": "dist",
  939. "license": [
  940. "MIT"
  941. ],
  942. "authors": [
  943. {
  944. "name": "Paragon Initiative Enterprises",
  945. "email": "security@paragonie.com",
  946. "homepage": "https://paragonie.com"
  947. }
  948. ],
  949. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  950. "keywords": [
  951. "csprng",
  952. "polyfill",
  953. "pseudorandom",
  954. "random"
  955. ],
  956. "install-path": "../paragonie/random_compat"
  957. },
  958. {
  959. "name": "phpoffice/phpspreadsheet",
  960. "version": "1.19.0",
  961. "version_normalized": "1.19.0.0",
  962. "dist": {
  963. "type": "zip",
  964. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpoffice/phpspreadsheet/1.19.0/phpoffice-phpspreadsheet-1.19.0.zip",
  965. "reference": "a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf",
  966. "shasum": ""
  967. },
  968. "require": {
  969. "ext-ctype": "*",
  970. "ext-dom": "*",
  971. "ext-fileinfo": "*",
  972. "ext-gd": "*",
  973. "ext-iconv": "*",
  974. "ext-libxml": "*",
  975. "ext-mbstring": "*",
  976. "ext-simplexml": "*",
  977. "ext-xml": "*",
  978. "ext-xmlreader": "*",
  979. "ext-xmlwriter": "*",
  980. "ext-zip": "*",
  981. "ext-zlib": "*",
  982. "ezyang/htmlpurifier": "^4.13",
  983. "maennchen/zipstream-php": "^2.1",
  984. "markbaker/complex": "^3.0",
  985. "markbaker/matrix": "^3.0",
  986. "php": "^7.2 || ^8.0",
  987. "psr/http-client": "^1.0",
  988. "psr/http-factory": "^1.0",
  989. "psr/simple-cache": "^1.0"
  990. },
  991. "require-dev": {
  992. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  993. "dompdf/dompdf": "^1.0",
  994. "friendsofphp/php-cs-fixer": "^2.18",
  995. "jpgraph/jpgraph": "^4.0",
  996. "mpdf/mpdf": "^8.0",
  997. "phpcompatibility/php-compatibility": "^9.3",
  998. "phpstan/phpstan": "^0.12.82",
  999. "phpstan/phpstan-phpunit": "^0.12.18",
  1000. "phpunit/phpunit": "^8.5",
  1001. "squizlabs/php_codesniffer": "^3.5",
  1002. "tecnickcom/tcpdf": "^6.3"
  1003. },
  1004. "suggest": {
  1005. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  1006. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1007. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1008. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  1009. },
  1010. "time": "2021-10-31T15:09:20+00:00",
  1011. "type": "library",
  1012. "installation-source": "dist",
  1013. "autoload": {
  1014. "psr-4": {
  1015. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1016. }
  1017. },
  1018. "license": [
  1019. "MIT"
  1020. ],
  1021. "authors": [
  1022. {
  1023. "name": "Maarten Balliauw",
  1024. "homepage": "https://blog.maartenballiauw.be"
  1025. },
  1026. {
  1027. "name": "Mark Baker",
  1028. "homepage": "https://markbakeruk.net"
  1029. },
  1030. {
  1031. "name": "Franck Lefevre",
  1032. "homepage": "https://rootslabs.net"
  1033. },
  1034. {
  1035. "name": "Erik Tilt"
  1036. },
  1037. {
  1038. "name": "Adrien Crivelli"
  1039. }
  1040. ],
  1041. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1042. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1043. "keywords": [
  1044. "OpenXML",
  1045. "excel",
  1046. "gnumeric",
  1047. "ods",
  1048. "php",
  1049. "spreadsheet",
  1050. "xls",
  1051. "xlsx"
  1052. ],
  1053. "install-path": "../phpoffice/phpspreadsheet"
  1054. },
  1055. {
  1056. "name": "pimple/pimple",
  1057. "version": "v3.5.0",
  1058. "version_normalized": "3.5.0.0",
  1059. "dist": {
  1060. "type": "zip",
  1061. "url": "https://mirrors.tencent.com/repository/composer/pimple/pimple/v3.5.0/pimple-pimple-v3.5.0.zip",
  1062. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1063. "shasum": ""
  1064. },
  1065. "require": {
  1066. "php": ">=7.2.5",
  1067. "psr/container": "^1.1 || ^2.0"
  1068. },
  1069. "require-dev": {
  1070. "symfony/phpunit-bridge": "^5.4@dev"
  1071. },
  1072. "time": "2021-10-28T11:13:42+00:00",
  1073. "type": "library",
  1074. "extra": {
  1075. "branch-alias": {
  1076. "dev-master": "3.4.x-dev"
  1077. }
  1078. },
  1079. "installation-source": "dist",
  1080. "autoload": {
  1081. "psr-0": {
  1082. "Pimple": "src/"
  1083. }
  1084. },
  1085. "license": [
  1086. "MIT"
  1087. ],
  1088. "authors": [
  1089. {
  1090. "name": "Fabien Potencier",
  1091. "email": "fabien@symfony.com"
  1092. }
  1093. ],
  1094. "description": "Pimple, a simple Dependency Injection Container",
  1095. "homepage": "https://pimple.symfony.com",
  1096. "keywords": [
  1097. "container",
  1098. "dependency injection"
  1099. ],
  1100. "install-path": "../pimple/pimple"
  1101. },
  1102. {
  1103. "name": "psr/cache",
  1104. "version": "1.0.1",
  1105. "version_normalized": "1.0.1.0",
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/cache/1.0.1/psr-cache-1.0.1.zip",
  1109. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1110. "shasum": ""
  1111. },
  1112. "require": {
  1113. "php": ">=5.3.0"
  1114. },
  1115. "time": "2016-08-06T20:24:11+00:00",
  1116. "type": "library",
  1117. "extra": {
  1118. "branch-alias": {
  1119. "dev-master": "1.0.x-dev"
  1120. }
  1121. },
  1122. "installation-source": "dist",
  1123. "autoload": {
  1124. "psr-4": {
  1125. "Psr\\Cache\\": "src/"
  1126. }
  1127. },
  1128. "license": [
  1129. "MIT"
  1130. ],
  1131. "authors": [
  1132. {
  1133. "name": "PHP-FIG",
  1134. "homepage": "http://www.php-fig.org/"
  1135. }
  1136. ],
  1137. "description": "Common interface for caching libraries",
  1138. "keywords": [
  1139. "cache",
  1140. "psr",
  1141. "psr-6"
  1142. ],
  1143. "install-path": "../psr/cache"
  1144. },
  1145. {
  1146. "name": "psr/container",
  1147. "version": "2.0.2",
  1148. "version_normalized": "2.0.2.0",
  1149. "dist": {
  1150. "type": "zip",
  1151. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/container/2.0.2/psr-container-2.0.2.zip",
  1152. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1153. "shasum": ""
  1154. },
  1155. "require": {
  1156. "php": ">=7.4.0"
  1157. },
  1158. "time": "2021-11-05T16:47:00+00:00",
  1159. "type": "library",
  1160. "extra": {
  1161. "branch-alias": {
  1162. "dev-master": "2.0.x-dev"
  1163. }
  1164. },
  1165. "installation-source": "dist",
  1166. "autoload": {
  1167. "psr-4": {
  1168. "Psr\\Container\\": "src/"
  1169. }
  1170. },
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "PHP-FIG",
  1177. "homepage": "https://www.php-fig.org/"
  1178. }
  1179. ],
  1180. "description": "Common Container Interface (PHP FIG PSR-11)",
  1181. "homepage": "https://github.com/php-fig/container",
  1182. "keywords": [
  1183. "PSR-11",
  1184. "container",
  1185. "container-interface",
  1186. "container-interop",
  1187. "psr"
  1188. ],
  1189. "install-path": "../psr/container"
  1190. },
  1191. {
  1192. "name": "psr/event-dispatcher",
  1193. "version": "1.0.0",
  1194. "version_normalized": "1.0.0.0",
  1195. "dist": {
  1196. "type": "zip",
  1197. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/event-dispatcher/1.0.0/psr-event-dispatcher-1.0.0.zip",
  1198. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1199. "shasum": ""
  1200. },
  1201. "require": {
  1202. "php": ">=7.2.0"
  1203. },
  1204. "time": "2019-01-08T18:20:26+00:00",
  1205. "type": "library",
  1206. "extra": {
  1207. "branch-alias": {
  1208. "dev-master": "1.0.x-dev"
  1209. }
  1210. },
  1211. "installation-source": "dist",
  1212. "autoload": {
  1213. "psr-4": {
  1214. "Psr\\EventDispatcher\\": "src/"
  1215. }
  1216. },
  1217. "license": [
  1218. "MIT"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "PHP-FIG",
  1223. "homepage": "http://www.php-fig.org/"
  1224. }
  1225. ],
  1226. "description": "Standard interfaces for event handling.",
  1227. "keywords": [
  1228. "events",
  1229. "psr",
  1230. "psr-14"
  1231. ],
  1232. "install-path": "../psr/event-dispatcher"
  1233. },
  1234. {
  1235. "name": "psr/http-client",
  1236. "version": "1.0.1",
  1237. "version_normalized": "1.0.1.0",
  1238. "dist": {
  1239. "type": "zip",
  1240. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-client/1.0.1/psr-http-client-1.0.1.zip",
  1241. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1242. "shasum": ""
  1243. },
  1244. "require": {
  1245. "php": "^7.0 || ^8.0",
  1246. "psr/http-message": "^1.0"
  1247. },
  1248. "time": "2020-06-29T06:28:15+00:00",
  1249. "type": "library",
  1250. "extra": {
  1251. "branch-alias": {
  1252. "dev-master": "1.0.x-dev"
  1253. }
  1254. },
  1255. "installation-source": "dist",
  1256. "autoload": {
  1257. "psr-4": {
  1258. "Psr\\Http\\Client\\": "src/"
  1259. }
  1260. },
  1261. "license": [
  1262. "MIT"
  1263. ],
  1264. "authors": [
  1265. {
  1266. "name": "PHP-FIG",
  1267. "homepage": "http://www.php-fig.org/"
  1268. }
  1269. ],
  1270. "description": "Common interface for HTTP clients",
  1271. "homepage": "https://github.com/php-fig/http-client",
  1272. "keywords": [
  1273. "http",
  1274. "http-client",
  1275. "psr",
  1276. "psr-18"
  1277. ],
  1278. "install-path": "../psr/http-client"
  1279. },
  1280. {
  1281. "name": "psr/http-factory",
  1282. "version": "1.0.1",
  1283. "version_normalized": "1.0.1.0",
  1284. "dist": {
  1285. "type": "zip",
  1286. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-factory/1.0.1/psr-http-factory-1.0.1.zip",
  1287. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1288. "shasum": ""
  1289. },
  1290. "require": {
  1291. "php": ">=7.0.0",
  1292. "psr/http-message": "^1.0"
  1293. },
  1294. "time": "2019-04-30T12:38:16+00:00",
  1295. "type": "library",
  1296. "extra": {
  1297. "branch-alias": {
  1298. "dev-master": "1.0.x-dev"
  1299. }
  1300. },
  1301. "installation-source": "dist",
  1302. "autoload": {
  1303. "psr-4": {
  1304. "Psr\\Http\\Message\\": "src/"
  1305. }
  1306. },
  1307. "license": [
  1308. "MIT"
  1309. ],
  1310. "authors": [
  1311. {
  1312. "name": "PHP-FIG",
  1313. "homepage": "http://www.php-fig.org/"
  1314. }
  1315. ],
  1316. "description": "Common interfaces for PSR-7 HTTP message factories",
  1317. "keywords": [
  1318. "factory",
  1319. "http",
  1320. "message",
  1321. "psr",
  1322. "psr-17",
  1323. "psr-7",
  1324. "request",
  1325. "response"
  1326. ],
  1327. "install-path": "../psr/http-factory"
  1328. },
  1329. {
  1330. "name": "psr/http-message",
  1331. "version": "1.0.1",
  1332. "version_normalized": "1.0.1.0",
  1333. "dist": {
  1334. "type": "zip",
  1335. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-message/1.0.1/psr-http-message-1.0.1.zip",
  1336. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1337. "shasum": ""
  1338. },
  1339. "require": {
  1340. "php": ">=5.3.0"
  1341. },
  1342. "time": "2016-08-06T14:39:51+00:00",
  1343. "type": "library",
  1344. "extra": {
  1345. "branch-alias": {
  1346. "dev-master": "1.0.x-dev"
  1347. }
  1348. },
  1349. "installation-source": "dist",
  1350. "autoload": {
  1351. "psr-4": {
  1352. "Psr\\Http\\Message\\": "src/"
  1353. }
  1354. },
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "authors": [
  1359. {
  1360. "name": "PHP-FIG",
  1361. "homepage": "http://www.php-fig.org/"
  1362. }
  1363. ],
  1364. "description": "Common interface for HTTP messages",
  1365. "homepage": "https://github.com/php-fig/http-message",
  1366. "keywords": [
  1367. "http",
  1368. "http-message",
  1369. "psr",
  1370. "psr-7",
  1371. "request",
  1372. "response"
  1373. ],
  1374. "install-path": "../psr/http-message"
  1375. },
  1376. {
  1377. "name": "psr/log",
  1378. "version": "1.1.4",
  1379. "version_normalized": "1.1.4.0",
  1380. "dist": {
  1381. "type": "zip",
  1382. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/log/1.1.4/psr-log-1.1.4.zip",
  1383. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1384. "shasum": ""
  1385. },
  1386. "require": {
  1387. "php": ">=5.3.0"
  1388. },
  1389. "time": "2021-05-03T11:20:27+00:00",
  1390. "type": "library",
  1391. "extra": {
  1392. "branch-alias": {
  1393. "dev-master": "1.1.x-dev"
  1394. }
  1395. },
  1396. "installation-source": "dist",
  1397. "autoload": {
  1398. "psr-4": {
  1399. "Psr\\Log\\": "Psr/Log/"
  1400. }
  1401. },
  1402. "license": [
  1403. "MIT"
  1404. ],
  1405. "authors": [
  1406. {
  1407. "name": "PHP-FIG",
  1408. "homepage": "https://www.php-fig.org/"
  1409. }
  1410. ],
  1411. "description": "Common interface for logging libraries",
  1412. "homepage": "https://github.com/php-fig/log",
  1413. "keywords": [
  1414. "log",
  1415. "psr",
  1416. "psr-3"
  1417. ],
  1418. "install-path": "../psr/log"
  1419. },
  1420. {
  1421. "name": "psr/simple-cache",
  1422. "version": "1.0.1",
  1423. "version_normalized": "1.0.1.0",
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/simple-cache/1.0.1/psr-simple-cache-1.0.1.zip",
  1427. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "php": ">=5.3.0"
  1432. },
  1433. "time": "2017-10-23T01:57:42+00:00",
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-master": "1.0.x-dev"
  1438. }
  1439. },
  1440. "installation-source": "dist",
  1441. "autoload": {
  1442. "psr-4": {
  1443. "Psr\\SimpleCache\\": "src/"
  1444. }
  1445. },
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "PHP-FIG",
  1452. "homepage": "http://www.php-fig.org/"
  1453. }
  1454. ],
  1455. "description": "Common interfaces for simple caching",
  1456. "keywords": [
  1457. "cache",
  1458. "caching",
  1459. "psr",
  1460. "psr-16",
  1461. "simple-cache"
  1462. ],
  1463. "install-path": "../psr/simple-cache"
  1464. },
  1465. {
  1466. "name": "ralouphie/getallheaders",
  1467. "version": "3.0.3",
  1468. "version_normalized": "3.0.3.0",
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://mirrors.cloud.tencent.com/repository/composer/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip",
  1472. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "php": ">=5.6"
  1477. },
  1478. "require-dev": {
  1479. "php-coveralls/php-coveralls": "^2.1",
  1480. "phpunit/phpunit": "^5 || ^6.5"
  1481. },
  1482. "time": "2019-03-08T08:55:37+00:00",
  1483. "type": "library",
  1484. "installation-source": "dist",
  1485. "autoload": {
  1486. "files": [
  1487. "src/getallheaders.php"
  1488. ]
  1489. },
  1490. "license": [
  1491. "MIT"
  1492. ],
  1493. "authors": [
  1494. {
  1495. "name": "Ralph Khattar",
  1496. "email": "ralph.khattar@gmail.com"
  1497. }
  1498. ],
  1499. "description": "A polyfill for getallheaders.",
  1500. "install-path": "../ralouphie/getallheaders"
  1501. },
  1502. {
  1503. "name": "symfony/cache",
  1504. "version": "v5.4.15",
  1505. "version_normalized": "5.4.15.0",
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/cache/v5.4.15/symfony-cache-v5.4.15.zip",
  1509. "reference": "60e87188abbacd29ccde44d69c5392a33e888e98",
  1510. "shasum": ""
  1511. },
  1512. "require": {
  1513. "php": ">=7.2.5",
  1514. "psr/cache": "^1.0|^2.0",
  1515. "psr/log": "^1.1|^2|^3",
  1516. "symfony/cache-contracts": "^1.1.7|^2",
  1517. "symfony/deprecation-contracts": "^2.1|^3",
  1518. "symfony/polyfill-php73": "^1.9",
  1519. "symfony/polyfill-php80": "^1.16",
  1520. "symfony/service-contracts": "^1.1|^2|^3",
  1521. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  1522. },
  1523. "conflict": {
  1524. "doctrine/dbal": "<2.13.1",
  1525. "symfony/dependency-injection": "<4.4",
  1526. "symfony/http-kernel": "<4.4",
  1527. "symfony/var-dumper": "<4.4"
  1528. },
  1529. "provide": {
  1530. "psr/cache-implementation": "1.0|2.0",
  1531. "psr/simple-cache-implementation": "1.0|2.0",
  1532. "symfony/cache-implementation": "1.0|2.0"
  1533. },
  1534. "require-dev": {
  1535. "cache/integration-tests": "dev-master",
  1536. "doctrine/cache": "^1.6|^2.0",
  1537. "doctrine/dbal": "^2.13.1|^3.0",
  1538. "predis/predis": "^1.1",
  1539. "psr/simple-cache": "^1.0|^2.0",
  1540. "symfony/config": "^4.4|^5.0|^6.0",
  1541. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1542. "symfony/filesystem": "^4.4|^5.0|^6.0",
  1543. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  1544. "symfony/messenger": "^4.4|^5.0|^6.0",
  1545. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  1546. },
  1547. "time": "2022-10-27T07:55:40+00:00",
  1548. "type": "library",
  1549. "installation-source": "dist",
  1550. "autoload": {
  1551. "psr-4": {
  1552. "Symfony\\Component\\Cache\\": ""
  1553. },
  1554. "exclude-from-classmap": [
  1555. "/Tests/"
  1556. ]
  1557. },
  1558. "license": [
  1559. "MIT"
  1560. ],
  1561. "authors": [
  1562. {
  1563. "name": "Nicolas Grekas",
  1564. "email": "p@tchwork.com"
  1565. },
  1566. {
  1567. "name": "Symfony Community",
  1568. "homepage": "https://symfony.com/contributors"
  1569. }
  1570. ],
  1571. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  1572. "homepage": "https://symfony.com",
  1573. "keywords": [
  1574. "caching",
  1575. "psr6"
  1576. ],
  1577. "install-path": "../symfony/cache"
  1578. },
  1579. {
  1580. "name": "symfony/cache-contracts",
  1581. "version": "v2.5.2",
  1582. "version_normalized": "2.5.2.0",
  1583. "dist": {
  1584. "type": "zip",
  1585. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/cache-contracts/v2.5.2/symfony-cache-contracts-v2.5.2.zip",
  1586. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  1587. "shasum": ""
  1588. },
  1589. "require": {
  1590. "php": ">=7.2.5",
  1591. "psr/cache": "^1.0|^2.0|^3.0"
  1592. },
  1593. "suggest": {
  1594. "symfony/cache-implementation": ""
  1595. },
  1596. "time": "2022-01-02T09:53:40+00:00",
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-main": "2.5-dev"
  1601. },
  1602. "thanks": {
  1603. "name": "symfony/contracts",
  1604. "url": "https://github.com/symfony/contracts"
  1605. }
  1606. },
  1607. "installation-source": "dist",
  1608. "autoload": {
  1609. "psr-4": {
  1610. "Symfony\\Contracts\\Cache\\": ""
  1611. }
  1612. },
  1613. "license": [
  1614. "MIT"
  1615. ],
  1616. "authors": [
  1617. {
  1618. "name": "Nicolas Grekas",
  1619. "email": "p@tchwork.com"
  1620. },
  1621. {
  1622. "name": "Symfony Community",
  1623. "homepage": "https://symfony.com/contributors"
  1624. }
  1625. ],
  1626. "description": "Generic abstractions related to caching",
  1627. "homepage": "https://symfony.com",
  1628. "keywords": [
  1629. "abstractions",
  1630. "contracts",
  1631. "decoupling",
  1632. "interfaces",
  1633. "interoperability",
  1634. "standards"
  1635. ],
  1636. "install-path": "../symfony/cache-contracts"
  1637. },
  1638. {
  1639. "name": "symfony/deprecation-contracts",
  1640. "version": "v2.5.2",
  1641. "version_normalized": "2.5.2.0",
  1642. "dist": {
  1643. "type": "zip",
  1644. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/deprecation-contracts/v2.5.2/symfony-deprecation-contracts-v2.5.2.zip",
  1645. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1646. "shasum": ""
  1647. },
  1648. "require": {
  1649. "php": ">=7.1"
  1650. },
  1651. "time": "2022-01-02T09:53:40+00:00",
  1652. "type": "library",
  1653. "extra": {
  1654. "branch-alias": {
  1655. "dev-main": "2.5-dev"
  1656. },
  1657. "thanks": {
  1658. "name": "symfony/contracts",
  1659. "url": "https://github.com/symfony/contracts"
  1660. }
  1661. },
  1662. "installation-source": "dist",
  1663. "autoload": {
  1664. "files": [
  1665. "function.php"
  1666. ]
  1667. },
  1668. "license": [
  1669. "MIT"
  1670. ],
  1671. "authors": [
  1672. {
  1673. "name": "Nicolas Grekas",
  1674. "email": "p@tchwork.com"
  1675. },
  1676. {
  1677. "name": "Symfony Community",
  1678. "homepage": "https://symfony.com/contributors"
  1679. }
  1680. ],
  1681. "description": "A generic function and convention to trigger deprecation notices",
  1682. "homepage": "https://symfony.com",
  1683. "install-path": "../symfony/deprecation-contracts"
  1684. },
  1685. {
  1686. "name": "symfony/event-dispatcher",
  1687. "version": "v5.4.9",
  1688. "version_normalized": "5.4.9.0",
  1689. "dist": {
  1690. "type": "zip",
  1691. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/event-dispatcher/v5.4.9/symfony-event-dispatcher-v5.4.9.zip",
  1692. "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
  1693. "shasum": ""
  1694. },
  1695. "require": {
  1696. "php": ">=7.2.5",
  1697. "symfony/deprecation-contracts": "^2.1|^3",
  1698. "symfony/event-dispatcher-contracts": "^2|^3",
  1699. "symfony/polyfill-php80": "^1.16"
  1700. },
  1701. "conflict": {
  1702. "symfony/dependency-injection": "<4.4"
  1703. },
  1704. "provide": {
  1705. "psr/event-dispatcher-implementation": "1.0",
  1706. "symfony/event-dispatcher-implementation": "2.0"
  1707. },
  1708. "require-dev": {
  1709. "psr/log": "^1|^2|^3",
  1710. "symfony/config": "^4.4|^5.0|^6.0",
  1711. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1712. "symfony/error-handler": "^4.4|^5.0|^6.0",
  1713. "symfony/expression-language": "^4.4|^5.0|^6.0",
  1714. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  1715. "symfony/service-contracts": "^1.1|^2|^3",
  1716. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  1717. },
  1718. "suggest": {
  1719. "symfony/dependency-injection": "",
  1720. "symfony/http-kernel": ""
  1721. },
  1722. "time": "2022-05-05T16:45:39+00:00",
  1723. "type": "library",
  1724. "installation-source": "dist",
  1725. "autoload": {
  1726. "psr-4": {
  1727. "Symfony\\Component\\EventDispatcher\\": ""
  1728. },
  1729. "exclude-from-classmap": [
  1730. "/Tests/"
  1731. ]
  1732. },
  1733. "license": [
  1734. "MIT"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "Fabien Potencier",
  1739. "email": "fabien@symfony.com"
  1740. },
  1741. {
  1742. "name": "Symfony Community",
  1743. "homepage": "https://symfony.com/contributors"
  1744. }
  1745. ],
  1746. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  1747. "homepage": "https://symfony.com",
  1748. "install-path": "../symfony/event-dispatcher"
  1749. },
  1750. {
  1751. "name": "symfony/event-dispatcher-contracts",
  1752. "version": "v2.5.2",
  1753. "version_normalized": "2.5.2.0",
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/event-dispatcher-contracts/v2.5.2/symfony-event-dispatcher-contracts-v2.5.2.zip",
  1757. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "php": ">=7.2.5",
  1762. "psr/event-dispatcher": "^1"
  1763. },
  1764. "suggest": {
  1765. "symfony/event-dispatcher-implementation": ""
  1766. },
  1767. "time": "2022-01-02T09:53:40+00:00",
  1768. "type": "library",
  1769. "extra": {
  1770. "branch-alias": {
  1771. "dev-main": "2.5-dev"
  1772. },
  1773. "thanks": {
  1774. "name": "symfony/contracts",
  1775. "url": "https://github.com/symfony/contracts"
  1776. }
  1777. },
  1778. "installation-source": "dist",
  1779. "autoload": {
  1780. "psr-4": {
  1781. "Symfony\\Contracts\\EventDispatcher\\": ""
  1782. }
  1783. },
  1784. "license": [
  1785. "MIT"
  1786. ],
  1787. "authors": [
  1788. {
  1789. "name": "Nicolas Grekas",
  1790. "email": "p@tchwork.com"
  1791. },
  1792. {
  1793. "name": "Symfony Community",
  1794. "homepage": "https://symfony.com/contributors"
  1795. }
  1796. ],
  1797. "description": "Generic abstractions related to dispatching event",
  1798. "homepage": "https://symfony.com",
  1799. "keywords": [
  1800. "abstractions",
  1801. "contracts",
  1802. "decoupling",
  1803. "interfaces",
  1804. "interoperability",
  1805. "standards"
  1806. ],
  1807. "install-path": "../symfony/event-dispatcher-contracts"
  1808. },
  1809. {
  1810. "name": "symfony/finder",
  1811. "version": "v5.4.11",
  1812. "version_normalized": "5.4.11.0",
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/finder/v5.4.11/symfony-finder-v5.4.11.zip",
  1816. "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c",
  1817. "shasum": ""
  1818. },
  1819. "require": {
  1820. "php": ">=7.2.5",
  1821. "symfony/deprecation-contracts": "^2.1|^3",
  1822. "symfony/polyfill-php80": "^1.16"
  1823. },
  1824. "time": "2022-07-29T07:37:50+00:00",
  1825. "type": "library",
  1826. "installation-source": "dist",
  1827. "autoload": {
  1828. "psr-4": {
  1829. "Symfony\\Component\\Finder\\": ""
  1830. },
  1831. "exclude-from-classmap": [
  1832. "/Tests/"
  1833. ]
  1834. },
  1835. "license": [
  1836. "MIT"
  1837. ],
  1838. "authors": [
  1839. {
  1840. "name": "Fabien Potencier",
  1841. "email": "fabien@symfony.com"
  1842. },
  1843. {
  1844. "name": "Symfony Community",
  1845. "homepage": "https://symfony.com/contributors"
  1846. }
  1847. ],
  1848. "description": "Finds files and directories via an intuitive fluent interface",
  1849. "homepage": "https://symfony.com",
  1850. "install-path": "../symfony/finder"
  1851. },
  1852. {
  1853. "name": "symfony/http-foundation",
  1854. "version": "v5.4.16",
  1855. "version_normalized": "5.4.16.0",
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-foundation/v5.4.16/symfony-http-foundation-v5.4.16.zip",
  1859. "reference": "5032c5849aef24741e1970cb03511b0dd131d838",
  1860. "shasum": ""
  1861. },
  1862. "require": {
  1863. "php": ">=7.2.5",
  1864. "symfony/deprecation-contracts": "^2.1|^3",
  1865. "symfony/polyfill-mbstring": "~1.1",
  1866. "symfony/polyfill-php80": "^1.16"
  1867. },
  1868. "require-dev": {
  1869. "predis/predis": "~1.0",
  1870. "symfony/cache": "^4.4|^5.0|^6.0",
  1871. "symfony/dependency-injection": "^5.4|^6.0",
  1872. "symfony/expression-language": "^4.4|^5.0|^6.0",
  1873. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  1874. "symfony/mime": "^4.4|^5.0|^6.0",
  1875. "symfony/rate-limiter": "^5.2|^6.0"
  1876. },
  1877. "suggest": {
  1878. "symfony/mime": "To use the file extension guesser"
  1879. },
  1880. "time": "2022-11-07T08:06:40+00:00",
  1881. "type": "library",
  1882. "installation-source": "dist",
  1883. "autoload": {
  1884. "psr-4": {
  1885. "Symfony\\Component\\HttpFoundation\\": ""
  1886. },
  1887. "exclude-from-classmap": [
  1888. "/Tests/"
  1889. ]
  1890. },
  1891. "license": [
  1892. "MIT"
  1893. ],
  1894. "authors": [
  1895. {
  1896. "name": "Fabien Potencier",
  1897. "email": "fabien@symfony.com"
  1898. },
  1899. {
  1900. "name": "Symfony Community",
  1901. "homepage": "https://symfony.com/contributors"
  1902. }
  1903. ],
  1904. "description": "Defines an object-oriented layer for the HTTP specification",
  1905. "homepage": "https://symfony.com",
  1906. "install-path": "../symfony/http-foundation"
  1907. },
  1908. {
  1909. "name": "symfony/polyfill-mbstring",
  1910. "version": "v1.27.0",
  1911. "version_normalized": "1.27.0.0",
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.27.0/symfony-polyfill-mbstring-v1.27.0.zip",
  1915. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "php": ">=7.1"
  1920. },
  1921. "provide": {
  1922. "ext-mbstring": "*"
  1923. },
  1924. "suggest": {
  1925. "ext-mbstring": "For best performance"
  1926. },
  1927. "time": "2022-11-03T14:55:06+00:00",
  1928. "type": "library",
  1929. "extra": {
  1930. "branch-alias": {
  1931. "dev-main": "1.27-dev"
  1932. },
  1933. "thanks": {
  1934. "name": "symfony/polyfill",
  1935. "url": "https://github.com/symfony/polyfill"
  1936. }
  1937. },
  1938. "installation-source": "dist",
  1939. "autoload": {
  1940. "files": [
  1941. "bootstrap.php"
  1942. ],
  1943. "psr-4": {
  1944. "Symfony\\Polyfill\\Mbstring\\": ""
  1945. }
  1946. },
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "authors": [
  1951. {
  1952. "name": "Nicolas Grekas",
  1953. "email": "p@tchwork.com"
  1954. },
  1955. {
  1956. "name": "Symfony Community",
  1957. "homepage": "https://symfony.com/contributors"
  1958. }
  1959. ],
  1960. "description": "Symfony polyfill for the Mbstring extension",
  1961. "homepage": "https://symfony.com",
  1962. "keywords": [
  1963. "compatibility",
  1964. "mbstring",
  1965. "polyfill",
  1966. "portable",
  1967. "shim"
  1968. ],
  1969. "install-path": "../symfony/polyfill-mbstring"
  1970. },
  1971. {
  1972. "name": "symfony/polyfill-php73",
  1973. "version": "v1.27.0",
  1974. "version_normalized": "1.27.0.0",
  1975. "dist": {
  1976. "type": "zip",
  1977. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php73/v1.27.0/symfony-polyfill-php73-v1.27.0.zip",
  1978. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  1979. "shasum": ""
  1980. },
  1981. "require": {
  1982. "php": ">=7.1"
  1983. },
  1984. "time": "2022-11-03T14:55:06+00:00",
  1985. "type": "library",
  1986. "extra": {
  1987. "branch-alias": {
  1988. "dev-main": "1.27-dev"
  1989. },
  1990. "thanks": {
  1991. "name": "symfony/polyfill",
  1992. "url": "https://github.com/symfony/polyfill"
  1993. }
  1994. },
  1995. "installation-source": "dist",
  1996. "autoload": {
  1997. "files": [
  1998. "bootstrap.php"
  1999. ],
  2000. "psr-4": {
  2001. "Symfony\\Polyfill\\Php73\\": ""
  2002. },
  2003. "classmap": [
  2004. "Resources/stubs"
  2005. ]
  2006. },
  2007. "license": [
  2008. "MIT"
  2009. ],
  2010. "authors": [
  2011. {
  2012. "name": "Nicolas Grekas",
  2013. "email": "p@tchwork.com"
  2014. },
  2015. {
  2016. "name": "Symfony Community",
  2017. "homepage": "https://symfony.com/contributors"
  2018. }
  2019. ],
  2020. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2021. "homepage": "https://symfony.com",
  2022. "keywords": [
  2023. "compatibility",
  2024. "polyfill",
  2025. "portable",
  2026. "shim"
  2027. ],
  2028. "install-path": "../symfony/polyfill-php73"
  2029. },
  2030. {
  2031. "name": "symfony/polyfill-php80",
  2032. "version": "v1.27.0",
  2033. "version_normalized": "1.27.0.0",
  2034. "dist": {
  2035. "type": "zip",
  2036. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php80/v1.27.0/symfony-polyfill-php80-v1.27.0.zip",
  2037. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2038. "shasum": ""
  2039. },
  2040. "require": {
  2041. "php": ">=7.1"
  2042. },
  2043. "time": "2022-11-03T14:55:06+00:00",
  2044. "type": "library",
  2045. "extra": {
  2046. "branch-alias": {
  2047. "dev-main": "1.27-dev"
  2048. },
  2049. "thanks": {
  2050. "name": "symfony/polyfill",
  2051. "url": "https://github.com/symfony/polyfill"
  2052. }
  2053. },
  2054. "installation-source": "dist",
  2055. "autoload": {
  2056. "files": [
  2057. "bootstrap.php"
  2058. ],
  2059. "psr-4": {
  2060. "Symfony\\Polyfill\\Php80\\": ""
  2061. },
  2062. "classmap": [
  2063. "Resources/stubs"
  2064. ]
  2065. },
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "Ion Bazan",
  2072. "email": "ion.bazan@gmail.com"
  2073. },
  2074. {
  2075. "name": "Nicolas Grekas",
  2076. "email": "p@tchwork.com"
  2077. },
  2078. {
  2079. "name": "Symfony Community",
  2080. "homepage": "https://symfony.com/contributors"
  2081. }
  2082. ],
  2083. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2084. "homepage": "https://symfony.com",
  2085. "keywords": [
  2086. "compatibility",
  2087. "polyfill",
  2088. "portable",
  2089. "shim"
  2090. ],
  2091. "install-path": "../symfony/polyfill-php80"
  2092. },
  2093. {
  2094. "name": "symfony/psr-http-message-bridge",
  2095. "version": "v2.1.4",
  2096. "version_normalized": "2.1.4.0",
  2097. "dist": {
  2098. "type": "zip",
  2099. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/psr-http-message-bridge/v2.1.4/symfony-psr-http-message-bridge-v2.1.4.zip",
  2100. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  2101. "shasum": ""
  2102. },
  2103. "require": {
  2104. "php": ">=7.1",
  2105. "psr/http-message": "^1.0",
  2106. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  2107. },
  2108. "require-dev": {
  2109. "nyholm/psr7": "^1.1",
  2110. "psr/log": "^1.1 || ^2 || ^3",
  2111. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  2112. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  2113. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  2114. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  2115. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  2116. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  2117. },
  2118. "suggest": {
  2119. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  2120. },
  2121. "time": "2022-11-28T22:46:34+00:00",
  2122. "type": "symfony-bridge",
  2123. "extra": {
  2124. "branch-alias": {
  2125. "dev-main": "2.1-dev"
  2126. }
  2127. },
  2128. "installation-source": "dist",
  2129. "autoload": {
  2130. "psr-4": {
  2131. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2132. },
  2133. "exclude-from-classmap": [
  2134. "/Tests/"
  2135. ]
  2136. },
  2137. "license": [
  2138. "MIT"
  2139. ],
  2140. "authors": [
  2141. {
  2142. "name": "Fabien Potencier",
  2143. "email": "fabien@symfony.com"
  2144. },
  2145. {
  2146. "name": "Symfony Community",
  2147. "homepage": "http://symfony.com/contributors"
  2148. }
  2149. ],
  2150. "description": "PSR HTTP message bridge",
  2151. "homepage": "http://symfony.com",
  2152. "keywords": [
  2153. "http",
  2154. "http-message",
  2155. "psr-17",
  2156. "psr-7"
  2157. ],
  2158. "install-path": "../symfony/psr-http-message-bridge"
  2159. },
  2160. {
  2161. "name": "symfony/service-contracts",
  2162. "version": "v1.1.2",
  2163. "version_normalized": "1.1.2.0",
  2164. "dist": {
  2165. "type": "zip",
  2166. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/service-contracts/v1.1.2/symfony-service-contracts-v1.1.2.zip",
  2167. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  2168. "shasum": ""
  2169. },
  2170. "require": {
  2171. "php": "^7.1.3"
  2172. },
  2173. "suggest": {
  2174. "psr/container": "",
  2175. "symfony/service-implementation": ""
  2176. },
  2177. "time": "2019-05-28T07:50:59+00:00",
  2178. "type": "library",
  2179. "extra": {
  2180. "branch-alias": {
  2181. "dev-master": "1.1-dev"
  2182. }
  2183. },
  2184. "installation-source": "dist",
  2185. "autoload": {
  2186. "psr-4": {
  2187. "Symfony\\Contracts\\Service\\": ""
  2188. }
  2189. },
  2190. "license": [
  2191. "MIT"
  2192. ],
  2193. "authors": [
  2194. {
  2195. "name": "Nicolas Grekas",
  2196. "email": "p@tchwork.com"
  2197. },
  2198. {
  2199. "name": "Symfony Community",
  2200. "homepage": "https://symfony.com/contributors"
  2201. }
  2202. ],
  2203. "description": "Generic abstractions related to writing services",
  2204. "homepage": "https://symfony.com",
  2205. "keywords": [
  2206. "abstractions",
  2207. "contracts",
  2208. "decoupling",
  2209. "interfaces",
  2210. "interoperability",
  2211. "standards"
  2212. ],
  2213. "install-path": "../symfony/service-contracts"
  2214. },
  2215. {
  2216. "name": "symfony/var-exporter",
  2217. "version": "v4.4.43",
  2218. "version_normalized": "4.4.43.0",
  2219. "dist": {
  2220. "type": "zip",
  2221. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/var-exporter/v4.4.43/symfony-var-exporter-v4.4.43.zip",
  2222. "reference": "4a7a3a3d55c471d396e6d28011368b7b83cb518b",
  2223. "shasum": ""
  2224. },
  2225. "require": {
  2226. "php": ">=7.1.3",
  2227. "symfony/polyfill-php80": "^1.16"
  2228. },
  2229. "require-dev": {
  2230. "symfony/var-dumper": "^4.4.9|^5.0.9"
  2231. },
  2232. "time": "2022-05-27T11:44:32+00:00",
  2233. "type": "library",
  2234. "installation-source": "dist",
  2235. "autoload": {
  2236. "psr-4": {
  2237. "Symfony\\Component\\VarExporter\\": ""
  2238. },
  2239. "exclude-from-classmap": [
  2240. "/Tests/"
  2241. ]
  2242. },
  2243. "license": [
  2244. "MIT"
  2245. ],
  2246. "authors": [
  2247. {
  2248. "name": "Nicolas Grekas",
  2249. "email": "p@tchwork.com"
  2250. },
  2251. {
  2252. "name": "Symfony Community",
  2253. "homepage": "https://symfony.com/contributors"
  2254. }
  2255. ],
  2256. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  2257. "homepage": "https://symfony.com",
  2258. "keywords": [
  2259. "clone",
  2260. "construct",
  2261. "export",
  2262. "hydrate",
  2263. "instantiate",
  2264. "serialize"
  2265. ],
  2266. "install-path": "../symfony/var-exporter"
  2267. },
  2268. {
  2269. "name": "topthink/framework",
  2270. "version": "dev-master",
  2271. "version_normalized": "dev-master",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://gitee.com/fastadminnet/framework.git",
  2275. "reference": "a5f1cedf07bb3489f7e3b5254496afbf600d4e65"
  2276. },
  2277. "require": {
  2278. "php": ">=7.1.0",
  2279. "topthink/think-installer": "~1.0"
  2280. },
  2281. "require-dev": {
  2282. "johnkary/phpunit-speedtrap": "^1.0",
  2283. "mikey179/vfsstream": "~1.6",
  2284. "phpdocumentor/reflection-docblock": "^2.0",
  2285. "phploc/phploc": "2.*",
  2286. "phpunit/phpunit": "4.8.*",
  2287. "sebastian/phpcpd": "2.*"
  2288. },
  2289. "time": "2022-12-05T14:00:16+00:00",
  2290. "default-branch": true,
  2291. "type": "think-framework",
  2292. "installation-source": "source",
  2293. "autoload": {
  2294. "psr-4": {
  2295. "think\\": "library/think"
  2296. }
  2297. },
  2298. "license": [
  2299. "Apache-2.0"
  2300. ],
  2301. "authors": [
  2302. {
  2303. "name": "liu21st",
  2304. "email": "liu21st@gmail.com"
  2305. }
  2306. ],
  2307. "description": "the new thinkphp framework",
  2308. "homepage": "http://thinkphp.cn/",
  2309. "keywords": [
  2310. "ORM",
  2311. "framework",
  2312. "thinkphp"
  2313. ],
  2314. "install-path": "../../thinkphp"
  2315. },
  2316. {
  2317. "name": "topthink/think-captcha",
  2318. "version": "v1.0.7",
  2319. "version_normalized": "1.0.7.0",
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-captcha/v1.0.7/topthink-think-captcha-v1.0.7.zip",
  2323. "reference": "0c55455df26a1626a60d0dc35d2d89002b741d44",
  2324. "shasum": ""
  2325. },
  2326. "time": "2016-07-06T01:47:11+00:00",
  2327. "type": "library",
  2328. "installation-source": "dist",
  2329. "autoload": {
  2330. "files": [
  2331. "src/helper.php"
  2332. ],
  2333. "psr-4": {
  2334. "think\\captcha\\": "src/"
  2335. }
  2336. },
  2337. "license": [
  2338. "Apache-2.0"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "yunwuxin",
  2343. "email": "448901948@qq.com"
  2344. }
  2345. ],
  2346. "description": "captcha package for thinkphp5",
  2347. "install-path": "../topthink/think-captcha"
  2348. },
  2349. {
  2350. "name": "topthink/think-helper",
  2351. "version": "v1.0.7",
  2352. "version_normalized": "1.0.7.0",
  2353. "dist": {
  2354. "type": "zip",
  2355. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-helper/v1.0.7/topthink-think-helper-v1.0.7.zip",
  2356. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  2357. "shasum": ""
  2358. },
  2359. "time": "2018-10-05T00:43:21+00:00",
  2360. "type": "library",
  2361. "installation-source": "dist",
  2362. "autoload": {
  2363. "files": [
  2364. "src/helper.php"
  2365. ],
  2366. "psr-4": {
  2367. "think\\helper\\": "src"
  2368. }
  2369. },
  2370. "license": [
  2371. "Apache-2.0"
  2372. ],
  2373. "authors": [
  2374. {
  2375. "name": "yunwuxin",
  2376. "email": "448901948@qq.com"
  2377. }
  2378. ],
  2379. "description": "The ThinkPHP5 Helper Package",
  2380. "install-path": "../topthink/think-helper"
  2381. },
  2382. {
  2383. "name": "topthink/think-installer",
  2384. "version": "v1.0.14",
  2385. "version_normalized": "1.0.14.0",
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-installer/v1.0.14/topthink-think-installer-v1.0.14.zip",
  2389. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1",
  2390. "shasum": ""
  2391. },
  2392. "require": {
  2393. "composer-plugin-api": "^1.0||^2.0"
  2394. },
  2395. "require-dev": {
  2396. "composer/composer": "^1.0||^2.0"
  2397. },
  2398. "time": "2021-03-25T08:34:02+00:00",
  2399. "type": "composer-plugin",
  2400. "extra": {
  2401. "class": "think\\composer\\Plugin"
  2402. },
  2403. "installation-source": "dist",
  2404. "autoload": {
  2405. "psr-4": {
  2406. "think\\composer\\": "src"
  2407. }
  2408. },
  2409. "license": [
  2410. "Apache-2.0"
  2411. ],
  2412. "authors": [
  2413. {
  2414. "name": "yunwuxin",
  2415. "email": "448901948@qq.com"
  2416. }
  2417. ],
  2418. "install-path": "../topthink/think-installer"
  2419. },
  2420. {
  2421. "name": "topthink/think-queue",
  2422. "version": "v1.1.6",
  2423. "version_normalized": "1.1.6.0",
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://mirrors.cloud.tencent.com/repository/composer/topthink/think-queue/v1.1.6/topthink-think-queue-v1.1.6.zip",
  2427. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  2428. "shasum": ""
  2429. },
  2430. "require": {
  2431. "topthink/think-helper": ">=1.0.4",
  2432. "topthink/think-installer": ">=1.0.10"
  2433. },
  2434. "require-dev": {
  2435. "topthink/framework": "~5.0.0"
  2436. },
  2437. "time": "2018-10-15T10:16:55+00:00",
  2438. "type": "think-extend",
  2439. "extra": {
  2440. "think-config": {
  2441. "queue": "src/config.php"
  2442. }
  2443. },
  2444. "installation-source": "dist",
  2445. "autoload": {
  2446. "files": [
  2447. "src/common.php"
  2448. ],
  2449. "psr-4": {
  2450. "think\\": "src"
  2451. }
  2452. },
  2453. "license": [
  2454. "Apache-2.0"
  2455. ],
  2456. "authors": [
  2457. {
  2458. "name": "yunwuxin",
  2459. "email": "448901948@qq.com"
  2460. }
  2461. ],
  2462. "description": "The ThinkPHP5 Queue Package",
  2463. "install-path": "../topthink/think-queue"
  2464. },
  2465. {
  2466. "name": "txthinking/mailer",
  2467. "version": "v2.0.1",
  2468. "version_normalized": "2.0.1.0",
  2469. "dist": {
  2470. "type": "zip",
  2471. "url": "https://mirrors.cloud.tencent.com/repository/composer/txthinking/mailer/v2.0.1/txthinking-mailer-v2.0.1.zip",
  2472. "reference": "09013cf9dad3aac195f66ae5309e8c3343c018e9",
  2473. "shasum": ""
  2474. },
  2475. "require": {
  2476. "php": ">=5.3.2",
  2477. "psr/log": "~1.0"
  2478. },
  2479. "require-dev": {
  2480. "monolog/monolog": "~1.13",
  2481. "phpunit/phpunit": "~4.0"
  2482. },
  2483. "time": "2018-10-09T10:47:23+00:00",
  2484. "type": "library",
  2485. "installation-source": "dist",
  2486. "autoload": {
  2487. "psr-4": {
  2488. "Tx\\": "src/"
  2489. }
  2490. },
  2491. "license": [
  2492. "MIT"
  2493. ],
  2494. "authors": [
  2495. {
  2496. "name": "Cloud",
  2497. "email": "cloud@txthinking.com",
  2498. "homepage": "http://www.txthinking.com",
  2499. "role": "Thinker"
  2500. },
  2501. {
  2502. "name": "Matt Sowers",
  2503. "email": "msowers@erblearn.org"
  2504. }
  2505. ],
  2506. "description": "A very lightweight PHP SMTP mail sender",
  2507. "homepage": "http://github.com/txthinking/Mailer",
  2508. "keywords": [
  2509. "mail",
  2510. "smtp"
  2511. ],
  2512. "install-path": "../txthinking/mailer"
  2513. }
  2514. ],
  2515. "dev": true,
  2516. "dev-package-names": []
  2517. }