composer.lock 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "e8e67d8f4df34132931d50535bd3997d",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "1.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee",
  20. "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-iconv": "*",
  31. "php": "^5.4|^7.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8"
  35. },
  36. "suggest": {
  37. "ext-gd": "to generate QR code images"
  38. },
  39. "type": "library",
  40. "autoload": {
  41. "psr-0": {
  42. "BaconQrCode": "src/"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "BSD-2-Clause"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Ben Scholzen 'DASPRiD'",
  52. "email": "mail@dasprids.de",
  53. "homepage": "http://www.dasprids.de",
  54. "role": "Developer"
  55. }
  56. ],
  57. "description": "BaconQrCode is a QR code generator for PHP.",
  58. "homepage": "https://github.com/Bacon/BaconQrCode",
  59. "time": "2017-10-17T09:59:25+00:00"
  60. },
  61. {
  62. "name": "easywechat-composer/easywechat-composer",
  63. "version": "1.3.1",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/mingyoung/easywechat-composer.git",
  67. "reference": "01648e8f065553efea39f67a439b54362d7bf91a"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/01648e8f065553efea39f67a439b54362d7bf91a",
  72. "reference": "01648e8f065553efea39f67a439b54362d7bf91a",
  73. "shasum": "",
  74. "mirrors": [
  75. {
  76. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  77. "preferred": true
  78. }
  79. ]
  80. },
  81. "require": {
  82. "composer-plugin-api": "^1.0 || ^2.0",
  83. "php": ">=7.0"
  84. },
  85. "require-dev": {
  86. "composer/composer": "^1.0 || ^2.0",
  87. "phpunit/phpunit": "^6.5 || ^7.0"
  88. },
  89. "type": "composer-plugin",
  90. "extra": {
  91. "class": "EasyWeChatComposer\\Plugin"
  92. },
  93. "autoload": {
  94. "psr-4": {
  95. "EasyWeChatComposer\\": "src/"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "authors": [
  103. {
  104. "name": "张铭阳",
  105. "email": "mingyoungcheung@gmail.com"
  106. }
  107. ],
  108. "description": "The composer plugin for EasyWeChat",
  109. "time": "2020-04-10T15:22:45+00:00"
  110. },
  111. {
  112. "name": "flc/dysms",
  113. "version": "v1.0.3",
  114. "source": {
  115. "type": "git",
  116. "url": "https://github.com/flc1125/dysms.git",
  117. "reference": "9786bd8f462d64def83af9432315c752a42627c5"
  118. },
  119. "dist": {
  120. "type": "zip",
  121. "url": "https://api.github.com/repos/flc1125/dysms/zipball/9786bd8f462d64def83af9432315c752a42627c5",
  122. "reference": "9786bd8f462d64def83af9432315c752a42627c5",
  123. "shasum": "",
  124. "mirrors": [
  125. {
  126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  127. "preferred": true
  128. }
  129. ]
  130. },
  131. "require": {
  132. "php": ">=5.4.0"
  133. },
  134. "type": "library",
  135. "autoload": {
  136. "psr-4": {
  137. "Flc\\Dysms\\": "src/"
  138. }
  139. },
  140. "notification-url": "https://packagist.org/downloads/",
  141. "license": [
  142. "MIT"
  143. ],
  144. "description": "阿里短信-适用Laravel、Yii、Thinkphp等任何PHP项目...",
  145. "keywords": [
  146. "alisms",
  147. "aliyun",
  148. "dysms",
  149. "flc",
  150. "阿里短信"
  151. ],
  152. "time": "2019-04-05T16:40:06+00:00"
  153. },
  154. {
  155. "name": "guzzlehttp/guzzle",
  156. "version": "6.5.2",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/guzzle/guzzle.git",
  160. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
  165. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "ext-json": "*",
  176. "guzzlehttp/promises": "^1.0",
  177. "guzzlehttp/psr7": "^1.6.1",
  178. "php": ">=5.5"
  179. },
  180. "require-dev": {
  181. "ext-curl": "*",
  182. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  183. "psr/log": "^1.1"
  184. },
  185. "suggest": {
  186. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  187. "psr/log": "Required for using the Log middleware"
  188. },
  189. "type": "library",
  190. "extra": {
  191. "branch-alias": {
  192. "dev-master": "6.5-dev"
  193. }
  194. },
  195. "autoload": {
  196. "psr-4": {
  197. "GuzzleHttp\\": "src/"
  198. },
  199. "files": [
  200. "src/functions_include.php"
  201. ]
  202. },
  203. "notification-url": "https://packagist.org/downloads/",
  204. "license": [
  205. "MIT"
  206. ],
  207. "authors": [
  208. {
  209. "name": "Michael Dowling",
  210. "email": "mtdowling@gmail.com",
  211. "homepage": "https://github.com/mtdowling"
  212. }
  213. ],
  214. "description": "Guzzle is a PHP HTTP client library",
  215. "homepage": "http://guzzlephp.org/",
  216. "keywords": [
  217. "client",
  218. "curl",
  219. "framework",
  220. "http",
  221. "http client",
  222. "rest",
  223. "web service"
  224. ],
  225. "time": "2019-12-23T11:57:10+00:00"
  226. },
  227. {
  228. "name": "guzzlehttp/promises",
  229. "version": "v1.3.1",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/guzzle/promises.git",
  233. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  238. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  239. "shasum": "",
  240. "mirrors": [
  241. {
  242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  243. "preferred": true
  244. }
  245. ]
  246. },
  247. "require": {
  248. "php": ">=5.5.0"
  249. },
  250. "require-dev": {
  251. "phpunit/phpunit": "^4.0"
  252. },
  253. "type": "library",
  254. "extra": {
  255. "branch-alias": {
  256. "dev-master": "1.4-dev"
  257. }
  258. },
  259. "autoload": {
  260. "psr-4": {
  261. "GuzzleHttp\\Promise\\": "src/"
  262. },
  263. "files": [
  264. "src/functions_include.php"
  265. ]
  266. },
  267. "notification-url": "https://packagist.org/downloads/",
  268. "license": [
  269. "MIT"
  270. ],
  271. "authors": [
  272. {
  273. "name": "Michael Dowling",
  274. "email": "mtdowling@gmail.com",
  275. "homepage": "https://github.com/mtdowling"
  276. }
  277. ],
  278. "description": "Guzzle promises library",
  279. "keywords": [
  280. "promise"
  281. ],
  282. "time": "2016-12-20T10:07:11+00:00"
  283. },
  284. {
  285. "name": "guzzlehttp/psr7",
  286. "version": "1.6.1",
  287. "source": {
  288. "type": "git",
  289. "url": "https://github.com/guzzle/psr7.git",
  290. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  291. },
  292. "dist": {
  293. "type": "zip",
  294. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  295. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  296. "shasum": "",
  297. "mirrors": [
  298. {
  299. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  300. "preferred": true
  301. }
  302. ]
  303. },
  304. "require": {
  305. "php": ">=5.4.0",
  306. "psr/http-message": "~1.0",
  307. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  308. },
  309. "provide": {
  310. "psr/http-message-implementation": "1.0"
  311. },
  312. "require-dev": {
  313. "ext-zlib": "*",
  314. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  315. },
  316. "suggest": {
  317. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  318. },
  319. "type": "library",
  320. "extra": {
  321. "branch-alias": {
  322. "dev-master": "1.6-dev"
  323. }
  324. },
  325. "autoload": {
  326. "psr-4": {
  327. "GuzzleHttp\\Psr7\\": "src/"
  328. },
  329. "files": [
  330. "src/functions_include.php"
  331. ]
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "MIT"
  336. ],
  337. "authors": [
  338. {
  339. "name": "Michael Dowling",
  340. "email": "mtdowling@gmail.com",
  341. "homepage": "https://github.com/mtdowling"
  342. },
  343. {
  344. "name": "Tobias Schultze",
  345. "homepage": "https://github.com/Tobion"
  346. }
  347. ],
  348. "description": "PSR-7 message implementation that also provides common utility methods",
  349. "keywords": [
  350. "http",
  351. "message",
  352. "psr-7",
  353. "request",
  354. "response",
  355. "stream",
  356. "uri",
  357. "url"
  358. ],
  359. "time": "2019-07-01T23:21:34+00:00"
  360. },
  361. {
  362. "name": "hashids/hashids",
  363. "version": "2.0.4",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/vinkla/hashids.git",
  367. "reference": "7a945a5192d4a5c8888364970feece9bc26179df"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/vinkla/hashids/zipball/7a945a5192d4a5c8888364970feece9bc26179df",
  372. "reference": "7a945a5192d4a5c8888364970feece9bc26179df",
  373. "shasum": "",
  374. "mirrors": [
  375. {
  376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  377. "preferred": true
  378. }
  379. ]
  380. },
  381. "require": {
  382. "php": "^5.6.4 || ^7.0"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "^5.7 || ^6.3"
  386. },
  387. "suggest": {
  388. "ext-bcmatch": "Required to use BC Math arbitrary precision mathematics (*).",
  389. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  390. },
  391. "type": "library",
  392. "extra": {
  393. "branch-alias": {
  394. "dev-master": "2.1-dev"
  395. }
  396. },
  397. "autoload": {
  398. "psr-4": {
  399. "Hashids\\": "src/"
  400. }
  401. },
  402. "notification-url": "https://packagist.org/downloads/",
  403. "license": [
  404. "MIT"
  405. ],
  406. "authors": [
  407. {
  408. "name": "Ivan Akimov",
  409. "email": "ivan@barreleye.com",
  410. "homepage": "https://twitter.com/IvanAkimov"
  411. },
  412. {
  413. "name": "Vincent Klaiber",
  414. "email": "hello@vinkla.com",
  415. "homepage": "https://vinkla.com"
  416. }
  417. ],
  418. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  419. "homepage": "http://hashids.org/php",
  420. "keywords": [
  421. "bitly",
  422. "decode",
  423. "encode",
  424. "hash",
  425. "hashid",
  426. "hashids",
  427. "ids",
  428. "obfuscate",
  429. "youtube"
  430. ],
  431. "time": "2017-10-28T11:24:20+00:00"
  432. },
  433. {
  434. "name": "johnlui/aliyun-oss",
  435. "version": "v2.2.1",
  436. "source": {
  437. "type": "git",
  438. "url": "https://github.com/johnlui/AliyunOSS.git",
  439. "reference": "f10fdec4775e22a8295366981e1daf48c62ce5d3"
  440. },
  441. "dist": {
  442. "type": "zip",
  443. "url": "https://api.github.com/repos/johnlui/AliyunOSS/zipball/f10fdec4775e22a8295366981e1daf48c62ce5d3",
  444. "reference": "f10fdec4775e22a8295366981e1daf48c62ce5d3",
  445. "shasum": "",
  446. "mirrors": [
  447. {
  448. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  449. "preferred": true
  450. }
  451. ]
  452. },
  453. "require": {
  454. "php": ">=5.4.0"
  455. },
  456. "type": "library",
  457. "autoload": {
  458. "files": [
  459. "src/AliyunOSS.php"
  460. ]
  461. },
  462. "notification-url": "https://packagist.org/downloads/",
  463. "license": [
  464. "MIT"
  465. ],
  466. "authors": [
  467. {
  468. "name": "John Lui",
  469. "email": "wenhanlv@gmail.com"
  470. }
  471. ],
  472. "description": "阿里云 OSS 官方 SDK 的 Composer 封装,支持任何 PHP 项目,包括 Laravel、Symfony、TinyLara 等等。",
  473. "homepage": "https://github.com/johnlui/AliyunOSS",
  474. "keywords": [
  475. "AliyunOSS",
  476. "aliyun",
  477. "oss"
  478. ],
  479. "time": "2017-04-06T06:48:21+00:00"
  480. },
  481. {
  482. "name": "monolog/monolog",
  483. "version": "2.0.2",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/Seldaek/monolog.git",
  487. "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c861fcba2ca29404dc9e617eedd9eff4616986b8",
  492. "reference": "c861fcba2ca29404dc9e617eedd9eff4616986b8",
  493. "shasum": "",
  494. "mirrors": [
  495. {
  496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  497. "preferred": true
  498. }
  499. ]
  500. },
  501. "require": {
  502. "php": "^7.2",
  503. "psr/log": "^1.0.1"
  504. },
  505. "provide": {
  506. "psr/log-implementation": "1.0.0"
  507. },
  508. "require-dev": {
  509. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  510. "doctrine/couchdb": "~1.0@dev",
  511. "elasticsearch/elasticsearch": "^6.0",
  512. "graylog2/gelf-php": "^1.4.2",
  513. "jakub-onderka/php-parallel-lint": "^0.9",
  514. "php-amqplib/php-amqplib": "~2.4",
  515. "php-console/php-console": "^3.1.3",
  516. "phpspec/prophecy": "^1.6.1",
  517. "phpunit/phpunit": "^8.3",
  518. "predis/predis": "^1.1",
  519. "rollbar/rollbar": "^1.3",
  520. "ruflin/elastica": ">=0.90 <3.0",
  521. "swiftmailer/swiftmailer": "^5.3|^6.0"
  522. },
  523. "suggest": {
  524. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  525. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  526. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  527. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  528. "ext-mbstring": "Allow to work properly with unicode symbols",
  529. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  530. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  531. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  532. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  533. "php-console/php-console": "Allow sending log messages to Google Chrome",
  534. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  535. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  536. },
  537. "type": "library",
  538. "extra": {
  539. "branch-alias": {
  540. "dev-master": "2.x-dev"
  541. }
  542. },
  543. "autoload": {
  544. "psr-4": {
  545. "Monolog\\": "src/Monolog"
  546. }
  547. },
  548. "notification-url": "https://packagist.org/downloads/",
  549. "license": [
  550. "MIT"
  551. ],
  552. "authors": [
  553. {
  554. "name": "Jordi Boggiano",
  555. "email": "j.boggiano@seld.be",
  556. "homepage": "http://seld.be"
  557. }
  558. ],
  559. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  560. "homepage": "http://github.com/Seldaek/monolog",
  561. "keywords": [
  562. "log",
  563. "logging",
  564. "psr-3"
  565. ],
  566. "time": "2019-12-20T14:22:59+00:00"
  567. },
  568. {
  569. "name": "overtrue/socialite",
  570. "version": "2.0.16",
  571. "source": {
  572. "type": "git",
  573. "url": "https://github.com/overtrue/socialite.git",
  574. "reference": "bbcd8ffd2e1f3aa7c4d5298c56c6d73803aa3067"
  575. },
  576. "dist": {
  577. "type": "zip",
  578. "url": "https://api.github.com/repos/overtrue/socialite/zipball/bbcd8ffd2e1f3aa7c4d5298c56c6d73803aa3067",
  579. "reference": "bbcd8ffd2e1f3aa7c4d5298c56c6d73803aa3067",
  580. "shasum": "",
  581. "mirrors": [
  582. {
  583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  584. "preferred": true
  585. }
  586. ]
  587. },
  588. "require": {
  589. "ext-json": "*",
  590. "guzzlehttp/guzzle": "~5.0|~6.0",
  591. "php": ">=7.0",
  592. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  593. },
  594. "conflict": {
  595. "socialiteproviders/weixin": "*"
  596. },
  597. "require-dev": {
  598. "mockery/mockery": "~1.2",
  599. "phpunit/phpunit": "~6"
  600. },
  601. "type": "library",
  602. "autoload": {
  603. "psr-4": {
  604. "Overtrue\\Socialite\\": "src/"
  605. }
  606. },
  607. "notification-url": "https://packagist.org/downloads/",
  608. "license": [
  609. "MIT"
  610. ],
  611. "authors": [
  612. {
  613. "name": "overtrue",
  614. "email": "anzhengchao@gmail.com"
  615. }
  616. ],
  617. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  618. "keywords": [
  619. "login",
  620. "oauth",
  621. "qq",
  622. "social",
  623. "wechat",
  624. "weibo"
  625. ],
  626. "time": "2020-03-04T15:22:25+00:00"
  627. },
  628. {
  629. "name": "overtrue/wechat",
  630. "version": "4.2.23",
  631. "source": {
  632. "type": "git",
  633. "url": "https://github.com/overtrue/wechat.git",
  634. "reference": "811b9a3c2b6a13d003164814562273d9d22f7925"
  635. },
  636. "dist": {
  637. "type": "zip",
  638. "url": "https://api.github.com/repos/overtrue/wechat/zipball/811b9a3c2b6a13d003164814562273d9d22f7925",
  639. "reference": "811b9a3c2b6a13d003164814562273d9d22f7925",
  640. "shasum": "",
  641. "mirrors": [
  642. {
  643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  644. "preferred": true
  645. }
  646. ]
  647. },
  648. "require": {
  649. "easywechat-composer/easywechat-composer": "^1.1",
  650. "ext-fileinfo": "*",
  651. "ext-openssl": "*",
  652. "ext-simplexml": "*",
  653. "guzzlehttp/guzzle": "^6.2",
  654. "monolog/monolog": "^1.22 || ^2.0",
  655. "overtrue/socialite": "~2.0",
  656. "php": ">=7.2",
  657. "pimple/pimple": "^3.0",
  658. "psr/simple-cache": "^1.0",
  659. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  660. "symfony/event-dispatcher": "^4.3 || ^5.0",
  661. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  662. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  663. },
  664. "require-dev": {
  665. "friendsofphp/php-cs-fixer": "^2.15",
  666. "mikey179/vfsstream": "^1.6",
  667. "mockery/mockery": "^1.2.3",
  668. "phpstan/phpstan": "^0.12.0",
  669. "phpunit/phpunit": "^7.5"
  670. },
  671. "type": "library",
  672. "autoload": {
  673. "psr-4": {
  674. "EasyWeChat\\": "src/"
  675. },
  676. "files": [
  677. "src/Kernel/Support/Helpers.php",
  678. "src/Kernel/Helpers.php"
  679. ]
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "overtrue",
  688. "email": "anzhengchao@gmail.com"
  689. }
  690. ],
  691. "description": "微信SDK",
  692. "keywords": [
  693. "easywechat",
  694. "sdk",
  695. "wechat",
  696. "weixin",
  697. "weixin-sdk"
  698. ],
  699. "time": "2020-06-17T03:02:12+00:00"
  700. },
  701. {
  702. "name": "paragonie/random_compat",
  703. "version": "v9.99.99",
  704. "source": {
  705. "type": "git",
  706. "url": "https://github.com/paragonie/random_compat.git",
  707. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  708. },
  709. "dist": {
  710. "type": "zip",
  711. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  712. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  713. "shasum": "",
  714. "mirrors": [
  715. {
  716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  717. "preferred": true
  718. }
  719. ]
  720. },
  721. "require": {
  722. "php": "^7"
  723. },
  724. "require-dev": {
  725. "phpunit/phpunit": "4.*|5.*",
  726. "vimeo/psalm": "^1"
  727. },
  728. "suggest": {
  729. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  730. },
  731. "type": "library",
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "MIT"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Paragon Initiative Enterprises",
  739. "email": "security@paragonie.com",
  740. "homepage": "https://paragonie.com"
  741. }
  742. ],
  743. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  744. "keywords": [
  745. "csprng",
  746. "polyfill",
  747. "pseudorandom",
  748. "random"
  749. ],
  750. "time": "2018-07-02T15:55:56+00:00"
  751. },
  752. {
  753. "name": "pimple/pimple",
  754. "version": "v3.2.3",
  755. "source": {
  756. "type": "git",
  757. "url": "https://github.com/silexphp/Pimple.git",
  758. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  759. },
  760. "dist": {
  761. "type": "zip",
  762. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  763. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  764. "shasum": "",
  765. "mirrors": [
  766. {
  767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  768. "preferred": true
  769. }
  770. ]
  771. },
  772. "require": {
  773. "php": ">=5.3.0",
  774. "psr/container": "^1.0"
  775. },
  776. "require-dev": {
  777. "symfony/phpunit-bridge": "^3.2"
  778. },
  779. "type": "library",
  780. "extra": {
  781. "branch-alias": {
  782. "dev-master": "3.2.x-dev"
  783. }
  784. },
  785. "autoload": {
  786. "psr-0": {
  787. "Pimple": "src/"
  788. }
  789. },
  790. "notification-url": "https://packagist.org/downloads/",
  791. "license": [
  792. "MIT"
  793. ],
  794. "authors": [
  795. {
  796. "name": "Fabien Potencier",
  797. "email": "fabien@symfony.com"
  798. }
  799. ],
  800. "description": "Pimple, a simple Dependency Injection Container",
  801. "homepage": "http://pimple.sensiolabs.org",
  802. "keywords": [
  803. "container",
  804. "dependency injection"
  805. ],
  806. "time": "2018-01-21T07:42:36+00:00"
  807. },
  808. {
  809. "name": "psr/cache",
  810. "version": "1.0.1",
  811. "source": {
  812. "type": "git",
  813. "url": "https://github.com/php-fig/cache.git",
  814. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  815. },
  816. "dist": {
  817. "type": "zip",
  818. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  819. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  820. "shasum": "",
  821. "mirrors": [
  822. {
  823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  824. "preferred": true
  825. }
  826. ]
  827. },
  828. "require": {
  829. "php": ">=5.3.0"
  830. },
  831. "type": "library",
  832. "extra": {
  833. "branch-alias": {
  834. "dev-master": "1.0.x-dev"
  835. }
  836. },
  837. "autoload": {
  838. "psr-4": {
  839. "Psr\\Cache\\": "src/"
  840. }
  841. },
  842. "notification-url": "https://packagist.org/downloads/",
  843. "license": [
  844. "MIT"
  845. ],
  846. "authors": [
  847. {
  848. "name": "PHP-FIG",
  849. "homepage": "http://www.php-fig.org/"
  850. }
  851. ],
  852. "description": "Common interface for caching libraries",
  853. "keywords": [
  854. "cache",
  855. "psr",
  856. "psr-6"
  857. ],
  858. "time": "2016-08-06T20:24:11+00:00"
  859. },
  860. {
  861. "name": "psr/container",
  862. "version": "1.0.0",
  863. "source": {
  864. "type": "git",
  865. "url": "https://github.com/php-fig/container.git",
  866. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  867. },
  868. "dist": {
  869. "type": "zip",
  870. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  871. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  872. "shasum": "",
  873. "mirrors": [
  874. {
  875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  876. "preferred": true
  877. }
  878. ]
  879. },
  880. "require": {
  881. "php": ">=5.3.0"
  882. },
  883. "type": "library",
  884. "extra": {
  885. "branch-alias": {
  886. "dev-master": "1.0.x-dev"
  887. }
  888. },
  889. "autoload": {
  890. "psr-4": {
  891. "Psr\\Container\\": "src/"
  892. }
  893. },
  894. "notification-url": "https://packagist.org/downloads/",
  895. "license": [
  896. "MIT"
  897. ],
  898. "authors": [
  899. {
  900. "name": "PHP-FIG",
  901. "homepage": "http://www.php-fig.org/"
  902. }
  903. ],
  904. "description": "Common Container Interface (PHP FIG PSR-11)",
  905. "homepage": "https://github.com/php-fig/container",
  906. "keywords": [
  907. "PSR-11",
  908. "container",
  909. "container-interface",
  910. "container-interop",
  911. "psr"
  912. ],
  913. "time": "2017-02-14T16:28:37+00:00"
  914. },
  915. {
  916. "name": "psr/http-message",
  917. "version": "1.0.1",
  918. "source": {
  919. "type": "git",
  920. "url": "https://github.com/php-fig/http-message.git",
  921. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  922. },
  923. "dist": {
  924. "type": "zip",
  925. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  926. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  927. "shasum": "",
  928. "mirrors": [
  929. {
  930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  931. "preferred": true
  932. }
  933. ]
  934. },
  935. "require": {
  936. "php": ">=5.3.0"
  937. },
  938. "type": "library",
  939. "extra": {
  940. "branch-alias": {
  941. "dev-master": "1.0.x-dev"
  942. }
  943. },
  944. "autoload": {
  945. "psr-4": {
  946. "Psr\\Http\\Message\\": "src/"
  947. }
  948. },
  949. "notification-url": "https://packagist.org/downloads/",
  950. "license": [
  951. "MIT"
  952. ],
  953. "authors": [
  954. {
  955. "name": "PHP-FIG",
  956. "homepage": "http://www.php-fig.org/"
  957. }
  958. ],
  959. "description": "Common interface for HTTP messages",
  960. "homepage": "https://github.com/php-fig/http-message",
  961. "keywords": [
  962. "http",
  963. "http-message",
  964. "psr",
  965. "psr-7",
  966. "request",
  967. "response"
  968. ],
  969. "time": "2016-08-06T14:39:51+00:00"
  970. },
  971. {
  972. "name": "psr/log",
  973. "version": "1.1.3",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/php-fig/log.git",
  977. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  982. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  983. "shasum": "",
  984. "mirrors": [
  985. {
  986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  987. "preferred": true
  988. }
  989. ]
  990. },
  991. "require": {
  992. "php": ">=5.3.0"
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "1.1.x-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Psr\\Log\\": "Psr/Log/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "authors": [
  1010. {
  1011. "name": "PHP-FIG",
  1012. "homepage": "http://www.php-fig.org/"
  1013. }
  1014. ],
  1015. "description": "Common interface for logging libraries",
  1016. "homepage": "https://github.com/php-fig/log",
  1017. "keywords": [
  1018. "log",
  1019. "psr",
  1020. "psr-3"
  1021. ],
  1022. "time": "2020-03-23T09:12:05+00:00"
  1023. },
  1024. {
  1025. "name": "psr/simple-cache",
  1026. "version": "1.0.1",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/php-fig/simple-cache.git",
  1030. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1035. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1036. "shasum": "",
  1037. "mirrors": [
  1038. {
  1039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1040. "preferred": true
  1041. }
  1042. ]
  1043. },
  1044. "require": {
  1045. "php": ">=5.3.0"
  1046. },
  1047. "type": "library",
  1048. "extra": {
  1049. "branch-alias": {
  1050. "dev-master": "1.0.x-dev"
  1051. }
  1052. },
  1053. "autoload": {
  1054. "psr-4": {
  1055. "Psr\\SimpleCache\\": "src/"
  1056. }
  1057. },
  1058. "notification-url": "https://packagist.org/downloads/",
  1059. "license": [
  1060. "MIT"
  1061. ],
  1062. "authors": [
  1063. {
  1064. "name": "PHP-FIG",
  1065. "homepage": "http://www.php-fig.org/"
  1066. }
  1067. ],
  1068. "description": "Common interfaces for simple caching",
  1069. "keywords": [
  1070. "cache",
  1071. "caching",
  1072. "psr",
  1073. "psr-16",
  1074. "simple-cache"
  1075. ],
  1076. "time": "2017-10-23T01:57:42+00:00"
  1077. },
  1078. {
  1079. "name": "ralouphie/getallheaders",
  1080. "version": "3.0.3",
  1081. "source": {
  1082. "type": "git",
  1083. "url": "https://github.com/ralouphie/getallheaders.git",
  1084. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1085. },
  1086. "dist": {
  1087. "type": "zip",
  1088. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1089. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1090. "shasum": "",
  1091. "mirrors": [
  1092. {
  1093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1094. "preferred": true
  1095. }
  1096. ]
  1097. },
  1098. "require": {
  1099. "php": ">=5.6"
  1100. },
  1101. "require-dev": {
  1102. "php-coveralls/php-coveralls": "^2.1",
  1103. "phpunit/phpunit": "^5 || ^6.5"
  1104. },
  1105. "type": "library",
  1106. "autoload": {
  1107. "files": [
  1108. "src/getallheaders.php"
  1109. ]
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Ralph Khattar",
  1118. "email": "ralph.khattar@gmail.com"
  1119. }
  1120. ],
  1121. "description": "A polyfill for getallheaders.",
  1122. "time": "2019-03-08T08:55:37+00:00"
  1123. },
  1124. {
  1125. "name": "ramsey/uuid",
  1126. "version": "3.9.3",
  1127. "source": {
  1128. "type": "git",
  1129. "url": "https://github.com/ramsey/uuid.git",
  1130. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92"
  1131. },
  1132. "dist": {
  1133. "type": "zip",
  1134. "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92",
  1135. "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92",
  1136. "shasum": "",
  1137. "mirrors": [
  1138. {
  1139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1140. "preferred": true
  1141. }
  1142. ]
  1143. },
  1144. "require": {
  1145. "ext-json": "*",
  1146. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  1147. "php": "^5.4 | ^7 | ^8",
  1148. "symfony/polyfill-ctype": "^1.8"
  1149. },
  1150. "replace": {
  1151. "rhumsaa/uuid": "self.version"
  1152. },
  1153. "require-dev": {
  1154. "codeception/aspect-mock": "^1 | ^2",
  1155. "doctrine/annotations": "^1.2",
  1156. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  1157. "jakub-onderka/php-parallel-lint": "^1",
  1158. "mockery/mockery": "^0.9.11 | ^1",
  1159. "moontoast/math": "^1.1",
  1160. "paragonie/random-lib": "^2",
  1161. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  1162. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  1163. "squizlabs/php_codesniffer": "^3.5"
  1164. },
  1165. "suggest": {
  1166. "ext-ctype": "Provides support for PHP Ctype functions",
  1167. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  1168. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  1169. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  1170. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  1171. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  1172. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  1173. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  1174. },
  1175. "type": "library",
  1176. "extra": {
  1177. "branch-alias": {
  1178. "dev-master": "3.x-dev"
  1179. }
  1180. },
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Ramsey\\Uuid\\": "src/"
  1184. },
  1185. "files": [
  1186. "src/functions.php"
  1187. ]
  1188. },
  1189. "notification-url": "https://packagist.org/downloads/",
  1190. "license": [
  1191. "MIT"
  1192. ],
  1193. "authors": [
  1194. {
  1195. "name": "Ben Ramsey",
  1196. "email": "ben@benramsey.com",
  1197. "homepage": "https://benramsey.com"
  1198. },
  1199. {
  1200. "name": "Marijn Huizendveld",
  1201. "email": "marijn.huizendveld@gmail.com"
  1202. },
  1203. {
  1204. "name": "Thibaud Fabre",
  1205. "email": "thibaud@aztech.io"
  1206. }
  1207. ],
  1208. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  1209. "homepage": "https://github.com/ramsey/uuid",
  1210. "keywords": [
  1211. "guid",
  1212. "identifier",
  1213. "uuid"
  1214. ],
  1215. "time": "2020-02-21T04:36:14+00:00"
  1216. },
  1217. {
  1218. "name": "symfony/cache",
  1219. "version": "v4.4.7",
  1220. "source": {
  1221. "type": "git",
  1222. "url": "https://github.com/symfony/cache.git",
  1223. "reference": "f777b570291aebe51081b9827e05f3a747665e87"
  1224. },
  1225. "dist": {
  1226. "type": "zip",
  1227. "url": "https://api.github.com/repos/symfony/cache/zipball/f777b570291aebe51081b9827e05f3a747665e87",
  1228. "reference": "f777b570291aebe51081b9827e05f3a747665e87",
  1229. "shasum": "",
  1230. "mirrors": [
  1231. {
  1232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1233. "preferred": true
  1234. }
  1235. ]
  1236. },
  1237. "require": {
  1238. "php": "^7.1.3",
  1239. "psr/cache": "~1.0",
  1240. "psr/log": "~1.0",
  1241. "symfony/cache-contracts": "^1.1.7|^2",
  1242. "symfony/service-contracts": "^1.1|^2",
  1243. "symfony/var-exporter": "^4.2|^5.0"
  1244. },
  1245. "conflict": {
  1246. "doctrine/dbal": "<2.5",
  1247. "symfony/dependency-injection": "<3.4",
  1248. "symfony/http-kernel": "<4.4",
  1249. "symfony/var-dumper": "<4.4"
  1250. },
  1251. "provide": {
  1252. "psr/cache-implementation": "1.0",
  1253. "psr/simple-cache-implementation": "1.0",
  1254. "symfony/cache-implementation": "1.0"
  1255. },
  1256. "require-dev": {
  1257. "cache/integration-tests": "dev-master",
  1258. "doctrine/cache": "~1.6",
  1259. "doctrine/dbal": "~2.5",
  1260. "predis/predis": "~1.1",
  1261. "psr/simple-cache": "^1.0",
  1262. "symfony/config": "^4.2|^5.0",
  1263. "symfony/dependency-injection": "^3.4|^4.1|^5.0",
  1264. "symfony/var-dumper": "^4.4|^5.0"
  1265. },
  1266. "type": "library",
  1267. "extra": {
  1268. "branch-alias": {
  1269. "dev-master": "4.4-dev"
  1270. }
  1271. },
  1272. "autoload": {
  1273. "psr-4": {
  1274. "Symfony\\Component\\Cache\\": ""
  1275. },
  1276. "exclude-from-classmap": [
  1277. "/Tests/"
  1278. ]
  1279. },
  1280. "notification-url": "https://packagist.org/downloads/",
  1281. "license": [
  1282. "MIT"
  1283. ],
  1284. "authors": [
  1285. {
  1286. "name": "Nicolas Grekas",
  1287. "email": "p@tchwork.com"
  1288. },
  1289. {
  1290. "name": "Symfony Community",
  1291. "homepage": "https://symfony.com/contributors"
  1292. }
  1293. ],
  1294. "description": "Symfony Cache component with PSR-6, PSR-16, and tags",
  1295. "homepage": "https://symfony.com",
  1296. "keywords": [
  1297. "caching",
  1298. "psr6"
  1299. ],
  1300. "time": "2020-03-27T16:54:36+00:00"
  1301. },
  1302. {
  1303. "name": "symfony/cache-contracts",
  1304. "version": "v1.1.7",
  1305. "source": {
  1306. "type": "git",
  1307. "url": "https://github.com/symfony/cache-contracts.git",
  1308. "reference": "af50d14ada9e4e82cfabfabdc502d144f89be0a1"
  1309. },
  1310. "dist": {
  1311. "type": "zip",
  1312. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/af50d14ada9e4e82cfabfabdc502d144f89be0a1",
  1313. "reference": "af50d14ada9e4e82cfabfabdc502d144f89be0a1",
  1314. "shasum": "",
  1315. "mirrors": [
  1316. {
  1317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1318. "preferred": true
  1319. }
  1320. ]
  1321. },
  1322. "require": {
  1323. "php": "^7.1.3",
  1324. "psr/cache": "^1.0"
  1325. },
  1326. "suggest": {
  1327. "symfony/cache-implementation": ""
  1328. },
  1329. "type": "library",
  1330. "extra": {
  1331. "branch-alias": {
  1332. "dev-master": "1.1-dev"
  1333. }
  1334. },
  1335. "autoload": {
  1336. "psr-4": {
  1337. "Symfony\\Contracts\\Cache\\": ""
  1338. }
  1339. },
  1340. "notification-url": "https://packagist.org/downloads/",
  1341. "license": [
  1342. "MIT"
  1343. ],
  1344. "authors": [
  1345. {
  1346. "name": "Nicolas Grekas",
  1347. "email": "p@tchwork.com"
  1348. },
  1349. {
  1350. "name": "Symfony Community",
  1351. "homepage": "https://symfony.com/contributors"
  1352. }
  1353. ],
  1354. "description": "Generic abstractions related to caching",
  1355. "homepage": "https://symfony.com",
  1356. "keywords": [
  1357. "abstractions",
  1358. "contracts",
  1359. "decoupling",
  1360. "interfaces",
  1361. "interoperability",
  1362. "standards"
  1363. ],
  1364. "time": "2019-10-04T21:43:27+00:00"
  1365. },
  1366. {
  1367. "name": "symfony/event-dispatcher",
  1368. "version": "v4.4.7",
  1369. "source": {
  1370. "type": "git",
  1371. "url": "https://github.com/symfony/event-dispatcher.git",
  1372. "reference": "abc8e3618bfdb55e44c8c6a00abd333f831bbfed"
  1373. },
  1374. "dist": {
  1375. "type": "zip",
  1376. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/abc8e3618bfdb55e44c8c6a00abd333f831bbfed",
  1377. "reference": "abc8e3618bfdb55e44c8c6a00abd333f831bbfed",
  1378. "shasum": "",
  1379. "mirrors": [
  1380. {
  1381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1382. "preferred": true
  1383. }
  1384. ]
  1385. },
  1386. "require": {
  1387. "php": "^7.1.3",
  1388. "symfony/event-dispatcher-contracts": "^1.1"
  1389. },
  1390. "conflict": {
  1391. "symfony/dependency-injection": "<3.4"
  1392. },
  1393. "provide": {
  1394. "psr/event-dispatcher-implementation": "1.0",
  1395. "symfony/event-dispatcher-implementation": "1.1"
  1396. },
  1397. "require-dev": {
  1398. "psr/log": "~1.0",
  1399. "symfony/config": "^3.4|^4.0|^5.0",
  1400. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  1401. "symfony/expression-language": "^3.4|^4.0|^5.0",
  1402. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  1403. "symfony/service-contracts": "^1.1|^2",
  1404. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  1405. },
  1406. "suggest": {
  1407. "symfony/dependency-injection": "",
  1408. "symfony/http-kernel": ""
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-master": "4.4-dev"
  1414. }
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Symfony\\Component\\EventDispatcher\\": ""
  1419. },
  1420. "exclude-from-classmap": [
  1421. "/Tests/"
  1422. ]
  1423. },
  1424. "notification-url": "https://packagist.org/downloads/",
  1425. "license": [
  1426. "MIT"
  1427. ],
  1428. "authors": [
  1429. {
  1430. "name": "Fabien Potencier",
  1431. "email": "fabien@symfony.com"
  1432. },
  1433. {
  1434. "name": "Symfony Community",
  1435. "homepage": "https://symfony.com/contributors"
  1436. }
  1437. ],
  1438. "description": "Symfony EventDispatcher Component",
  1439. "homepage": "https://symfony.com",
  1440. "time": "2020-03-27T16:54:36+00:00"
  1441. },
  1442. {
  1443. "name": "symfony/event-dispatcher-contracts",
  1444. "version": "v1.1.7",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  1448. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  1453. "reference": "c43ab685673fb6c8d84220c77897b1d6cdbe1d18",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "php": "^7.1.3"
  1464. },
  1465. "suggest": {
  1466. "psr/event-dispatcher": "",
  1467. "symfony/event-dispatcher-implementation": ""
  1468. },
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "1.1-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "psr-4": {
  1477. "Symfony\\Contracts\\EventDispatcher\\": ""
  1478. }
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "MIT"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "Nicolas Grekas",
  1487. "email": "p@tchwork.com"
  1488. },
  1489. {
  1490. "name": "Symfony Community",
  1491. "homepage": "https://symfony.com/contributors"
  1492. }
  1493. ],
  1494. "description": "Generic abstractions related to dispatching event",
  1495. "homepage": "https://symfony.com",
  1496. "keywords": [
  1497. "abstractions",
  1498. "contracts",
  1499. "decoupling",
  1500. "interfaces",
  1501. "interoperability",
  1502. "standards"
  1503. ],
  1504. "time": "2019-09-17T09:54:03+00:00"
  1505. },
  1506. {
  1507. "name": "symfony/http-foundation",
  1508. "version": "v4.4.7",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/symfony/http-foundation.git",
  1512. "reference": "62f92509c9abfd1f73e17b8cf1b72c0bdac6611b"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/62f92509c9abfd1f73e17b8cf1b72c0bdac6611b",
  1517. "reference": "62f92509c9abfd1f73e17b8cf1b72c0bdac6611b",
  1518. "shasum": "",
  1519. "mirrors": [
  1520. {
  1521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1522. "preferred": true
  1523. }
  1524. ]
  1525. },
  1526. "require": {
  1527. "php": "^7.1.3",
  1528. "symfony/mime": "^4.3|^5.0",
  1529. "symfony/polyfill-mbstring": "~1.1"
  1530. },
  1531. "require-dev": {
  1532. "predis/predis": "~1.0",
  1533. "symfony/expression-language": "^3.4|^4.0|^5.0"
  1534. },
  1535. "type": "library",
  1536. "extra": {
  1537. "branch-alias": {
  1538. "dev-master": "4.4-dev"
  1539. }
  1540. },
  1541. "autoload": {
  1542. "psr-4": {
  1543. "Symfony\\Component\\HttpFoundation\\": ""
  1544. },
  1545. "exclude-from-classmap": [
  1546. "/Tests/"
  1547. ]
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Fabien Potencier",
  1556. "email": "fabien@symfony.com"
  1557. },
  1558. {
  1559. "name": "Symfony Community",
  1560. "homepage": "https://symfony.com/contributors"
  1561. }
  1562. ],
  1563. "description": "Symfony HttpFoundation Component",
  1564. "homepage": "https://symfony.com",
  1565. "time": "2020-03-30T14:07:33+00:00"
  1566. },
  1567. {
  1568. "name": "symfony/mime",
  1569. "version": "v4.4.7",
  1570. "source": {
  1571. "type": "git",
  1572. "url": "https://github.com/symfony/mime.git",
  1573. "reference": "6dde9dc70155e91b850b1d009d1f841c54bc4aba"
  1574. },
  1575. "dist": {
  1576. "type": "zip",
  1577. "url": "https://api.github.com/repos/symfony/mime/zipball/6dde9dc70155e91b850b1d009d1f841c54bc4aba",
  1578. "reference": "6dde9dc70155e91b850b1d009d1f841c54bc4aba",
  1579. "shasum": "",
  1580. "mirrors": [
  1581. {
  1582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1583. "preferred": true
  1584. }
  1585. ]
  1586. },
  1587. "require": {
  1588. "php": "^7.1.3",
  1589. "symfony/polyfill-intl-idn": "^1.10",
  1590. "symfony/polyfill-mbstring": "^1.0"
  1591. },
  1592. "conflict": {
  1593. "symfony/mailer": "<4.4"
  1594. },
  1595. "require-dev": {
  1596. "egulias/email-validator": "^2.1.10",
  1597. "symfony/dependency-injection": "^3.4|^4.1|^5.0"
  1598. },
  1599. "type": "library",
  1600. "extra": {
  1601. "branch-alias": {
  1602. "dev-master": "4.4-dev"
  1603. }
  1604. },
  1605. "autoload": {
  1606. "psr-4": {
  1607. "Symfony\\Component\\Mime\\": ""
  1608. },
  1609. "exclude-from-classmap": [
  1610. "/Tests/"
  1611. ]
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "MIT"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "Fabien Potencier",
  1620. "email": "fabien@symfony.com"
  1621. },
  1622. {
  1623. "name": "Symfony Community",
  1624. "homepage": "https://symfony.com/contributors"
  1625. }
  1626. ],
  1627. "description": "A library to manipulate MIME messages",
  1628. "homepage": "https://symfony.com",
  1629. "keywords": [
  1630. "mime",
  1631. "mime-type"
  1632. ],
  1633. "time": "2020-03-27T16:54:36+00:00"
  1634. },
  1635. {
  1636. "name": "symfony/polyfill-ctype",
  1637. "version": "v1.15.0",
  1638. "source": {
  1639. "type": "git",
  1640. "url": "https://github.com/symfony/polyfill-ctype.git",
  1641. "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14"
  1642. },
  1643. "dist": {
  1644. "type": "zip",
  1645. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/4719fa9c18b0464d399f1a63bf624b42b6fa8d14",
  1646. "reference": "4719fa9c18b0464d399f1a63bf624b42b6fa8d14",
  1647. "shasum": "",
  1648. "mirrors": [
  1649. {
  1650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1651. "preferred": true
  1652. }
  1653. ]
  1654. },
  1655. "require": {
  1656. "php": ">=5.3.3"
  1657. },
  1658. "suggest": {
  1659. "ext-ctype": "For best performance"
  1660. },
  1661. "type": "library",
  1662. "extra": {
  1663. "branch-alias": {
  1664. "dev-master": "1.15-dev"
  1665. }
  1666. },
  1667. "autoload": {
  1668. "psr-4": {
  1669. "Symfony\\Polyfill\\Ctype\\": ""
  1670. },
  1671. "files": [
  1672. "bootstrap.php"
  1673. ]
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "MIT"
  1678. ],
  1679. "authors": [
  1680. {
  1681. "name": "Gert de Pagter",
  1682. "email": "BackEndTea@gmail.com"
  1683. },
  1684. {
  1685. "name": "Symfony Community",
  1686. "homepage": "https://symfony.com/contributors"
  1687. }
  1688. ],
  1689. "description": "Symfony polyfill for ctype functions",
  1690. "homepage": "https://symfony.com",
  1691. "keywords": [
  1692. "compatibility",
  1693. "ctype",
  1694. "polyfill",
  1695. "portable"
  1696. ],
  1697. "time": "2020-02-27T09:26:54+00:00"
  1698. },
  1699. {
  1700. "name": "symfony/polyfill-intl-idn",
  1701. "version": "v1.15.0",
  1702. "source": {
  1703. "type": "git",
  1704. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1705. "reference": "47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf"
  1706. },
  1707. "dist": {
  1708. "type": "zip",
  1709. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf",
  1710. "reference": "47bd6aa45beb1cd7c6a16b7d1810133b728bdfcf",
  1711. "shasum": "",
  1712. "mirrors": [
  1713. {
  1714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1715. "preferred": true
  1716. }
  1717. ]
  1718. },
  1719. "require": {
  1720. "php": ">=5.3.3",
  1721. "symfony/polyfill-mbstring": "^1.3",
  1722. "symfony/polyfill-php72": "^1.10"
  1723. },
  1724. "suggest": {
  1725. "ext-intl": "For best performance"
  1726. },
  1727. "type": "library",
  1728. "extra": {
  1729. "branch-alias": {
  1730. "dev-master": "1.15-dev"
  1731. }
  1732. },
  1733. "autoload": {
  1734. "psr-4": {
  1735. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1736. },
  1737. "files": [
  1738. "bootstrap.php"
  1739. ]
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "MIT"
  1744. ],
  1745. "authors": [
  1746. {
  1747. "name": "Laurent Bassin",
  1748. "email": "laurent@bassin.info"
  1749. },
  1750. {
  1751. "name": "Symfony Community",
  1752. "homepage": "https://symfony.com/contributors"
  1753. }
  1754. ],
  1755. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1756. "homepage": "https://symfony.com",
  1757. "keywords": [
  1758. "compatibility",
  1759. "idn",
  1760. "intl",
  1761. "polyfill",
  1762. "portable",
  1763. "shim"
  1764. ],
  1765. "time": "2020-03-09T19:04:49+00:00"
  1766. },
  1767. {
  1768. "name": "symfony/polyfill-mbstring",
  1769. "version": "v1.15.0",
  1770. "source": {
  1771. "type": "git",
  1772. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1773. "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac"
  1774. },
  1775. "dist": {
  1776. "type": "zip",
  1777. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/81ffd3a9c6d707be22e3012b827de1c9775fc5ac",
  1778. "reference": "81ffd3a9c6d707be22e3012b827de1c9775fc5ac",
  1779. "shasum": "",
  1780. "mirrors": [
  1781. {
  1782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1783. "preferred": true
  1784. }
  1785. ]
  1786. },
  1787. "require": {
  1788. "php": ">=5.3.3"
  1789. },
  1790. "suggest": {
  1791. "ext-mbstring": "For best performance"
  1792. },
  1793. "type": "library",
  1794. "extra": {
  1795. "branch-alias": {
  1796. "dev-master": "1.15-dev"
  1797. }
  1798. },
  1799. "autoload": {
  1800. "psr-4": {
  1801. "Symfony\\Polyfill\\Mbstring\\": ""
  1802. },
  1803. "files": [
  1804. "bootstrap.php"
  1805. ]
  1806. },
  1807. "notification-url": "https://packagist.org/downloads/",
  1808. "license": [
  1809. "MIT"
  1810. ],
  1811. "authors": [
  1812. {
  1813. "name": "Nicolas Grekas",
  1814. "email": "p@tchwork.com"
  1815. },
  1816. {
  1817. "name": "Symfony Community",
  1818. "homepage": "https://symfony.com/contributors"
  1819. }
  1820. ],
  1821. "description": "Symfony polyfill for the Mbstring extension",
  1822. "homepage": "https://symfony.com",
  1823. "keywords": [
  1824. "compatibility",
  1825. "mbstring",
  1826. "polyfill",
  1827. "portable",
  1828. "shim"
  1829. ],
  1830. "time": "2020-03-09T19:04:49+00:00"
  1831. },
  1832. {
  1833. "name": "symfony/polyfill-php72",
  1834. "version": "v1.15.0",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/symfony/polyfill-php72.git",
  1838. "reference": "37b0976c78b94856543260ce09b460a7bc852747"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/37b0976c78b94856543260ce09b460a7bc852747",
  1843. "reference": "37b0976c78b94856543260ce09b460a7bc852747",
  1844. "shasum": "",
  1845. "mirrors": [
  1846. {
  1847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1848. "preferred": true
  1849. }
  1850. ]
  1851. },
  1852. "require": {
  1853. "php": ">=5.3.3"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "branch-alias": {
  1858. "dev-master": "1.15-dev"
  1859. }
  1860. },
  1861. "autoload": {
  1862. "psr-4": {
  1863. "Symfony\\Polyfill\\Php72\\": ""
  1864. },
  1865. "files": [
  1866. "bootstrap.php"
  1867. ]
  1868. },
  1869. "notification-url": "https://packagist.org/downloads/",
  1870. "license": [
  1871. "MIT"
  1872. ],
  1873. "authors": [
  1874. {
  1875. "name": "Nicolas Grekas",
  1876. "email": "p@tchwork.com"
  1877. },
  1878. {
  1879. "name": "Symfony Community",
  1880. "homepage": "https://symfony.com/contributors"
  1881. }
  1882. ],
  1883. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1884. "homepage": "https://symfony.com",
  1885. "keywords": [
  1886. "compatibility",
  1887. "polyfill",
  1888. "portable",
  1889. "shim"
  1890. ],
  1891. "time": "2020-02-27T09:26:54+00:00"
  1892. },
  1893. {
  1894. "name": "symfony/psr-http-message-bridge",
  1895. "version": "v2.0.0",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  1899. "reference": "ce709cd9c90872c08c2427b45739d5f3c781ab4f"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/ce709cd9c90872c08c2427b45739d5f3c781ab4f",
  1904. "reference": "ce709cd9c90872c08c2427b45739d5f3c781ab4f",
  1905. "shasum": "",
  1906. "mirrors": [
  1907. {
  1908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1909. "preferred": true
  1910. }
  1911. ]
  1912. },
  1913. "require": {
  1914. "php": "^7.1",
  1915. "psr/http-message": "^1.0",
  1916. "symfony/http-foundation": "^4.4 || ^5.0"
  1917. },
  1918. "require-dev": {
  1919. "nyholm/psr7": "^1.1",
  1920. "symfony/phpunit-bridge": "^4.4 || ^5.0"
  1921. },
  1922. "suggest": {
  1923. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  1924. },
  1925. "type": "symfony-bridge",
  1926. "extra": {
  1927. "branch-alias": {
  1928. "dev-master": "2.0-dev"
  1929. }
  1930. },
  1931. "autoload": {
  1932. "psr-4": {
  1933. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  1934. },
  1935. "exclude-from-classmap": [
  1936. "/Tests/"
  1937. ]
  1938. },
  1939. "notification-url": "https://packagist.org/downloads/",
  1940. "license": [
  1941. "MIT"
  1942. ],
  1943. "authors": [
  1944. {
  1945. "name": "Fabien Potencier",
  1946. "email": "fabien@symfony.com"
  1947. },
  1948. {
  1949. "name": "Symfony Community",
  1950. "homepage": "http://symfony.com/contributors"
  1951. }
  1952. ],
  1953. "description": "PSR HTTP message bridge",
  1954. "homepage": "http://symfony.com",
  1955. "keywords": [
  1956. "http",
  1957. "http-message",
  1958. "psr-17",
  1959. "psr-7"
  1960. ],
  1961. "time": "2020-01-02T08:07:11+00:00"
  1962. },
  1963. {
  1964. "name": "symfony/service-contracts",
  1965. "version": "v1.1.8",
  1966. "source": {
  1967. "type": "git",
  1968. "url": "https://github.com/symfony/service-contracts.git",
  1969. "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf"
  1970. },
  1971. "dist": {
  1972. "type": "zip",
  1973. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/ffc7f5692092df31515df2a5ecf3b7302b3ddacf",
  1974. "reference": "ffc7f5692092df31515df2a5ecf3b7302b3ddacf",
  1975. "shasum": "",
  1976. "mirrors": [
  1977. {
  1978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1979. "preferred": true
  1980. }
  1981. ]
  1982. },
  1983. "require": {
  1984. "php": "^7.1.3",
  1985. "psr/container": "^1.0"
  1986. },
  1987. "suggest": {
  1988. "symfony/service-implementation": ""
  1989. },
  1990. "type": "library",
  1991. "extra": {
  1992. "branch-alias": {
  1993. "dev-master": "1.1-dev"
  1994. }
  1995. },
  1996. "autoload": {
  1997. "psr-4": {
  1998. "Symfony\\Contracts\\Service\\": ""
  1999. }
  2000. },
  2001. "notification-url": "https://packagist.org/downloads/",
  2002. "license": [
  2003. "MIT"
  2004. ],
  2005. "authors": [
  2006. {
  2007. "name": "Nicolas Grekas",
  2008. "email": "p@tchwork.com"
  2009. },
  2010. {
  2011. "name": "Symfony Community",
  2012. "homepage": "https://symfony.com/contributors"
  2013. }
  2014. ],
  2015. "description": "Generic abstractions related to writing services",
  2016. "homepage": "https://symfony.com",
  2017. "keywords": [
  2018. "abstractions",
  2019. "contracts",
  2020. "decoupling",
  2021. "interfaces",
  2022. "interoperability",
  2023. "standards"
  2024. ],
  2025. "time": "2019-10-14T12:27:06+00:00"
  2026. },
  2027. {
  2028. "name": "symfony/var-exporter",
  2029. "version": "v4.4.7",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://github.com/symfony/var-exporter.git",
  2033. "reference": "6e4939b084defee0ab60a21e6a02e3a198afd91f"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/6e4939b084defee0ab60a21e6a02e3a198afd91f",
  2038. "reference": "6e4939b084defee0ab60a21e6a02e3a198afd91f",
  2039. "shasum": "",
  2040. "mirrors": [
  2041. {
  2042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2043. "preferred": true
  2044. }
  2045. ]
  2046. },
  2047. "require": {
  2048. "php": "^7.1.3"
  2049. },
  2050. "require-dev": {
  2051. "symfony/var-dumper": "^4.1.1|^5.0"
  2052. },
  2053. "type": "library",
  2054. "extra": {
  2055. "branch-alias": {
  2056. "dev-master": "4.4-dev"
  2057. }
  2058. },
  2059. "autoload": {
  2060. "psr-4": {
  2061. "Symfony\\Component\\VarExporter\\": ""
  2062. },
  2063. "exclude-from-classmap": [
  2064. "/Tests/"
  2065. ]
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "Nicolas Grekas",
  2074. "email": "p@tchwork.com"
  2075. },
  2076. {
  2077. "name": "Symfony Community",
  2078. "homepage": "https://symfony.com/contributors"
  2079. }
  2080. ],
  2081. "description": "A blend of var_export() + serialize() to turn any serializable data structure to plain PHP code",
  2082. "homepage": "https://symfony.com",
  2083. "keywords": [
  2084. "clone",
  2085. "construct",
  2086. "export",
  2087. "hydrate",
  2088. "instantiate",
  2089. "serialize"
  2090. ],
  2091. "time": "2020-03-27T16:54:36+00:00"
  2092. },
  2093. {
  2094. "name": "topthink/framework",
  2095. "version": "v5.1.39",
  2096. "source": {
  2097. "type": "git",
  2098. "url": "https://github.com/top-think/framework.git",
  2099. "reference": "5762858f3d58faafb3a39427f8788884b2927007"
  2100. },
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://api.github.com/repos/top-think/framework/zipball/5762858f3d58faafb3a39427f8788884b2927007",
  2104. "reference": "5762858f3d58faafb3a39427f8788884b2927007",
  2105. "shasum": "",
  2106. "mirrors": [
  2107. {
  2108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2109. "preferred": true
  2110. }
  2111. ]
  2112. },
  2113. "require": {
  2114. "php": ">=5.6.0",
  2115. "topthink/think-installer": "2.*"
  2116. },
  2117. "require-dev": {
  2118. "johnkary/phpunit-speedtrap": "^1.0",
  2119. "mikey179/vfsstream": "~1.6",
  2120. "phpdocumentor/reflection-docblock": "^2.0",
  2121. "phploc/phploc": "2.*",
  2122. "phpunit/phpunit": "^5.0|^6.0",
  2123. "sebastian/phpcpd": "2.*",
  2124. "squizlabs/php_codesniffer": "2.*"
  2125. },
  2126. "type": "think-framework",
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "Apache-2.0"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "liu21st",
  2134. "email": "liu21st@gmail.com"
  2135. },
  2136. {
  2137. "name": "yunwuxin",
  2138. "email": "448901948@qq.com"
  2139. }
  2140. ],
  2141. "description": "the new thinkphp framework",
  2142. "homepage": "http://thinkphp.cn/",
  2143. "keywords": [
  2144. "framework",
  2145. "orm",
  2146. "thinkphp"
  2147. ],
  2148. "time": "2019-11-17T23:22:02+00:00"
  2149. },
  2150. {
  2151. "name": "topthink/think-captcha",
  2152. "version": "v2.0.2",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/top-think/think-captcha.git",
  2156. "reference": "54c8a51552f99ff9ea89ea9c272383a8f738ceee"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/54c8a51552f99ff9ea89ea9c272383a8f738ceee",
  2161. "reference": "54c8a51552f99ff9ea89ea9c272383a8f738ceee",
  2162. "shasum": "",
  2163. "mirrors": [
  2164. {
  2165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2166. "preferred": true
  2167. }
  2168. ]
  2169. },
  2170. "require": {
  2171. "topthink/framework": "5.1.*"
  2172. },
  2173. "type": "library",
  2174. "autoload": {
  2175. "psr-4": {
  2176. "think\\captcha\\": "src/"
  2177. },
  2178. "files": [
  2179. "src/helper.php"
  2180. ]
  2181. },
  2182. "notification-url": "https://packagist.org/downloads/",
  2183. "license": [
  2184. "Apache-2.0"
  2185. ],
  2186. "authors": [
  2187. {
  2188. "name": "yunwuxin",
  2189. "email": "448901948@qq.com"
  2190. }
  2191. ],
  2192. "description": "captcha package for thinkphp5",
  2193. "time": "2017-12-31T16:37:49+00:00"
  2194. },
  2195. {
  2196. "name": "topthink/think-helper",
  2197. "version": "v1.0.7",
  2198. "source": {
  2199. "type": "git",
  2200. "url": "https://github.com/top-think/think-helper.git",
  2201. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  2202. },
  2203. "dist": {
  2204. "type": "zip",
  2205. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  2206. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  2207. "shasum": "",
  2208. "mirrors": [
  2209. {
  2210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2211. "preferred": true
  2212. }
  2213. ]
  2214. },
  2215. "type": "library",
  2216. "autoload": {
  2217. "psr-4": {
  2218. "think\\helper\\": "src"
  2219. },
  2220. "files": [
  2221. "src/helper.php"
  2222. ]
  2223. },
  2224. "notification-url": "https://packagist.org/downloads/",
  2225. "license": [
  2226. "Apache-2.0"
  2227. ],
  2228. "authors": [
  2229. {
  2230. "name": "yunwuxin",
  2231. "email": "448901948@qq.com"
  2232. }
  2233. ],
  2234. "description": "The ThinkPHP5 Helper Package",
  2235. "time": "2018-10-05T00:43:21+00:00"
  2236. },
  2237. {
  2238. "name": "topthink/think-image",
  2239. "version": "v1.0.7",
  2240. "source": {
  2241. "type": "git",
  2242. "url": "https://github.com/top-think/think-image.git",
  2243. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  2244. },
  2245. "dist": {
  2246. "type": "zip",
  2247. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  2248. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  2249. "shasum": "",
  2250. "mirrors": [
  2251. {
  2252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2253. "preferred": true
  2254. }
  2255. ]
  2256. },
  2257. "require": {
  2258. "ext-gd": "*"
  2259. },
  2260. "require-dev": {
  2261. "phpunit/phpunit": "4.8.*",
  2262. "topthink/framework": "^5.0"
  2263. },
  2264. "type": "library",
  2265. "autoload": {
  2266. "psr-4": {
  2267. "think\\": "src"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "Apache-2.0"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "yunwuxin",
  2277. "email": "448901948@qq.com"
  2278. }
  2279. ],
  2280. "description": "The ThinkPHP5 Image Package",
  2281. "time": "2016-09-29T06:05:43+00:00"
  2282. },
  2283. {
  2284. "name": "topthink/think-installer",
  2285. "version": "v2.0.0",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://github.com/top-think/think-installer.git",
  2289. "reference": "f5400a12c60e513911aef41fe443fa6920952675"
  2290. },
  2291. "dist": {
  2292. "type": "zip",
  2293. "url": "https://api.github.com/repos/top-think/think-installer/zipball/f5400a12c60e513911aef41fe443fa6920952675",
  2294. "reference": "f5400a12c60e513911aef41fe443fa6920952675",
  2295. "shasum": "",
  2296. "mirrors": [
  2297. {
  2298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2299. "preferred": true
  2300. }
  2301. ]
  2302. },
  2303. "require": {
  2304. "composer-plugin-api": "^1.0"
  2305. },
  2306. "require-dev": {
  2307. "composer/composer": "1.0.*@dev"
  2308. },
  2309. "type": "composer-plugin",
  2310. "extra": {
  2311. "class": "think\\composer\\Plugin"
  2312. },
  2313. "autoload": {
  2314. "psr-4": {
  2315. "think\\composer\\": "src"
  2316. }
  2317. },
  2318. "notification-url": "https://packagist.org/downloads/",
  2319. "license": [
  2320. "Apache-2.0"
  2321. ],
  2322. "authors": [
  2323. {
  2324. "name": "yunwuxin",
  2325. "email": "448901948@qq.com"
  2326. }
  2327. ],
  2328. "time": "2018-05-11T06:45:42+00:00"
  2329. },
  2330. {
  2331. "name": "yurunsoft/yurun-http",
  2332. "version": "v4.2.5",
  2333. "source": {
  2334. "type": "git",
  2335. "url": "https://github.com/Yurunsoft/YurunHttp.git",
  2336. "reference": "a1216479948b9f88daef126dee938b084743ee9d"
  2337. },
  2338. "dist": {
  2339. "type": "zip",
  2340. "url": "https://api.github.com/repos/Yurunsoft/YurunHttp/zipball/a1216479948b9f88daef126dee938b084743ee9d",
  2341. "reference": "a1216479948b9f88daef126dee938b084743ee9d",
  2342. "shasum": "",
  2343. "mirrors": [
  2344. {
  2345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2346. "preferred": true
  2347. }
  2348. ]
  2349. },
  2350. "require": {
  2351. "php": ">=5.5.0",
  2352. "psr/http-message": "~1.0"
  2353. },
  2354. "require-dev": {
  2355. "phpunit/phpunit": ">=4 <8",
  2356. "swoft/swoole-ide-helper": "~2.0"
  2357. },
  2358. "type": "library",
  2359. "autoload": {
  2360. "psr-4": {
  2361. "Yurun\\Util\\": "./src/"
  2362. }
  2363. },
  2364. "notification-url": "https://packagist.org/downloads/",
  2365. "license": [
  2366. "MIT"
  2367. ],
  2368. "description": "YurunHttp 是开源的 PHP HTTP 类库,支持链式操作,简单易用。支持 Curl、Swoole,支持 Http、Http2、WebSocket!",
  2369. "time": "2020-04-29T05:25:00+00:00"
  2370. }
  2371. ],
  2372. "packages-dev": [],
  2373. "aliases": [],
  2374. "minimum-stability": "stable",
  2375. "stability-flags": [],
  2376. "prefer-stable": false,
  2377. "prefer-lowest": false,
  2378. "platform": {
  2379. "php": ">=5.6.0"
  2380. },
  2381. "platform-dev": []
  2382. }