installed.json 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  1. {
  2. "packages": [
  3. {
  4. "name": "doctrine/annotations",
  5. "version": "1.13.3",
  6. "version_normalized": "1.13.3.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/doctrine/annotations.git",
  10. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  15. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "doctrine/lexer": "1.*",
  26. "ext-tokenizer": "*",
  27. "php": "^7.1 || ^8.0",
  28. "psr/cache": "^1 || ^2 || ^3"
  29. },
  30. "require-dev": {
  31. "doctrine/cache": "^1.11 || ^2.0",
  32. "doctrine/coding-standard": "^6.0 || ^8.1",
  33. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  34. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  35. "symfony/cache": "^4.4 || ^5.2",
  36. "vimeo/psalm": "^4.10"
  37. },
  38. "time": "2022-07-02T10:48:51+00:00",
  39. "type": "library",
  40. "installation-source": "dist",
  41. "autoload": {
  42. "psr-4": {
  43. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Guilherme Blanco",
  53. "email": "guilhermeblanco@gmail.com"
  54. },
  55. {
  56. "name": "Roman Borschel",
  57. "email": "roman@code-factory.org"
  58. },
  59. {
  60. "name": "Benjamin Eberlei",
  61. "email": "kontakt@beberlei.de"
  62. },
  63. {
  64. "name": "Jonathan Wage",
  65. "email": "jonwage@gmail.com"
  66. },
  67. {
  68. "name": "Johannes Schmitt",
  69. "email": "schmittjoh@gmail.com"
  70. }
  71. ],
  72. "description": "Docblock Annotations Parser",
  73. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  74. "keywords": [
  75. "annotations",
  76. "docblock",
  77. "parser"
  78. ],
  79. "support": {
  80. "issues": "https://github.com/doctrine/annotations/issues",
  81. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  82. },
  83. "install-path": "../doctrine/annotations"
  84. },
  85. {
  86. "name": "doctrine/lexer",
  87. "version": "1.2.3",
  88. "version_normalized": "1.2.3.0",
  89. "source": {
  90. "type": "git",
  91. "url": "https://github.com/doctrine/lexer.git",
  92. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  93. },
  94. "dist": {
  95. "type": "zip",
  96. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  97. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  98. "shasum": "",
  99. "mirrors": [
  100. {
  101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  102. "preferred": true
  103. }
  104. ]
  105. },
  106. "require": {
  107. "php": "^7.1 || ^8.0"
  108. },
  109. "require-dev": {
  110. "doctrine/coding-standard": "^9.0",
  111. "phpstan/phpstan": "^1.3",
  112. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  113. "vimeo/psalm": "^4.11"
  114. },
  115. "time": "2022-02-28T11:07:21+00:00",
  116. "type": "library",
  117. "installation-source": "dist",
  118. "autoload": {
  119. "psr-4": {
  120. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Guilherme Blanco",
  130. "email": "guilhermeblanco@gmail.com"
  131. },
  132. {
  133. "name": "Roman Borschel",
  134. "email": "roman@code-factory.org"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  142. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "lexer",
  147. "parser",
  148. "php"
  149. ],
  150. "support": {
  151. "issues": "https://github.com/doctrine/lexer/issues",
  152. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  153. },
  154. "funding": [
  155. {
  156. "url": "https://www.doctrine-project.org/sponsorship.html",
  157. "type": "custom"
  158. },
  159. {
  160. "url": "https://www.patreon.com/phpdoctrine",
  161. "type": "patreon"
  162. },
  163. {
  164. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  165. "type": "tidelift"
  166. }
  167. ],
  168. "install-path": "../doctrine/lexer"
  169. },
  170. {
  171. "name": "endroid/qr-code",
  172. "version": "1.9.3",
  173. "version_normalized": "1.9.3.0",
  174. "source": {
  175. "type": "git",
  176. "url": "https://github.com/endroid/qr-code.git",
  177. "reference": "c9644bec2a9cc9318e98d1437de3c628dcd1ef93"
  178. },
  179. "dist": {
  180. "type": "zip",
  181. "url": "https://api.github.com/repos/endroid/qr-code/zipball/c9644bec2a9cc9318e98d1437de3c628dcd1ef93",
  182. "reference": "c9644bec2a9cc9318e98d1437de3c628dcd1ef93",
  183. "shasum": "",
  184. "mirrors": [
  185. {
  186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  187. "preferred": true
  188. }
  189. ]
  190. },
  191. "require": {
  192. "ext-gd": "*",
  193. "php": ">=5.4",
  194. "symfony/options-resolver": "^2.3|^3.0"
  195. },
  196. "require-dev": {
  197. "phpunit/phpunit": "^4.0|^5.0",
  198. "sensio/framework-extra-bundle": "^3.0",
  199. "symfony/browser-kit": "^2.3|^3.0",
  200. "symfony/framework-bundle": "^2.3|^3.0",
  201. "symfony/http-kernel": "^2.3|^3.0"
  202. },
  203. "time": "2017-04-08T09:13:59+00:00",
  204. "type": "library",
  205. "extra": {
  206. "branch-alias": {
  207. "dev-master": "1.x-dev"
  208. }
  209. },
  210. "installation-source": "dist",
  211. "autoload": {
  212. "psr-4": {
  213. "Endroid\\QrCode\\": "src/"
  214. }
  215. },
  216. "notification-url": "https://packagist.org/downloads/",
  217. "license": [
  218. "MIT"
  219. ],
  220. "authors": [
  221. {
  222. "name": "Jeroen van den Enden",
  223. "email": "info@endroid.nl",
  224. "homepage": "http://endroid.nl/"
  225. }
  226. ],
  227. "description": "Endroid QR Code",
  228. "homepage": "https://github.com/endroid/QrCode",
  229. "keywords": [
  230. "bundle",
  231. "code",
  232. "endroid",
  233. "qr",
  234. "qrcode",
  235. "symfony"
  236. ],
  237. "support": {
  238. "issues": "https://github.com/endroid/qr-code/issues",
  239. "source": "https://github.com/endroid/qr-code/tree/1.9.3"
  240. },
  241. "install-path": "../endroid/qr-code"
  242. },
  243. {
  244. "name": "guzzlehttp/guzzle",
  245. "version": "7.5.0",
  246. "version_normalized": "7.5.0.0",
  247. "source": {
  248. "type": "git",
  249. "url": "https://github.com/guzzle/guzzle.git",
  250. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  251. },
  252. "dist": {
  253. "type": "zip",
  254. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  255. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  256. "shasum": "",
  257. "mirrors": [
  258. {
  259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  260. "preferred": true
  261. }
  262. ]
  263. },
  264. "require": {
  265. "ext-json": "*",
  266. "guzzlehttp/promises": "^1.5",
  267. "guzzlehttp/psr7": "^1.9 || ^2.4",
  268. "php": "^7.2.5 || ^8.0",
  269. "psr/http-client": "^1.0",
  270. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  271. },
  272. "provide": {
  273. "psr/http-client-implementation": "1.0"
  274. },
  275. "require-dev": {
  276. "bamarni/composer-bin-plugin": "^1.8.1",
  277. "ext-curl": "*",
  278. "php-http/client-integration-tests": "^3.0",
  279. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  280. "psr/log": "^1.1 || ^2.0 || ^3.0"
  281. },
  282. "suggest": {
  283. "ext-curl": "Required for CURL handler support",
  284. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  285. "psr/log": "Required for using the Log middleware"
  286. },
  287. "time": "2022-08-28T15:39:27+00:00",
  288. "type": "library",
  289. "extra": {
  290. "bamarni-bin": {
  291. "bin-links": true,
  292. "forward-command": false
  293. },
  294. "branch-alias": {
  295. "dev-master": "7.5-dev"
  296. }
  297. },
  298. "installation-source": "dist",
  299. "autoload": {
  300. "files": [
  301. "src/functions_include.php"
  302. ],
  303. "psr-4": {
  304. "GuzzleHttp\\": "src/"
  305. }
  306. },
  307. "notification-url": "https://packagist.org/downloads/",
  308. "license": [
  309. "MIT"
  310. ],
  311. "authors": [
  312. {
  313. "name": "Graham Campbell",
  314. "email": "hello@gjcampbell.co.uk",
  315. "homepage": "https://github.com/GrahamCampbell"
  316. },
  317. {
  318. "name": "Michael Dowling",
  319. "email": "mtdowling@gmail.com",
  320. "homepage": "https://github.com/mtdowling"
  321. },
  322. {
  323. "name": "Jeremy Lindblom",
  324. "email": "jeremeamia@gmail.com",
  325. "homepage": "https://github.com/jeremeamia"
  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. "description": "Guzzle is a PHP HTTP client library",
  349. "keywords": [
  350. "client",
  351. "curl",
  352. "framework",
  353. "http",
  354. "http client",
  355. "psr-18",
  356. "psr-7",
  357. "rest",
  358. "web service"
  359. ],
  360. "support": {
  361. "issues": "https://github.com/guzzle/guzzle/issues",
  362. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  363. },
  364. "funding": [
  365. {
  366. "url": "https://github.com/GrahamCampbell",
  367. "type": "github"
  368. },
  369. {
  370. "url": "https://github.com/Nyholm",
  371. "type": "github"
  372. },
  373. {
  374. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  375. "type": "tidelift"
  376. }
  377. ],
  378. "install-path": "../guzzlehttp/guzzle"
  379. },
  380. {
  381. "name": "guzzlehttp/promises",
  382. "version": "1.5.2",
  383. "version_normalized": "1.5.2.0",
  384. "source": {
  385. "type": "git",
  386. "url": "https://github.com/guzzle/promises.git",
  387. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  388. },
  389. "dist": {
  390. "type": "zip",
  391. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  392. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  393. "shasum": "",
  394. "mirrors": [
  395. {
  396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  397. "preferred": true
  398. }
  399. ]
  400. },
  401. "require": {
  402. "php": ">=5.5"
  403. },
  404. "require-dev": {
  405. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  406. },
  407. "time": "2022-08-28T14:55:35+00:00",
  408. "type": "library",
  409. "extra": {
  410. "branch-alias": {
  411. "dev-master": "1.5-dev"
  412. }
  413. },
  414. "installation-source": "dist",
  415. "autoload": {
  416. "files": [
  417. "src/functions_include.php"
  418. ],
  419. "psr-4": {
  420. "GuzzleHttp\\Promise\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "Graham Campbell",
  430. "email": "hello@gjcampbell.co.uk",
  431. "homepage": "https://github.com/GrahamCampbell"
  432. },
  433. {
  434. "name": "Michael Dowling",
  435. "email": "mtdowling@gmail.com",
  436. "homepage": "https://github.com/mtdowling"
  437. },
  438. {
  439. "name": "Tobias Nyholm",
  440. "email": "tobias.nyholm@gmail.com",
  441. "homepage": "https://github.com/Nyholm"
  442. },
  443. {
  444. "name": "Tobias Schultze",
  445. "email": "webmaster@tubo-world.de",
  446. "homepage": "https://github.com/Tobion"
  447. }
  448. ],
  449. "description": "Guzzle promises library",
  450. "keywords": [
  451. "promise"
  452. ],
  453. "support": {
  454. "issues": "https://github.com/guzzle/promises/issues",
  455. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  456. },
  457. "funding": [
  458. {
  459. "url": "https://github.com/GrahamCampbell",
  460. "type": "github"
  461. },
  462. {
  463. "url": "https://github.com/Nyholm",
  464. "type": "github"
  465. },
  466. {
  467. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  468. "type": "tidelift"
  469. }
  470. ],
  471. "install-path": "../guzzlehttp/promises"
  472. },
  473. {
  474. "name": "guzzlehttp/psr7",
  475. "version": "2.4.3",
  476. "version_normalized": "2.4.3.0",
  477. "source": {
  478. "type": "git",
  479. "url": "https://github.com/guzzle/psr7.git",
  480. "reference": "67c26b443f348a51926030c83481b85718457d3d"
  481. },
  482. "dist": {
  483. "type": "zip",
  484. "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
  485. "reference": "67c26b443f348a51926030c83481b85718457d3d",
  486. "shasum": "",
  487. "mirrors": [
  488. {
  489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  490. "preferred": true
  491. }
  492. ]
  493. },
  494. "require": {
  495. "php": "^7.2.5 || ^8.0",
  496. "psr/http-factory": "^1.0",
  497. "psr/http-message": "^1.0",
  498. "ralouphie/getallheaders": "^3.0"
  499. },
  500. "provide": {
  501. "psr/http-factory-implementation": "1.0",
  502. "psr/http-message-implementation": "1.0"
  503. },
  504. "require-dev": {
  505. "bamarni/composer-bin-plugin": "^1.8.1",
  506. "http-interop/http-factory-tests": "^0.9",
  507. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  508. },
  509. "suggest": {
  510. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  511. },
  512. "time": "2022-10-26T14:07:24+00:00",
  513. "type": "library",
  514. "extra": {
  515. "bamarni-bin": {
  516. "bin-links": true,
  517. "forward-command": false
  518. },
  519. "branch-alias": {
  520. "dev-master": "2.4-dev"
  521. }
  522. },
  523. "installation-source": "dist",
  524. "autoload": {
  525. "psr-4": {
  526. "GuzzleHttp\\Psr7\\": "src/"
  527. }
  528. },
  529. "notification-url": "https://packagist.org/downloads/",
  530. "license": [
  531. "MIT"
  532. ],
  533. "authors": [
  534. {
  535. "name": "Graham Campbell",
  536. "email": "hello@gjcampbell.co.uk",
  537. "homepage": "https://github.com/GrahamCampbell"
  538. },
  539. {
  540. "name": "Michael Dowling",
  541. "email": "mtdowling@gmail.com",
  542. "homepage": "https://github.com/mtdowling"
  543. },
  544. {
  545. "name": "George Mponos",
  546. "email": "gmponos@gmail.com",
  547. "homepage": "https://github.com/gmponos"
  548. },
  549. {
  550. "name": "Tobias Nyholm",
  551. "email": "tobias.nyholm@gmail.com",
  552. "homepage": "https://github.com/Nyholm"
  553. },
  554. {
  555. "name": "Márk Sági-Kazár",
  556. "email": "mark.sagikazar@gmail.com",
  557. "homepage": "https://github.com/sagikazarmark"
  558. },
  559. {
  560. "name": "Tobias Schultze",
  561. "email": "webmaster@tubo-world.de",
  562. "homepage": "https://github.com/Tobion"
  563. },
  564. {
  565. "name": "Márk Sági-Kazár",
  566. "email": "mark.sagikazar@gmail.com",
  567. "homepage": "https://sagikazarmark.hu"
  568. }
  569. ],
  570. "description": "PSR-7 message implementation that also provides common utility methods",
  571. "keywords": [
  572. "http",
  573. "message",
  574. "psr-7",
  575. "request",
  576. "response",
  577. "stream",
  578. "uri",
  579. "url"
  580. ],
  581. "support": {
  582. "issues": "https://github.com/guzzle/psr7/issues",
  583. "source": "https://github.com/guzzle/psr7/tree/2.4.3"
  584. },
  585. "funding": [
  586. {
  587. "url": "https://github.com/GrahamCampbell",
  588. "type": "github"
  589. },
  590. {
  591. "url": "https://github.com/Nyholm",
  592. "type": "github"
  593. },
  594. {
  595. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  596. "type": "tidelift"
  597. }
  598. ],
  599. "install-path": "../guzzlehttp/psr7"
  600. },
  601. {
  602. "name": "hg/apidoc",
  603. "version": "v3.1.9",
  604. "version_normalized": "3.1.9.0",
  605. "source": {
  606. "type": "git",
  607. "url": "https://github.com/HGthecode/thinkphp-apidoc.git",
  608. "reference": "877ff07f80d75444b20f0f252e0e5f67e82f6eb1"
  609. },
  610. "dist": {
  611. "type": "zip",
  612. "url": "https://api.github.com/repos/HGthecode/thinkphp-apidoc/zipball/877ff07f80d75444b20f0f252e0e5f67e82f6eb1",
  613. "reference": "877ff07f80d75444b20f0f252e0e5f67e82f6eb1",
  614. "shasum": "",
  615. "mirrors": [
  616. {
  617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  618. "preferred": true
  619. }
  620. ]
  621. },
  622. "require": {
  623. "doctrine/annotations": "^1.6",
  624. "php": ">=7.1.0",
  625. "symfony/class-loader": "~3.4.47"
  626. },
  627. "time": "2022-08-26T05:55:49+00:00",
  628. "type": "think-extend",
  629. "extra": {
  630. "think": {
  631. "services": [
  632. "hg\\apidoc\\Service"
  633. ],
  634. "config": {
  635. "apidoc": "src/config.php"
  636. }
  637. }
  638. },
  639. "installation-source": "dist",
  640. "autoload": {
  641. "psr-4": {
  642. "hg\\apidoc\\": "src/"
  643. }
  644. },
  645. "notification-url": "https://packagist.org/downloads/",
  646. "license": [
  647. "MIT"
  648. ],
  649. "authors": [
  650. {
  651. "name": "hg-code",
  652. "email": "376401263@qq.com"
  653. }
  654. ],
  655. "description": "thinkphp API文档自动生成",
  656. "keywords": [
  657. "apidoc",
  658. "api文档",
  659. "markdown",
  660. "php api文档",
  661. "php接口文档",
  662. "thinkphp",
  663. "接口文档",
  664. "注释生成",
  665. "自动生成api"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/HGthecode/thinkphp-apidoc/issues",
  669. "source": "https://github.com/HGthecode/thinkphp-apidoc/tree/v3.1.9"
  670. },
  671. "install-path": "../hg/apidoc"
  672. },
  673. {
  674. "name": "nesbot/carbon",
  675. "version": "2.62.1",
  676. "version_normalized": "2.62.1.0",
  677. "source": {
  678. "type": "git",
  679. "url": "https://github.com/briannesbitt/Carbon.git",
  680. "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a"
  681. },
  682. "dist": {
  683. "type": "zip",
  684. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a",
  685. "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a",
  686. "shasum": "",
  687. "mirrors": [
  688. {
  689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  690. "preferred": true
  691. }
  692. ]
  693. },
  694. "require": {
  695. "ext-json": "*",
  696. "php": "^7.1.8 || ^8.0",
  697. "symfony/polyfill-mbstring": "^1.0",
  698. "symfony/polyfill-php80": "^1.16",
  699. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  700. },
  701. "require-dev": {
  702. "doctrine/dbal": "^2.0 || ^3.0",
  703. "doctrine/orm": "^2.7",
  704. "friendsofphp/php-cs-fixer": "^3.0",
  705. "kylekatarnls/multi-tester": "^2.0",
  706. "ondrejmirtes/better-reflection": "*",
  707. "phpmd/phpmd": "^2.9",
  708. "phpstan/extension-installer": "^1.0",
  709. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  710. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  711. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  712. "squizlabs/php_codesniffer": "^3.4"
  713. },
  714. "time": "2022-09-02T07:48:13+00:00",
  715. "bin": [
  716. "bin/carbon"
  717. ],
  718. "type": "library",
  719. "extra": {
  720. "branch-alias": {
  721. "dev-3.x": "3.x-dev",
  722. "dev-master": "2.x-dev"
  723. },
  724. "laravel": {
  725. "providers": [
  726. "Carbon\\Laravel\\ServiceProvider"
  727. ]
  728. },
  729. "phpstan": {
  730. "includes": [
  731. "extension.neon"
  732. ]
  733. }
  734. },
  735. "installation-source": "dist",
  736. "autoload": {
  737. "psr-4": {
  738. "Carbon\\": "src/Carbon/"
  739. }
  740. },
  741. "notification-url": "https://packagist.org/downloads/",
  742. "license": [
  743. "MIT"
  744. ],
  745. "authors": [
  746. {
  747. "name": "Brian Nesbitt",
  748. "email": "brian@nesbot.com",
  749. "homepage": "https://markido.com"
  750. },
  751. {
  752. "name": "kylekatarnls",
  753. "homepage": "https://github.com/kylekatarnls"
  754. }
  755. ],
  756. "description": "An API extension for DateTime that supports 281 different languages.",
  757. "homepage": "https://carbon.nesbot.com",
  758. "keywords": [
  759. "date",
  760. "datetime",
  761. "time"
  762. ],
  763. "support": {
  764. "docs": "https://carbon.nesbot.com/docs",
  765. "issues": "https://github.com/briannesbitt/Carbon/issues",
  766. "source": "https://github.com/briannesbitt/Carbon"
  767. },
  768. "funding": [
  769. {
  770. "url": "https://github.com/sponsors/kylekatarnls",
  771. "type": "github"
  772. },
  773. {
  774. "url": "https://opencollective.com/Carbon#sponsor",
  775. "type": "opencollective"
  776. },
  777. {
  778. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  779. "type": "tidelift"
  780. }
  781. ],
  782. "install-path": "../nesbot/carbon"
  783. },
  784. {
  785. "name": "psr/cache",
  786. "version": "1.0.1",
  787. "version_normalized": "1.0.1.0",
  788. "source": {
  789. "type": "git",
  790. "url": "https://github.com/php-fig/cache.git",
  791. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  792. },
  793. "dist": {
  794. "type": "zip",
  795. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  796. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  797. "shasum": "",
  798. "mirrors": [
  799. {
  800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  801. "preferred": true
  802. }
  803. ]
  804. },
  805. "require": {
  806. "php": ">=5.3.0"
  807. },
  808. "time": "2016-08-06T20:24:11+00:00",
  809. "type": "library",
  810. "extra": {
  811. "branch-alias": {
  812. "dev-master": "1.0.x-dev"
  813. }
  814. },
  815. "installation-source": "dist",
  816. "autoload": {
  817. "psr-4": {
  818. "Psr\\Cache\\": "src/"
  819. }
  820. },
  821. "notification-url": "https://packagist.org/downloads/",
  822. "license": [
  823. "MIT"
  824. ],
  825. "authors": [
  826. {
  827. "name": "PHP-FIG",
  828. "homepage": "http://www.php-fig.org/"
  829. }
  830. ],
  831. "description": "Common interface for caching libraries",
  832. "keywords": [
  833. "cache",
  834. "psr",
  835. "psr-6"
  836. ],
  837. "support": {
  838. "source": "https://github.com/php-fig/cache/tree/master"
  839. },
  840. "install-path": "../psr/cache"
  841. },
  842. {
  843. "name": "psr/container",
  844. "version": "1.1.2",
  845. "version_normalized": "1.1.2.0",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/php-fig/container.git",
  849. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  854. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  855. "shasum": "",
  856. "mirrors": [
  857. {
  858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  859. "preferred": true
  860. }
  861. ]
  862. },
  863. "require": {
  864. "php": ">=7.4.0"
  865. },
  866. "time": "2021-11-05T16:50:12+00:00",
  867. "type": "library",
  868. "installation-source": "dist",
  869. "autoload": {
  870. "psr-4": {
  871. "Psr\\Container\\": "src/"
  872. }
  873. },
  874. "notification-url": "https://packagist.org/downloads/",
  875. "license": [
  876. "MIT"
  877. ],
  878. "authors": [
  879. {
  880. "name": "PHP-FIG",
  881. "homepage": "https://www.php-fig.org/"
  882. }
  883. ],
  884. "description": "Common Container Interface (PHP FIG PSR-11)",
  885. "homepage": "https://github.com/php-fig/container",
  886. "keywords": [
  887. "PSR-11",
  888. "container",
  889. "container-interface",
  890. "container-interop",
  891. "psr"
  892. ],
  893. "support": {
  894. "issues": "https://github.com/php-fig/container/issues",
  895. "source": "https://github.com/php-fig/container/tree/1.1.2"
  896. },
  897. "install-path": "../psr/container"
  898. },
  899. {
  900. "name": "psr/http-client",
  901. "version": "1.0.1",
  902. "version_normalized": "1.0.1.0",
  903. "source": {
  904. "type": "git",
  905. "url": "https://github.com/php-fig/http-client.git",
  906. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  907. },
  908. "dist": {
  909. "type": "zip",
  910. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  911. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  912. "shasum": "",
  913. "mirrors": [
  914. {
  915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  916. "preferred": true
  917. }
  918. ]
  919. },
  920. "require": {
  921. "php": "^7.0 || ^8.0",
  922. "psr/http-message": "^1.0"
  923. },
  924. "time": "2020-06-29T06:28:15+00:00",
  925. "type": "library",
  926. "extra": {
  927. "branch-alias": {
  928. "dev-master": "1.0.x-dev"
  929. }
  930. },
  931. "installation-source": "dist",
  932. "autoload": {
  933. "psr-4": {
  934. "Psr\\Http\\Client\\": "src/"
  935. }
  936. },
  937. "notification-url": "https://packagist.org/downloads/",
  938. "license": [
  939. "MIT"
  940. ],
  941. "authors": [
  942. {
  943. "name": "PHP-FIG",
  944. "homepage": "http://www.php-fig.org/"
  945. }
  946. ],
  947. "description": "Common interface for HTTP clients",
  948. "homepage": "https://github.com/php-fig/http-client",
  949. "keywords": [
  950. "http",
  951. "http-client",
  952. "psr",
  953. "psr-18"
  954. ],
  955. "support": {
  956. "source": "https://github.com/php-fig/http-client/tree/master"
  957. },
  958. "install-path": "../psr/http-client"
  959. },
  960. {
  961. "name": "psr/http-factory",
  962. "version": "1.0.1",
  963. "version_normalized": "1.0.1.0",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/php-fig/http-factory.git",
  967. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  972. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  973. "shasum": "",
  974. "mirrors": [
  975. {
  976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  977. "preferred": true
  978. }
  979. ]
  980. },
  981. "require": {
  982. "php": ">=7.0.0",
  983. "psr/http-message": "^1.0"
  984. },
  985. "time": "2019-04-30T12:38:16+00:00",
  986. "type": "library",
  987. "extra": {
  988. "branch-alias": {
  989. "dev-master": "1.0.x-dev"
  990. }
  991. },
  992. "installation-source": "dist",
  993. "autoload": {
  994. "psr-4": {
  995. "Psr\\Http\\Message\\": "src/"
  996. }
  997. },
  998. "notification-url": "https://packagist.org/downloads/",
  999. "license": [
  1000. "MIT"
  1001. ],
  1002. "authors": [
  1003. {
  1004. "name": "PHP-FIG",
  1005. "homepage": "http://www.php-fig.org/"
  1006. }
  1007. ],
  1008. "description": "Common interfaces for PSR-7 HTTP message factories",
  1009. "keywords": [
  1010. "factory",
  1011. "http",
  1012. "message",
  1013. "psr",
  1014. "psr-17",
  1015. "psr-7",
  1016. "request",
  1017. "response"
  1018. ],
  1019. "support": {
  1020. "source": "https://github.com/php-fig/http-factory/tree/master"
  1021. },
  1022. "install-path": "../psr/http-factory"
  1023. },
  1024. {
  1025. "name": "psr/http-message",
  1026. "version": "1.0.1",
  1027. "version_normalized": "1.0.1.0",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/php-fig/http-message.git",
  1031. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1036. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1037. "shasum": "",
  1038. "mirrors": [
  1039. {
  1040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1041. "preferred": true
  1042. }
  1043. ]
  1044. },
  1045. "require": {
  1046. "php": ">=5.3.0"
  1047. },
  1048. "time": "2016-08-06T14:39:51+00:00",
  1049. "type": "library",
  1050. "extra": {
  1051. "branch-alias": {
  1052. "dev-master": "1.0.x-dev"
  1053. }
  1054. },
  1055. "installation-source": "dist",
  1056. "autoload": {
  1057. "psr-4": {
  1058. "Psr\\Http\\Message\\": "src/"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "MIT"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "PHP-FIG",
  1068. "homepage": "http://www.php-fig.org/"
  1069. }
  1070. ],
  1071. "description": "Common interface for HTTP messages",
  1072. "homepage": "https://github.com/php-fig/http-message",
  1073. "keywords": [
  1074. "http",
  1075. "http-message",
  1076. "psr",
  1077. "psr-7",
  1078. "request",
  1079. "response"
  1080. ],
  1081. "support": {
  1082. "source": "https://github.com/php-fig/http-message/tree/master"
  1083. },
  1084. "install-path": "../psr/http-message"
  1085. },
  1086. {
  1087. "name": "psr/log",
  1088. "version": "1.1.4",
  1089. "version_normalized": "1.1.4.0",
  1090. "source": {
  1091. "type": "git",
  1092. "url": "https://github.com/php-fig/log.git",
  1093. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1094. },
  1095. "dist": {
  1096. "type": "zip",
  1097. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1098. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1099. "shasum": "",
  1100. "mirrors": [
  1101. {
  1102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1103. "preferred": true
  1104. }
  1105. ]
  1106. },
  1107. "require": {
  1108. "php": ">=5.3.0"
  1109. },
  1110. "time": "2021-05-03T11:20:27+00:00",
  1111. "type": "library",
  1112. "extra": {
  1113. "branch-alias": {
  1114. "dev-master": "1.1.x-dev"
  1115. }
  1116. },
  1117. "installation-source": "dist",
  1118. "autoload": {
  1119. "psr-4": {
  1120. "Psr\\Log\\": "Psr/Log/"
  1121. }
  1122. },
  1123. "notification-url": "https://packagist.org/downloads/",
  1124. "license": [
  1125. "MIT"
  1126. ],
  1127. "authors": [
  1128. {
  1129. "name": "PHP-FIG",
  1130. "homepage": "https://www.php-fig.org/"
  1131. }
  1132. ],
  1133. "description": "Common interface for logging libraries",
  1134. "homepage": "https://github.com/php-fig/log",
  1135. "keywords": [
  1136. "log",
  1137. "psr",
  1138. "psr-3"
  1139. ],
  1140. "support": {
  1141. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1142. },
  1143. "install-path": "../psr/log"
  1144. },
  1145. {
  1146. "name": "psr/simple-cache",
  1147. "version": "1.0.1",
  1148. "version_normalized": "1.0.1.0",
  1149. "source": {
  1150. "type": "git",
  1151. "url": "https://github.com/php-fig/simple-cache.git",
  1152. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1153. },
  1154. "dist": {
  1155. "type": "zip",
  1156. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1157. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1158. "shasum": "",
  1159. "mirrors": [
  1160. {
  1161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1162. "preferred": true
  1163. }
  1164. ]
  1165. },
  1166. "require": {
  1167. "php": ">=5.3.0"
  1168. },
  1169. "time": "2017-10-23T01:57:42+00:00",
  1170. "type": "library",
  1171. "extra": {
  1172. "branch-alias": {
  1173. "dev-master": "1.0.x-dev"
  1174. }
  1175. },
  1176. "installation-source": "dist",
  1177. "autoload": {
  1178. "psr-4": {
  1179. "Psr\\SimpleCache\\": "src/"
  1180. }
  1181. },
  1182. "notification-url": "https://packagist.org/downloads/",
  1183. "license": [
  1184. "MIT"
  1185. ],
  1186. "authors": [
  1187. {
  1188. "name": "PHP-FIG",
  1189. "homepage": "http://www.php-fig.org/"
  1190. }
  1191. ],
  1192. "description": "Common interfaces for simple caching",
  1193. "keywords": [
  1194. "cache",
  1195. "caching",
  1196. "psr",
  1197. "psr-16",
  1198. "simple-cache"
  1199. ],
  1200. "support": {
  1201. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1202. },
  1203. "install-path": "../psr/simple-cache"
  1204. },
  1205. {
  1206. "name": "ralouphie/getallheaders",
  1207. "version": "3.0.3",
  1208. "version_normalized": "3.0.3.0",
  1209. "source": {
  1210. "type": "git",
  1211. "url": "https://github.com/ralouphie/getallheaders.git",
  1212. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1213. },
  1214. "dist": {
  1215. "type": "zip",
  1216. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1217. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1218. "shasum": "",
  1219. "mirrors": [
  1220. {
  1221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1222. "preferred": true
  1223. }
  1224. ]
  1225. },
  1226. "require": {
  1227. "php": ">=5.6"
  1228. },
  1229. "require-dev": {
  1230. "php-coveralls/php-coveralls": "^2.1",
  1231. "phpunit/phpunit": "^5 || ^6.5"
  1232. },
  1233. "time": "2019-03-08T08:55:37+00:00",
  1234. "type": "library",
  1235. "installation-source": "dist",
  1236. "autoload": {
  1237. "files": [
  1238. "src/getallheaders.php"
  1239. ]
  1240. },
  1241. "notification-url": "https://packagist.org/downloads/",
  1242. "license": [
  1243. "MIT"
  1244. ],
  1245. "authors": [
  1246. {
  1247. "name": "Ralph Khattar",
  1248. "email": "ralph.khattar@gmail.com"
  1249. }
  1250. ],
  1251. "description": "A polyfill for getallheaders.",
  1252. "support": {
  1253. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1254. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1255. },
  1256. "install-path": "../ralouphie/getallheaders"
  1257. },
  1258. {
  1259. "name": "symfony/class-loader",
  1260. "version": "v3.4.47",
  1261. "version_normalized": "3.4.47.0",
  1262. "source": {
  1263. "type": "git",
  1264. "url": "https://github.com/symfony/class-loader.git",
  1265. "reference": "a22265a9f3511c0212bf79f54910ca5a77c0e92c"
  1266. },
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://api.github.com/repos/symfony/class-loader/zipball/a22265a9f3511c0212bf79f54910ca5a77c0e92c",
  1270. "reference": "a22265a9f3511c0212bf79f54910ca5a77c0e92c",
  1271. "shasum": "",
  1272. "mirrors": [
  1273. {
  1274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1275. "preferred": true
  1276. }
  1277. ]
  1278. },
  1279. "require": {
  1280. "php": "^5.5.9|>=7.0.8"
  1281. },
  1282. "require-dev": {
  1283. "symfony/finder": "~2.8|~3.0|~4.0",
  1284. "symfony/polyfill-apcu": "~1.1"
  1285. },
  1286. "suggest": {
  1287. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  1288. },
  1289. "time": "2020-10-24T10:57:07+00:00",
  1290. "type": "library",
  1291. "installation-source": "dist",
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Symfony\\Component\\ClassLoader\\": ""
  1295. },
  1296. "exclude-from-classmap": [
  1297. "/Tests/"
  1298. ]
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Fabien Potencier",
  1307. "email": "fabien@symfony.com"
  1308. },
  1309. {
  1310. "name": "Symfony Community",
  1311. "homepage": "https://symfony.com/contributors"
  1312. }
  1313. ],
  1314. "description": "Symfony ClassLoader Component",
  1315. "homepage": "https://symfony.com",
  1316. "support": {
  1317. "source": "https://github.com/symfony/class-loader/tree/v3.4.47"
  1318. },
  1319. "funding": [
  1320. {
  1321. "url": "https://symfony.com/sponsor",
  1322. "type": "custom"
  1323. },
  1324. {
  1325. "url": "https://github.com/fabpot",
  1326. "type": "github"
  1327. },
  1328. {
  1329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1330. "type": "tidelift"
  1331. }
  1332. ],
  1333. "install-path": "../symfony/class-loader"
  1334. },
  1335. {
  1336. "name": "symfony/deprecation-contracts",
  1337. "version": "v2.5.2",
  1338. "version_normalized": "2.5.2.0",
  1339. "source": {
  1340. "type": "git",
  1341. "url": "https://github.com/symfony/deprecation-contracts.git",
  1342. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  1343. },
  1344. "dist": {
  1345. "type": "zip",
  1346. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1347. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1348. "shasum": "",
  1349. "mirrors": [
  1350. {
  1351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1352. "preferred": true
  1353. }
  1354. ]
  1355. },
  1356. "require": {
  1357. "php": ">=7.1"
  1358. },
  1359. "time": "2022-01-02T09:53:40+00:00",
  1360. "type": "library",
  1361. "extra": {
  1362. "branch-alias": {
  1363. "dev-main": "2.5-dev"
  1364. },
  1365. "thanks": {
  1366. "name": "symfony/contracts",
  1367. "url": "https://github.com/symfony/contracts"
  1368. }
  1369. },
  1370. "installation-source": "dist",
  1371. "autoload": {
  1372. "files": [
  1373. "function.php"
  1374. ]
  1375. },
  1376. "notification-url": "https://packagist.org/downloads/",
  1377. "license": [
  1378. "MIT"
  1379. ],
  1380. "authors": [
  1381. {
  1382. "name": "Nicolas Grekas",
  1383. "email": "p@tchwork.com"
  1384. },
  1385. {
  1386. "name": "Symfony Community",
  1387. "homepage": "https://symfony.com/contributors"
  1388. }
  1389. ],
  1390. "description": "A generic function and convention to trigger deprecation notices",
  1391. "homepage": "https://symfony.com",
  1392. "support": {
  1393. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  1394. },
  1395. "funding": [
  1396. {
  1397. "url": "https://symfony.com/sponsor",
  1398. "type": "custom"
  1399. },
  1400. {
  1401. "url": "https://github.com/fabpot",
  1402. "type": "github"
  1403. },
  1404. {
  1405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1406. "type": "tidelift"
  1407. }
  1408. ],
  1409. "install-path": "../symfony/deprecation-contracts"
  1410. },
  1411. {
  1412. "name": "symfony/options-resolver",
  1413. "version": "v3.4.47",
  1414. "version_normalized": "3.4.47.0",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/symfony/options-resolver.git",
  1418. "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744",
  1423. "reference": "c7efc97a47b2ebaabc19d5b6c6b50f5c37c92744",
  1424. "shasum": "",
  1425. "mirrors": [
  1426. {
  1427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1428. "preferred": true
  1429. }
  1430. ]
  1431. },
  1432. "require": {
  1433. "php": "^5.5.9|>=7.0.8"
  1434. },
  1435. "time": "2020-10-24T10:57:07+00:00",
  1436. "type": "library",
  1437. "installation-source": "dist",
  1438. "autoload": {
  1439. "psr-4": {
  1440. "Symfony\\Component\\OptionsResolver\\": ""
  1441. },
  1442. "exclude-from-classmap": [
  1443. "/Tests/"
  1444. ]
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "Fabien Potencier",
  1453. "email": "fabien@symfony.com"
  1454. },
  1455. {
  1456. "name": "Symfony Community",
  1457. "homepage": "https://symfony.com/contributors"
  1458. }
  1459. ],
  1460. "description": "Symfony OptionsResolver Component",
  1461. "homepage": "https://symfony.com",
  1462. "keywords": [
  1463. "config",
  1464. "configuration",
  1465. "options"
  1466. ],
  1467. "support": {
  1468. "source": "https://github.com/symfony/options-resolver/tree/v3.4.47"
  1469. },
  1470. "funding": [
  1471. {
  1472. "url": "https://symfony.com/sponsor",
  1473. "type": "custom"
  1474. },
  1475. {
  1476. "url": "https://github.com/fabpot",
  1477. "type": "github"
  1478. },
  1479. {
  1480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1481. "type": "tidelift"
  1482. }
  1483. ],
  1484. "install-path": "../symfony/options-resolver"
  1485. },
  1486. {
  1487. "name": "symfony/polyfill-mbstring",
  1488. "version": "v1.26.0",
  1489. "version_normalized": "1.26.0.0",
  1490. "source": {
  1491. "type": "git",
  1492. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1493. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  1494. },
  1495. "dist": {
  1496. "type": "zip",
  1497. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  1498. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  1499. "shasum": "",
  1500. "mirrors": [
  1501. {
  1502. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1503. "preferred": true
  1504. }
  1505. ]
  1506. },
  1507. "require": {
  1508. "php": ">=7.1"
  1509. },
  1510. "provide": {
  1511. "ext-mbstring": "*"
  1512. },
  1513. "suggest": {
  1514. "ext-mbstring": "For best performance"
  1515. },
  1516. "time": "2022-05-24T11:49:31+00:00",
  1517. "type": "library",
  1518. "extra": {
  1519. "branch-alias": {
  1520. "dev-main": "1.26-dev"
  1521. },
  1522. "thanks": {
  1523. "name": "symfony/polyfill",
  1524. "url": "https://github.com/symfony/polyfill"
  1525. }
  1526. },
  1527. "installation-source": "dist",
  1528. "autoload": {
  1529. "files": [
  1530. "bootstrap.php"
  1531. ],
  1532. "psr-4": {
  1533. "Symfony\\Polyfill\\Mbstring\\": ""
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Nicolas Grekas",
  1543. "email": "p@tchwork.com"
  1544. },
  1545. {
  1546. "name": "Symfony Community",
  1547. "homepage": "https://symfony.com/contributors"
  1548. }
  1549. ],
  1550. "description": "Symfony polyfill for the Mbstring extension",
  1551. "homepage": "https://symfony.com",
  1552. "keywords": [
  1553. "compatibility",
  1554. "mbstring",
  1555. "polyfill",
  1556. "portable",
  1557. "shim"
  1558. ],
  1559. "support": {
  1560. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  1561. },
  1562. "funding": [
  1563. {
  1564. "url": "https://symfony.com/sponsor",
  1565. "type": "custom"
  1566. },
  1567. {
  1568. "url": "https://github.com/fabpot",
  1569. "type": "github"
  1570. },
  1571. {
  1572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1573. "type": "tidelift"
  1574. }
  1575. ],
  1576. "install-path": "../symfony/polyfill-mbstring"
  1577. },
  1578. {
  1579. "name": "symfony/polyfill-php80",
  1580. "version": "v1.26.0",
  1581. "version_normalized": "1.26.0.0",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/symfony/polyfill-php80.git",
  1585. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  1590. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  1591. "shasum": "",
  1592. "mirrors": [
  1593. {
  1594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1595. "preferred": true
  1596. }
  1597. ]
  1598. },
  1599. "require": {
  1600. "php": ">=7.1"
  1601. },
  1602. "time": "2022-05-10T07:21:04+00:00",
  1603. "type": "library",
  1604. "extra": {
  1605. "branch-alias": {
  1606. "dev-main": "1.26-dev"
  1607. },
  1608. "thanks": {
  1609. "name": "symfony/polyfill",
  1610. "url": "https://github.com/symfony/polyfill"
  1611. }
  1612. },
  1613. "installation-source": "dist",
  1614. "autoload": {
  1615. "files": [
  1616. "bootstrap.php"
  1617. ],
  1618. "psr-4": {
  1619. "Symfony\\Polyfill\\Php80\\": ""
  1620. },
  1621. "classmap": [
  1622. "Resources/stubs"
  1623. ]
  1624. },
  1625. "notification-url": "https://packagist.org/downloads/",
  1626. "license": [
  1627. "MIT"
  1628. ],
  1629. "authors": [
  1630. {
  1631. "name": "Ion Bazan",
  1632. "email": "ion.bazan@gmail.com"
  1633. },
  1634. {
  1635. "name": "Nicolas Grekas",
  1636. "email": "p@tchwork.com"
  1637. },
  1638. {
  1639. "name": "Symfony Community",
  1640. "homepage": "https://symfony.com/contributors"
  1641. }
  1642. ],
  1643. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1644. "homepage": "https://symfony.com",
  1645. "keywords": [
  1646. "compatibility",
  1647. "polyfill",
  1648. "portable",
  1649. "shim"
  1650. ],
  1651. "support": {
  1652. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  1653. },
  1654. "funding": [
  1655. {
  1656. "url": "https://symfony.com/sponsor",
  1657. "type": "custom"
  1658. },
  1659. {
  1660. "url": "https://github.com/fabpot",
  1661. "type": "github"
  1662. },
  1663. {
  1664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1665. "type": "tidelift"
  1666. }
  1667. ],
  1668. "install-path": "../symfony/polyfill-php80"
  1669. },
  1670. {
  1671. "name": "symfony/translation",
  1672. "version": "v5.4.12",
  1673. "version_normalized": "5.4.12.0",
  1674. "source": {
  1675. "type": "git",
  1676. "url": "https://github.com/symfony/translation.git",
  1677. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae"
  1678. },
  1679. "dist": {
  1680. "type": "zip",
  1681. "url": "https://api.github.com/repos/symfony/translation/zipball/42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  1682. "reference": "42ecc77eb4f229ce2df702a648ec93b8478d76ae",
  1683. "shasum": "",
  1684. "mirrors": [
  1685. {
  1686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1687. "preferred": true
  1688. }
  1689. ]
  1690. },
  1691. "require": {
  1692. "php": ">=7.2.5",
  1693. "symfony/deprecation-contracts": "^2.1|^3",
  1694. "symfony/polyfill-mbstring": "~1.0",
  1695. "symfony/polyfill-php80": "^1.16",
  1696. "symfony/translation-contracts": "^2.3"
  1697. },
  1698. "conflict": {
  1699. "symfony/config": "<4.4",
  1700. "symfony/console": "<5.3",
  1701. "symfony/dependency-injection": "<5.0",
  1702. "symfony/http-kernel": "<5.0",
  1703. "symfony/twig-bundle": "<5.0",
  1704. "symfony/yaml": "<4.4"
  1705. },
  1706. "provide": {
  1707. "symfony/translation-implementation": "2.3"
  1708. },
  1709. "require-dev": {
  1710. "psr/log": "^1|^2|^3",
  1711. "symfony/config": "^4.4|^5.0|^6.0",
  1712. "symfony/console": "^5.4|^6.0",
  1713. "symfony/dependency-injection": "^5.0|^6.0",
  1714. "symfony/finder": "^4.4|^5.0|^6.0",
  1715. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  1716. "symfony/http-kernel": "^5.0|^6.0",
  1717. "symfony/intl": "^4.4|^5.0|^6.0",
  1718. "symfony/polyfill-intl-icu": "^1.21",
  1719. "symfony/service-contracts": "^1.1.2|^2|^3",
  1720. "symfony/yaml": "^4.4|^5.0|^6.0"
  1721. },
  1722. "suggest": {
  1723. "psr/log-implementation": "To use logging capability in translator",
  1724. "symfony/config": "",
  1725. "symfony/yaml": ""
  1726. },
  1727. "time": "2022-08-02T15:52:22+00:00",
  1728. "type": "library",
  1729. "installation-source": "dist",
  1730. "autoload": {
  1731. "files": [
  1732. "Resources/functions.php"
  1733. ],
  1734. "psr-4": {
  1735. "Symfony\\Component\\Translation\\": ""
  1736. },
  1737. "exclude-from-classmap": [
  1738. "/Tests/"
  1739. ]
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "MIT"
  1744. ],
  1745. "authors": [
  1746. {
  1747. "name": "Fabien Potencier",
  1748. "email": "fabien@symfony.com"
  1749. },
  1750. {
  1751. "name": "Symfony Community",
  1752. "homepage": "https://symfony.com/contributors"
  1753. }
  1754. ],
  1755. "description": "Provides tools to internationalize your application",
  1756. "homepage": "https://symfony.com",
  1757. "support": {
  1758. "source": "https://github.com/symfony/translation/tree/v5.4.12"
  1759. },
  1760. "funding": [
  1761. {
  1762. "url": "https://symfony.com/sponsor",
  1763. "type": "custom"
  1764. },
  1765. {
  1766. "url": "https://github.com/fabpot",
  1767. "type": "github"
  1768. },
  1769. {
  1770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1771. "type": "tidelift"
  1772. }
  1773. ],
  1774. "install-path": "../symfony/translation"
  1775. },
  1776. {
  1777. "name": "symfony/translation-contracts",
  1778. "version": "v2.5.2",
  1779. "version_normalized": "2.5.2.0",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://github.com/symfony/translation-contracts.git",
  1783. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  1788. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  1789. "shasum": "",
  1790. "mirrors": [
  1791. {
  1792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1793. "preferred": true
  1794. }
  1795. ]
  1796. },
  1797. "require": {
  1798. "php": ">=7.2.5"
  1799. },
  1800. "suggest": {
  1801. "symfony/translation-implementation": ""
  1802. },
  1803. "time": "2022-06-27T16:58:25+00:00",
  1804. "type": "library",
  1805. "extra": {
  1806. "branch-alias": {
  1807. "dev-main": "2.5-dev"
  1808. },
  1809. "thanks": {
  1810. "name": "symfony/contracts",
  1811. "url": "https://github.com/symfony/contracts"
  1812. }
  1813. },
  1814. "installation-source": "dist",
  1815. "autoload": {
  1816. "psr-4": {
  1817. "Symfony\\Contracts\\Translation\\": ""
  1818. }
  1819. },
  1820. "notification-url": "https://packagist.org/downloads/",
  1821. "license": [
  1822. "MIT"
  1823. ],
  1824. "authors": [
  1825. {
  1826. "name": "Nicolas Grekas",
  1827. "email": "p@tchwork.com"
  1828. },
  1829. {
  1830. "name": "Symfony Community",
  1831. "homepage": "https://symfony.com/contributors"
  1832. }
  1833. ],
  1834. "description": "Generic abstractions related to translation",
  1835. "homepage": "https://symfony.com",
  1836. "keywords": [
  1837. "abstractions",
  1838. "contracts",
  1839. "decoupling",
  1840. "interfaces",
  1841. "interoperability",
  1842. "standards"
  1843. ],
  1844. "support": {
  1845. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  1846. },
  1847. "funding": [
  1848. {
  1849. "url": "https://symfony.com/sponsor",
  1850. "type": "custom"
  1851. },
  1852. {
  1853. "url": "https://github.com/fabpot",
  1854. "type": "github"
  1855. },
  1856. {
  1857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1858. "type": "tidelift"
  1859. }
  1860. ],
  1861. "install-path": "../symfony/translation-contracts"
  1862. },
  1863. {
  1864. "name": "topthink/framework",
  1865. "version": "v6.1.1",
  1866. "version_normalized": "6.1.1.0",
  1867. "source": {
  1868. "type": "git",
  1869. "url": "https://github.com/top-think/framework.git",
  1870. "reference": "2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210"
  1871. },
  1872. "dist": {
  1873. "type": "zip",
  1874. "url": "https://api.github.com/repos/top-think/framework/zipball/2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210",
  1875. "reference": "2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210",
  1876. "shasum": "",
  1877. "mirrors": [
  1878. {
  1879. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1880. "preferred": true
  1881. }
  1882. ]
  1883. },
  1884. "require": {
  1885. "ext-json": "*",
  1886. "ext-mbstring": "*",
  1887. "php": ">=7.2.5",
  1888. "psr/container": "~1.0",
  1889. "psr/http-message": "^1.0",
  1890. "psr/log": "~1.0",
  1891. "psr/simple-cache": "^1.0",
  1892. "topthink/think-helper": "^3.1.1",
  1893. "topthink/think-orm": "^2.0"
  1894. },
  1895. "require-dev": {
  1896. "guzzlehttp/psr7": "^2.1.0",
  1897. "mikey179/vfsstream": "^1.6",
  1898. "mockery/mockery": "^1.2",
  1899. "phpunit/phpunit": "^7.0"
  1900. },
  1901. "time": "2022-10-26T03:48:53+00:00",
  1902. "type": "library",
  1903. "installation-source": "dist",
  1904. "autoload": {
  1905. "files": [],
  1906. "psr-4": {
  1907. "think\\": "src/think/"
  1908. }
  1909. },
  1910. "notification-url": "https://packagist.org/downloads/",
  1911. "license": [
  1912. "Apache-2.0"
  1913. ],
  1914. "authors": [
  1915. {
  1916. "name": "liu21st",
  1917. "email": "liu21st@gmail.com"
  1918. },
  1919. {
  1920. "name": "yunwuxin",
  1921. "email": "448901948@qq.com"
  1922. }
  1923. ],
  1924. "description": "The ThinkPHP Framework.",
  1925. "homepage": "http://thinkphp.cn/",
  1926. "keywords": [
  1927. "framework",
  1928. "orm",
  1929. "thinkphp"
  1930. ],
  1931. "support": {
  1932. "issues": "https://github.com/top-think/framework/issues",
  1933. "source": "https://github.com/top-think/framework/tree/v6.1.1"
  1934. },
  1935. "install-path": "../topthink/framework"
  1936. },
  1937. {
  1938. "name": "topthink/think-helper",
  1939. "version": "v3.1.6",
  1940. "version_normalized": "3.1.6.0",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/top-think/think-helper.git",
  1944. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  1949. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  1950. "shasum": "",
  1951. "mirrors": [
  1952. {
  1953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1954. "preferred": true
  1955. }
  1956. ]
  1957. },
  1958. "require": {
  1959. "php": ">=7.1.0"
  1960. },
  1961. "require-dev": {
  1962. "phpunit/phpunit": "^9.5"
  1963. },
  1964. "time": "2021-12-15T04:27:55+00:00",
  1965. "type": "library",
  1966. "installation-source": "dist",
  1967. "autoload": {
  1968. "files": [
  1969. "src/helper.php"
  1970. ],
  1971. "psr-4": {
  1972. "think\\": "src"
  1973. }
  1974. },
  1975. "notification-url": "https://packagist.org/downloads/",
  1976. "license": [
  1977. "Apache-2.0"
  1978. ],
  1979. "authors": [
  1980. {
  1981. "name": "yunwuxin",
  1982. "email": "448901948@qq.com"
  1983. }
  1984. ],
  1985. "description": "The ThinkPHP6 Helper Package",
  1986. "support": {
  1987. "issues": "https://github.com/top-think/think-helper/issues",
  1988. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  1989. },
  1990. "install-path": "../topthink/think-helper"
  1991. },
  1992. {
  1993. "name": "topthink/think-orm",
  1994. "version": "v2.0.54",
  1995. "version_normalized": "2.0.54.0",
  1996. "source": {
  1997. "type": "git",
  1998. "url": "https://github.com/top-think/think-orm.git",
  1999. "reference": "97b061b47616301ff29fbd4c35ed9184e1162e4e"
  2000. },
  2001. "dist": {
  2002. "type": "zip",
  2003. "url": "https://api.github.com/repos/top-think/think-orm/zipball/97b061b47616301ff29fbd4c35ed9184e1162e4e",
  2004. "reference": "97b061b47616301ff29fbd4c35ed9184e1162e4e",
  2005. "shasum": "",
  2006. "mirrors": [
  2007. {
  2008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2009. "preferred": true
  2010. }
  2011. ]
  2012. },
  2013. "require": {
  2014. "ext-json": "*",
  2015. "ext-pdo": "*",
  2016. "php": ">=7.1.0",
  2017. "psr/log": "^1.0|^2.0",
  2018. "psr/simple-cache": "^1.0|^2.0",
  2019. "topthink/think-helper": "^3.1"
  2020. },
  2021. "require-dev": {
  2022. "phpunit/phpunit": "^7|^8|^9.5"
  2023. },
  2024. "time": "2022-07-05T05:25:51+00:00",
  2025. "type": "library",
  2026. "installation-source": "dist",
  2027. "autoload": {
  2028. "files": [
  2029. "stubs/load_stubs.php"
  2030. ],
  2031. "psr-4": {
  2032. "think\\": "src"
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "Apache-2.0"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "liu21st",
  2042. "email": "liu21st@gmail.com"
  2043. }
  2044. ],
  2045. "description": "think orm",
  2046. "keywords": [
  2047. "database",
  2048. "orm"
  2049. ],
  2050. "support": {
  2051. "issues": "https://github.com/top-think/think-orm/issues",
  2052. "source": "https://github.com/top-think/think-orm/tree/v2.0.54"
  2053. },
  2054. "install-path": "../topthink/think-orm"
  2055. },
  2056. {
  2057. "name": "topthink/think-template",
  2058. "version": "v2.0.8",
  2059. "version_normalized": "2.0.8.0",
  2060. "source": {
  2061. "type": "git",
  2062. "url": "https://github.com/top-think/think-template.git",
  2063. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368"
  2064. },
  2065. "dist": {
  2066. "type": "zip",
  2067. "url": "https://api.github.com/repos/top-think/think-template/zipball/abfc293f74f9ef5127b5c416310a01fe42e59368",
  2068. "reference": "abfc293f74f9ef5127b5c416310a01fe42e59368",
  2069. "shasum": "",
  2070. "mirrors": [
  2071. {
  2072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2073. "preferred": true
  2074. }
  2075. ]
  2076. },
  2077. "require": {
  2078. "php": ">=7.1.0",
  2079. "psr/simple-cache": "^1.0"
  2080. },
  2081. "time": "2020-12-10T07:52:03+00:00",
  2082. "type": "library",
  2083. "installation-source": "dist",
  2084. "autoload": {
  2085. "psr-4": {
  2086. "think\\": "src"
  2087. }
  2088. },
  2089. "notification-url": "https://packagist.org/downloads/",
  2090. "license": [
  2091. "Apache-2.0"
  2092. ],
  2093. "authors": [
  2094. {
  2095. "name": "liu21st",
  2096. "email": "liu21st@gmail.com"
  2097. }
  2098. ],
  2099. "description": "the php template engine",
  2100. "support": {
  2101. "issues": "https://github.com/top-think/think-template/issues",
  2102. "source": "https://github.com/top-think/think-template/tree/v2.0.8"
  2103. },
  2104. "install-path": "../topthink/think-template"
  2105. },
  2106. {
  2107. "name": "topthink/think-view",
  2108. "version": "v1.0.14",
  2109. "version_normalized": "1.0.14.0",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/top-think/think-view.git",
  2113. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  2118. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  2119. "shasum": "",
  2120. "mirrors": [
  2121. {
  2122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2123. "preferred": true
  2124. }
  2125. ]
  2126. },
  2127. "require": {
  2128. "php": ">=7.1.0",
  2129. "topthink/think-template": "^2.0"
  2130. },
  2131. "time": "2019-11-06T11:40:13+00:00",
  2132. "type": "library",
  2133. "installation-source": "dist",
  2134. "autoload": {
  2135. "psr-4": {
  2136. "think\\view\\driver\\": "src"
  2137. }
  2138. },
  2139. "notification-url": "https://packagist.org/downloads/",
  2140. "license": [
  2141. "Apache-2.0"
  2142. ],
  2143. "authors": [
  2144. {
  2145. "name": "liu21st",
  2146. "email": "liu21st@gmail.com"
  2147. }
  2148. ],
  2149. "description": "thinkphp template driver",
  2150. "support": {
  2151. "issues": "https://github.com/top-think/think-view/issues",
  2152. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  2153. },
  2154. "install-path": "../topthink/think-view"
  2155. },
  2156. {
  2157. "name": "zoujingli/ip2region",
  2158. "version": "v2.0.0",
  2159. "version_normalized": "2.0.0.0",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/zoujingli/ip2region.git",
  2163. "reference": "8bf96bb720e206f1ade1673bae79fde7b97ba8ca"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://api.github.com/repos/zoujingli/ip2region/zipball/8bf96bb720e206f1ade1673bae79fde7b97ba8ca",
  2168. "reference": "8bf96bb720e206f1ade1673bae79fde7b97ba8ca",
  2169. "shasum": "",
  2170. "mirrors": [
  2171. {
  2172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2173. "preferred": true
  2174. }
  2175. ]
  2176. },
  2177. "require": {
  2178. "php": ">=5.4"
  2179. },
  2180. "time": "2022-07-18T10:42:52+00:00",
  2181. "type": "library",
  2182. "installation-source": "dist",
  2183. "autoload": {
  2184. "classmap": [
  2185. "Ip2Region.php",
  2186. "XdbSearcher.php"
  2187. ]
  2188. },
  2189. "notification-url": "https://packagist.org/downloads/",
  2190. "license": [
  2191. "Apache-2.0"
  2192. ],
  2193. "authors": [
  2194. {
  2195. "name": "Anyon",
  2196. "email": "zoujingli@qq.com",
  2197. "homepage": "https://thinkadmin.top"
  2198. }
  2199. ],
  2200. "description": "Ip2Region for PHP",
  2201. "homepage": "https://github.com/zoujingli/Ip2Region",
  2202. "keywords": [
  2203. "Ip2Region"
  2204. ],
  2205. "support": {
  2206. "issues": "https://github.com/zoujingli/ip2region/issues",
  2207. "source": "https://github.com/zoujingli/ip2region/tree/v2.0.0"
  2208. },
  2209. "install-path": "../zoujingli/ip2region"
  2210. },
  2211. {
  2212. "name": "zoujingli/think-library",
  2213. "version": "v6.0.37",
  2214. "version_normalized": "6.0.37.0",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://github.com/zoujingli/ThinkLibrary.git",
  2218. "reference": "ae186a9e6c2e4175f574a5aaed77aa60f91ebf8e"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/ae186a9e6c2e4175f574a5aaed77aa60f91ebf8e",
  2223. "reference": "ae186a9e6c2e4175f574a5aaed77aa60f91ebf8e",
  2224. "shasum": "",
  2225. "mirrors": [
  2226. {
  2227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2228. "preferred": true
  2229. }
  2230. ]
  2231. },
  2232. "require": {
  2233. "ext-curl": "*",
  2234. "ext-gd": "*",
  2235. "ext-iconv": "*",
  2236. "ext-json": "*",
  2237. "ext-mbstring": "*",
  2238. "ext-openssl": "*",
  2239. "php": "^7.1|^8.0",
  2240. "topthink/framework": "^6.0.13"
  2241. },
  2242. "time": "2022-09-25T12:55:32+00:00",
  2243. "type": "library",
  2244. "extra": {
  2245. "think": {
  2246. "services": [
  2247. "think\\admin\\Library"
  2248. ]
  2249. }
  2250. },
  2251. "installation-source": "dist",
  2252. "autoload": {
  2253. "files": [
  2254. "src/common.php"
  2255. ],
  2256. "psr-4": {
  2257. "think\\admin\\": "src"
  2258. }
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "MIT"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Anyon",
  2267. "email": "zoujingli@qq.com"
  2268. }
  2269. ],
  2270. "description": "ThinkPHP v6.0 Development Library",
  2271. "homepage": "https://thinkadmin.top",
  2272. "support": {
  2273. "email": "zoujingli@qq.com",
  2274. "forum": "https://thinkadmin.top",
  2275. "issues": "https://gitee.com/zoujingli/ThinkLibrary/issues",
  2276. "source": "https://gitee.com/zoujingli/ThinkLibrary",
  2277. "wiki": "https://thinkadmin.top"
  2278. },
  2279. "install-path": "../zoujingli/think-library"
  2280. },
  2281. {
  2282. "name": "zoujingli/wechat-developer",
  2283. "version": "v1.2.35",
  2284. "version_normalized": "1.2.35.0",
  2285. "source": {
  2286. "type": "git",
  2287. "url": "https://github.com/zoujingli/WeChatDeveloper.git",
  2288. "reference": "cfe3e83798d3c7b78855ae214acb6b14321de45d"
  2289. },
  2290. "dist": {
  2291. "type": "zip",
  2292. "url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/cfe3e83798d3c7b78855ae214acb6b14321de45d",
  2293. "reference": "cfe3e83798d3c7b78855ae214acb6b14321de45d",
  2294. "shasum": "",
  2295. "mirrors": [
  2296. {
  2297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2298. "preferred": true
  2299. }
  2300. ]
  2301. },
  2302. "require": {
  2303. "ext-bcmath": "*",
  2304. "ext-curl": "*",
  2305. "ext-json": "*",
  2306. "ext-libxml": "*",
  2307. "ext-mbstring": "*",
  2308. "ext-openssl": "*",
  2309. "ext-simplexml": "*",
  2310. "ext-xml": "*",
  2311. "php": ">=5.4"
  2312. },
  2313. "time": "2022-04-26T03:02:29+00:00",
  2314. "type": "library",
  2315. "installation-source": "dist",
  2316. "autoload": {
  2317. "psr-4": {
  2318. "WePay\\": "WePay",
  2319. "AliPay\\": "AliPay",
  2320. "WeChat\\": "WeChat",
  2321. "WeMini\\": "WeMini",
  2322. "WePayV3\\": "WePayV3"
  2323. },
  2324. "classmap": [
  2325. "We.php"
  2326. ]
  2327. },
  2328. "notification-url": "https://packagist.org/downloads/",
  2329. "license": [
  2330. "MIT"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "Anyon",
  2335. "email": "zoujingli@qq.com",
  2336. "homepage": "https://thinkadmin.top"
  2337. }
  2338. ],
  2339. "description": "WeChat platform and WeChat payment development tools",
  2340. "homepage": "https://github.com/kentwangit/WeChatDeveloper",
  2341. "keywords": [
  2342. "WeChatDeveloper",
  2343. "WeMini",
  2344. "alipay",
  2345. "wechat",
  2346. "wechatpay",
  2347. "wepay"
  2348. ],
  2349. "support": {
  2350. "issues": "https://github.com/zoujingli/WeChatDeveloper/issues",
  2351. "source": "https://github.com/zoujingli/WeChatDeveloper/tree/v1.2.35"
  2352. },
  2353. "install-path": "../zoujingli/wechat-developer"
  2354. }
  2355. ],
  2356. "dev": true,
  2357. "dev-package-names": []
  2358. }