composer.lock 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105
  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": "b7e8b75d173f25ee237b2ad2be6c6488",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  15. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  20. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  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. "php": ">=5.3"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "~4.0",
  34. "satooshi/php-coveralls": "~1.0"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "OSS\\": "src/OSS"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Aliyuncs",
  49. "homepage": "http://www.aliyun.com"
  50. }
  51. ],
  52. "description": "Aliyun OSS SDK for PHP",
  53. "homepage": "http://www.aliyun.com/product/oss/",
  54. "time": "2018-01-08T06:59:35+00:00"
  55. },
  56. {
  57. "name": "dh2y/think-qrcode",
  58. "version": "2.0",
  59. "source": {
  60. "type": "git",
  61. "url": "https://github.com/cinaofdai/think-qrcode.git",
  62. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5"
  63. },
  64. "dist": {
  65. "type": "zip",
  66. "url": "https://api.github.com/repos/cinaofdai/think-qrcode/zipball/977d032afa27b1852f5fc5441fad2497f6db7ff5",
  67. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5",
  68. "shasum": "",
  69. "mirrors": [
  70. {
  71. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  72. "preferred": true
  73. }
  74. ]
  75. },
  76. "require": {
  77. "php": ">=5.4.0"
  78. },
  79. "type": "library",
  80. "autoload": {
  81. "psr-4": {
  82. "dh2y\\qrcode\\": "src/"
  83. }
  84. },
  85. "notification-url": "https://packagist.org/downloads/",
  86. "license": [
  87. "MIT"
  88. ],
  89. "authors": [
  90. {
  91. "name": "dh2y",
  92. "email": "xiaodai54_long@163.com"
  93. }
  94. ],
  95. "description": "qrcode for thinkphp5",
  96. "homepage": "https://github.com/cinaofdai/think-qrcode",
  97. "time": "2019-07-10T02:57:29+00:00"
  98. },
  99. {
  100. "name": "doctrine/cache",
  101. "version": "v1.4.4",
  102. "source": {
  103. "type": "git",
  104. "url": "https://github.com/doctrine/cache.git",
  105. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020"
  106. },
  107. "dist": {
  108. "type": "zip",
  109. "url": "https://api.github.com/repos/doctrine/cache/zipball/6433826dd02c9e5be8a127320dc13e7e6625d020",
  110. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020",
  111. "shasum": "",
  112. "mirrors": [
  113. {
  114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  115. "preferred": true
  116. }
  117. ]
  118. },
  119. "require": {
  120. "php": ">=5.3.2"
  121. },
  122. "conflict": {
  123. "doctrine/common": ">2.2,<2.4"
  124. },
  125. "require-dev": {
  126. "phpunit/phpunit": ">=3.7",
  127. "predis/predis": "~1.0",
  128. "satooshi/php-coveralls": "~0.6"
  129. },
  130. "type": "library",
  131. "extra": {
  132. "branch-alias": {
  133. "dev-master": "1.5.x-dev"
  134. }
  135. },
  136. "autoload": {
  137. "psr-0": {
  138. "Doctrine\\Common\\Cache\\": "lib/"
  139. }
  140. },
  141. "notification-url": "https://packagist.org/downloads/",
  142. "license": [
  143. "MIT"
  144. ],
  145. "authors": [
  146. {
  147. "name": "Roman Borschel",
  148. "email": "roman@code-factory.org"
  149. },
  150. {
  151. "name": "Benjamin Eberlei",
  152. "email": "kontakt@beberlei.de"
  153. },
  154. {
  155. "name": "Guilherme Blanco",
  156. "email": "guilhermeblanco@gmail.com"
  157. },
  158. {
  159. "name": "Jonathan Wage",
  160. "email": "jonwage@gmail.com"
  161. },
  162. {
  163. "name": "Johannes Schmitt",
  164. "email": "schmittjoh@gmail.com"
  165. }
  166. ],
  167. "description": "Caching library offering an object-oriented API for many cache backends",
  168. "homepage": "http://www.doctrine-project.org",
  169. "keywords": [
  170. "cache",
  171. "caching"
  172. ],
  173. "time": "2015-11-02T18:33:51+00:00"
  174. },
  175. {
  176. "name": "firebase/php-jwt",
  177. "version": "v5.0.0",
  178. "source": {
  179. "type": "git",
  180. "url": "https://github.com/firebase/php-jwt.git",
  181. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  182. },
  183. "dist": {
  184. "type": "zip",
  185. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  186. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  187. "shasum": "",
  188. "mirrors": [
  189. {
  190. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  191. "preferred": true
  192. }
  193. ]
  194. },
  195. "require": {
  196. "php": ">=5.3.0"
  197. },
  198. "require-dev": {
  199. "phpunit/phpunit": " 4.8.35"
  200. },
  201. "type": "library",
  202. "autoload": {
  203. "psr-4": {
  204. "Firebase\\JWT\\": "src"
  205. }
  206. },
  207. "notification-url": "https://packagist.org/downloads/",
  208. "license": [
  209. "BSD-3-Clause"
  210. ],
  211. "authors": [
  212. {
  213. "name": "Neuman Vong",
  214. "email": "neuman+pear@twilio.com",
  215. "role": "Developer"
  216. },
  217. {
  218. "name": "Anant Narayanan",
  219. "email": "anant@php.net",
  220. "role": "Developer"
  221. }
  222. ],
  223. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  224. "homepage": "https://github.com/firebase/php-jwt",
  225. "time": "2017-06-27T22:17:23+00:00"
  226. },
  227. {
  228. "name": "guzzle/guzzle",
  229. "version": "v3.9.3",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/guzzle/guzzle3.git",
  233. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/0645b70d953bc1c067bbc8d5bc53194706b628d9",
  238. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9",
  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. "ext-curl": "*",
  249. "php": ">=5.3.3",
  250. "symfony/event-dispatcher": "~2.1"
  251. },
  252. "replace": {
  253. "guzzle/batch": "self.version",
  254. "guzzle/cache": "self.version",
  255. "guzzle/common": "self.version",
  256. "guzzle/http": "self.version",
  257. "guzzle/inflection": "self.version",
  258. "guzzle/iterator": "self.version",
  259. "guzzle/log": "self.version",
  260. "guzzle/parser": "self.version",
  261. "guzzle/plugin": "self.version",
  262. "guzzle/plugin-async": "self.version",
  263. "guzzle/plugin-backoff": "self.version",
  264. "guzzle/plugin-cache": "self.version",
  265. "guzzle/plugin-cookie": "self.version",
  266. "guzzle/plugin-curlauth": "self.version",
  267. "guzzle/plugin-error-response": "self.version",
  268. "guzzle/plugin-history": "self.version",
  269. "guzzle/plugin-log": "self.version",
  270. "guzzle/plugin-md5": "self.version",
  271. "guzzle/plugin-mock": "self.version",
  272. "guzzle/plugin-oauth": "self.version",
  273. "guzzle/service": "self.version",
  274. "guzzle/stream": "self.version"
  275. },
  276. "require-dev": {
  277. "doctrine/cache": "~1.3",
  278. "monolog/monolog": "~1.0",
  279. "phpunit/phpunit": "3.7.*",
  280. "psr/log": "~1.0",
  281. "symfony/class-loader": "~2.1",
  282. "zendframework/zend-cache": "2.*,<2.3",
  283. "zendframework/zend-log": "2.*,<2.3"
  284. },
  285. "suggest": {
  286. "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
  287. },
  288. "type": "library",
  289. "extra": {
  290. "branch-alias": {
  291. "dev-master": "3.9-dev"
  292. }
  293. },
  294. "autoload": {
  295. "psr-0": {
  296. "Guzzle": "src/",
  297. "Guzzle\\Tests": "tests/"
  298. }
  299. },
  300. "notification-url": "https://packagist.org/downloads/",
  301. "license": [
  302. "MIT"
  303. ],
  304. "authors": [
  305. {
  306. "name": "Michael Dowling",
  307. "email": "mtdowling@gmail.com",
  308. "homepage": "https://github.com/mtdowling"
  309. },
  310. {
  311. "name": "Guzzle Community",
  312. "homepage": "https://github.com/guzzle/guzzle/contributors"
  313. }
  314. ],
  315. "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
  316. "homepage": "http://guzzlephp.org/",
  317. "keywords": [
  318. "client",
  319. "curl",
  320. "framework",
  321. "http",
  322. "http client",
  323. "rest",
  324. "web service"
  325. ],
  326. "abandoned": "guzzlehttp/guzzle",
  327. "time": "2015-03-18T18:23:50+00:00"
  328. },
  329. {
  330. "name": "guzzlehttp/guzzle",
  331. "version": "6.3.3",
  332. "source": {
  333. "type": "git",
  334. "url": "https://github.com/guzzle/guzzle.git",
  335. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  336. },
  337. "dist": {
  338. "type": "zip",
  339. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  340. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  341. "shasum": "",
  342. "mirrors": [
  343. {
  344. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  345. "preferred": true
  346. }
  347. ]
  348. },
  349. "require": {
  350. "guzzlehttp/promises": "^1.0",
  351. "guzzlehttp/psr7": "^1.4",
  352. "php": ">=5.5"
  353. },
  354. "require-dev": {
  355. "ext-curl": "*",
  356. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  357. "psr/log": "^1.0"
  358. },
  359. "suggest": {
  360. "psr/log": "Required for using the Log middleware"
  361. },
  362. "type": "library",
  363. "extra": {
  364. "branch-alias": {
  365. "dev-master": "6.3-dev"
  366. }
  367. },
  368. "autoload": {
  369. "files": [
  370. "src/functions_include.php"
  371. ],
  372. "psr-4": {
  373. "GuzzleHttp\\": "src/"
  374. }
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "MIT"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Michael Dowling",
  383. "email": "mtdowling@gmail.com",
  384. "homepage": "https://github.com/mtdowling"
  385. }
  386. ],
  387. "description": "Guzzle is a PHP HTTP client library",
  388. "homepage": "http://guzzlephp.org/",
  389. "keywords": [
  390. "client",
  391. "curl",
  392. "framework",
  393. "http",
  394. "http client",
  395. "rest",
  396. "web service"
  397. ],
  398. "time": "2018-04-22T15:46:56+00:00"
  399. },
  400. {
  401. "name": "guzzlehttp/promises",
  402. "version": "v1.3.1",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/guzzle/promises.git",
  406. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  411. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  412. "shasum": "",
  413. "mirrors": [
  414. {
  415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  416. "preferred": true
  417. }
  418. ]
  419. },
  420. "require": {
  421. "php": ">=5.5.0"
  422. },
  423. "require-dev": {
  424. "phpunit/phpunit": "^4.0"
  425. },
  426. "type": "library",
  427. "extra": {
  428. "branch-alias": {
  429. "dev-master": "1.4-dev"
  430. }
  431. },
  432. "autoload": {
  433. "psr-4": {
  434. "GuzzleHttp\\Promise\\": "src/"
  435. },
  436. "files": [
  437. "src/functions_include.php"
  438. ]
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "MIT"
  443. ],
  444. "authors": [
  445. {
  446. "name": "Michael Dowling",
  447. "email": "mtdowling@gmail.com",
  448. "homepage": "https://github.com/mtdowling"
  449. }
  450. ],
  451. "description": "Guzzle promises library",
  452. "keywords": [
  453. "promise"
  454. ],
  455. "time": "2016-12-20T10:07:11+00:00"
  456. },
  457. {
  458. "name": "guzzlehttp/psr7",
  459. "version": "1.5.2",
  460. "source": {
  461. "type": "git",
  462. "url": "https://github.com/guzzle/psr7.git",
  463. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  464. },
  465. "dist": {
  466. "type": "zip",
  467. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  468. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  469. "shasum": "",
  470. "mirrors": [
  471. {
  472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  473. "preferred": true
  474. }
  475. ]
  476. },
  477. "require": {
  478. "php": ">=5.4.0",
  479. "psr/http-message": "~1.0",
  480. "ralouphie/getallheaders": "^2.0.5"
  481. },
  482. "provide": {
  483. "psr/http-message-implementation": "1.0"
  484. },
  485. "require-dev": {
  486. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  487. },
  488. "type": "library",
  489. "extra": {
  490. "branch-alias": {
  491. "dev-master": "1.5-dev"
  492. }
  493. },
  494. "autoload": {
  495. "psr-4": {
  496. "GuzzleHttp\\Psr7\\": "src/"
  497. },
  498. "files": [
  499. "src/functions_include.php"
  500. ]
  501. },
  502. "notification-url": "https://packagist.org/downloads/",
  503. "license": [
  504. "MIT"
  505. ],
  506. "authors": [
  507. {
  508. "name": "Michael Dowling",
  509. "email": "mtdowling@gmail.com",
  510. "homepage": "https://github.com/mtdowling"
  511. },
  512. {
  513. "name": "Tobias Schultze",
  514. "homepage": "https://github.com/Tobion"
  515. }
  516. ],
  517. "description": "PSR-7 message implementation that also provides common utility methods",
  518. "keywords": [
  519. "http",
  520. "message",
  521. "psr-7",
  522. "request",
  523. "response",
  524. "stream",
  525. "uri",
  526. "url"
  527. ],
  528. "time": "2018-12-04T20:46:45+00:00"
  529. },
  530. {
  531. "name": "jialeo/payment",
  532. "version": "0.16",
  533. "source": {
  534. "type": "git",
  535. "url": "https://github.com/jialeo/payment.git",
  536. "reference": "28e5db40f8ab409f1b0f13c1588d29a004246d07"
  537. },
  538. "dist": {
  539. "type": "zip",
  540. "url": "https://api.github.com/repos/jialeo/payment/zipball/28e5db40f8ab409f1b0f13c1588d29a004246d07",
  541. "reference": "28e5db40f8ab409f1b0f13c1588d29a004246d07",
  542. "shasum": "",
  543. "mirrors": [
  544. {
  545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  546. "preferred": true
  547. }
  548. ]
  549. },
  550. "require": {
  551. "php": ">=5.6.4"
  552. },
  553. "type": "library",
  554. "autoload": {
  555. "psr-4": {
  556. "JiaLeo\\Payment\\": "src/"
  557. }
  558. },
  559. "notification-url": "https://packagist.org/downloads/",
  560. "license": [
  561. "MIT"
  562. ],
  563. "authors": [
  564. {
  565. "name": "Liang",
  566. "email": "chenjialiang@han-zi.cn"
  567. }
  568. ],
  569. "description": "Alipay,Unicompay",
  570. "keywords": [
  571. "Unicompay",
  572. "alipay"
  573. ],
  574. "support": {
  575. "issues": "https://github.com/jialeo/payment/issues",
  576. "source": "https://github.com/jialeo/payment/tree/0.16"
  577. },
  578. "time": "2020-04-29T08:25:58+00:00"
  579. },
  580. {
  581. "name": "league/flysystem",
  582. "version": "1.0.57",
  583. "source": {
  584. "type": "git",
  585. "url": "https://github.com/thephpleague/flysystem.git",
  586. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  587. },
  588. "dist": {
  589. "type": "zip",
  590. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  591. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  592. "shasum": "",
  593. "mirrors": [
  594. {
  595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  596. "preferred": true
  597. }
  598. ]
  599. },
  600. "require": {
  601. "ext-fileinfo": "*",
  602. "php": ">=5.5.9"
  603. },
  604. "conflict": {
  605. "league/flysystem-sftp": "<1.0.6"
  606. },
  607. "require-dev": {
  608. "phpspec/phpspec": "^3.4",
  609. "phpunit/phpunit": "^5.7.10"
  610. },
  611. "suggest": {
  612. "ext-fileinfo": "Required for MimeType",
  613. "ext-ftp": "Allows you to use FTP server storage",
  614. "ext-openssl": "Allows you to use FTPS server storage",
  615. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  616. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  617. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  618. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  619. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  620. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  621. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  622. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  623. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  624. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  625. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  626. },
  627. "type": "library",
  628. "extra": {
  629. "branch-alias": {
  630. "dev-master": "1.1-dev"
  631. }
  632. },
  633. "autoload": {
  634. "psr-4": {
  635. "League\\Flysystem\\": "src/"
  636. }
  637. },
  638. "notification-url": "https://packagist.org/downloads/",
  639. "license": [
  640. "MIT"
  641. ],
  642. "authors": [
  643. {
  644. "name": "Frank de Jonge",
  645. "email": "info@frenky.net"
  646. }
  647. ],
  648. "description": "Filesystem abstraction: Many filesystems, one API.",
  649. "keywords": [
  650. "Cloud Files",
  651. "WebDAV",
  652. "abstraction",
  653. "aws",
  654. "cloud",
  655. "copy.com",
  656. "dropbox",
  657. "file systems",
  658. "files",
  659. "filesystem",
  660. "filesystems",
  661. "ftp",
  662. "rackspace",
  663. "remote",
  664. "s3",
  665. "sftp",
  666. "storage"
  667. ],
  668. "time": "2019-10-16T21:01:05+00:00"
  669. },
  670. {
  671. "name": "league/flysystem-cached-adapter",
  672. "version": "1.0.9",
  673. "source": {
  674. "type": "git",
  675. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  676. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  677. },
  678. "dist": {
  679. "type": "zip",
  680. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  681. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  682. "shasum": "",
  683. "mirrors": [
  684. {
  685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  686. "preferred": true
  687. }
  688. ]
  689. },
  690. "require": {
  691. "league/flysystem": "~1.0",
  692. "psr/cache": "^1.0.0"
  693. },
  694. "require-dev": {
  695. "mockery/mockery": "~0.9",
  696. "phpspec/phpspec": "^3.4",
  697. "phpunit/phpunit": "^5.7",
  698. "predis/predis": "~1.0",
  699. "tedivm/stash": "~0.12"
  700. },
  701. "suggest": {
  702. "ext-phpredis": "Pure C implemented extension for PHP"
  703. },
  704. "type": "library",
  705. "autoload": {
  706. "psr-4": {
  707. "League\\Flysystem\\Cached\\": "src/"
  708. }
  709. },
  710. "notification-url": "https://packagist.org/downloads/",
  711. "license": [
  712. "MIT"
  713. ],
  714. "authors": [
  715. {
  716. "name": "frankdejonge",
  717. "email": "info@frenky.net"
  718. }
  719. ],
  720. "description": "An adapter decorator to enable meta-data caching.",
  721. "time": "2018-07-09T20:51:04+00:00"
  722. },
  723. {
  724. "name": "monolog/monolog",
  725. "version": "1.24.0",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/Seldaek/monolog.git",
  729. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  734. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  735. "shasum": "",
  736. "mirrors": [
  737. {
  738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  739. "preferred": true
  740. }
  741. ]
  742. },
  743. "require": {
  744. "php": ">=5.3.0",
  745. "psr/log": "~1.0"
  746. },
  747. "provide": {
  748. "psr/log-implementation": "1.0.0"
  749. },
  750. "require-dev": {
  751. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  752. "doctrine/couchdb": "~1.0@dev",
  753. "graylog2/gelf-php": "~1.0",
  754. "jakub-onderka/php-parallel-lint": "0.9",
  755. "php-amqplib/php-amqplib": "~2.4",
  756. "php-console/php-console": "^3.1.3",
  757. "phpunit/phpunit": "~4.5",
  758. "phpunit/phpunit-mock-objects": "2.3.0",
  759. "ruflin/elastica": ">=0.90 <3.0",
  760. "sentry/sentry": "^0.13",
  761. "swiftmailer/swiftmailer": "^5.3|^6.0"
  762. },
  763. "suggest": {
  764. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  765. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  766. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  767. "ext-mongo": "Allow sending log messages to a MongoDB server",
  768. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  769. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  770. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  771. "php-console/php-console": "Allow sending log messages to Google Chrome",
  772. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  773. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  774. "sentry/sentry": "Allow sending log messages to a Sentry server"
  775. },
  776. "type": "library",
  777. "extra": {
  778. "branch-alias": {
  779. "dev-master": "2.0.x-dev"
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "Monolog\\": "src/Monolog"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Jordi Boggiano",
  794. "email": "j.boggiano@seld.be",
  795. "homepage": "http://seld.be"
  796. }
  797. ],
  798. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  799. "homepage": "http://github.com/Seldaek/monolog",
  800. "keywords": [
  801. "log",
  802. "logging",
  803. "psr-3"
  804. ],
  805. "time": "2018-11-05T09:00:11+00:00"
  806. },
  807. {
  808. "name": "nesbot/carbon",
  809. "version": "2.20.0",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/briannesbitt/Carbon.git",
  813. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bc671b896c276795fad8426b0aa24e8ade0f2498",
  818. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498",
  819. "shasum": "",
  820. "mirrors": [
  821. {
  822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  823. "preferred": true
  824. }
  825. ]
  826. },
  827. "require": {
  828. "ext-json": "*",
  829. "php": "^7.1.8 || ^8.0",
  830. "symfony/translation": "^3.4 || ^4.0"
  831. },
  832. "require-dev": {
  833. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  834. "kylekatarnls/multi-tester": "^1.1",
  835. "phpmd/phpmd": "^2.6",
  836. "phpstan/phpstan": "^0.11",
  837. "phpunit/phpunit": "^7.5 || ^8.0",
  838. "squizlabs/php_codesniffer": "^3.4"
  839. },
  840. "type": "library",
  841. "extra": {
  842. "laravel": {
  843. "providers": [
  844. "Carbon\\Laravel\\ServiceProvider"
  845. ]
  846. }
  847. },
  848. "autoload": {
  849. "psr-4": {
  850. "Carbon\\": "src/Carbon/"
  851. }
  852. },
  853. "notification-url": "https://packagist.org/downloads/",
  854. "license": [
  855. "MIT"
  856. ],
  857. "authors": [
  858. {
  859. "name": "Brian Nesbitt",
  860. "email": "brian@nesbot.com",
  861. "homepage": "http://nesbot.com"
  862. }
  863. ],
  864. "description": "A simple API extension for DateTime.",
  865. "homepage": "http://carbon.nesbot.com",
  866. "keywords": [
  867. "date",
  868. "datetime",
  869. "time"
  870. ],
  871. "time": "2019-06-25T10:00:57+00:00"
  872. },
  873. {
  874. "name": "opis/closure",
  875. "version": "3.4.1",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/opis/closure.git",
  879. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
  884. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
  885. "shasum": "",
  886. "mirrors": [
  887. {
  888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  889. "preferred": true
  890. }
  891. ]
  892. },
  893. "require": {
  894. "php": "^5.4 || ^7.0"
  895. },
  896. "require-dev": {
  897. "jeremeamia/superclosure": "^2.0",
  898. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  899. },
  900. "type": "library",
  901. "extra": {
  902. "branch-alias": {
  903. "dev-master": "3.3.x-dev"
  904. }
  905. },
  906. "autoload": {
  907. "psr-4": {
  908. "Opis\\Closure\\": "src/"
  909. },
  910. "files": [
  911. "functions.php"
  912. ]
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "MIT"
  917. ],
  918. "authors": [
  919. {
  920. "name": "Marius Sarca",
  921. "email": "marius.sarca@gmail.com"
  922. },
  923. {
  924. "name": "Sorin Sarca",
  925. "email": "sarca_sorin@hotmail.com"
  926. }
  927. ],
  928. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  929. "homepage": "https://opis.io/closure",
  930. "keywords": [
  931. "anonymous functions",
  932. "closure",
  933. "function",
  934. "serializable",
  935. "serialization",
  936. "serialize"
  937. ],
  938. "time": "2019-10-19T18:38:51+00:00"
  939. },
  940. {
  941. "name": "overtrue/pinyin",
  942. "version": "4.0.6",
  943. "source": {
  944. "type": "git",
  945. "url": "https://github.com/overtrue/pinyin.git",
  946. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d"
  947. },
  948. "dist": {
  949. "type": "zip",
  950. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  951. "reference": "9836dae1783bcf5934508a2abe32eca9ea5ee15d",
  952. "shasum": "",
  953. "mirrors": [
  954. {
  955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  956. "preferred": true
  957. }
  958. ]
  959. },
  960. "require": {
  961. "php": ">=7.1"
  962. },
  963. "require-dev": {
  964. "brainmaestro/composer-git-hooks": "^2.7",
  965. "friendsofphp/php-cs-fixer": "^2.16",
  966. "phpunit/phpunit": "~8.0"
  967. },
  968. "type": "library",
  969. "extra": {
  970. "hooks": {
  971. "pre-commit": [
  972. "composer test",
  973. "composer fix-style"
  974. ],
  975. "pre-push": [
  976. "composer test",
  977. "composer check-style"
  978. ]
  979. }
  980. },
  981. "autoload": {
  982. "psr-4": {
  983. "Overtrue\\Pinyin\\": "src/"
  984. },
  985. "files": [
  986. "src/const.php"
  987. ]
  988. },
  989. "notification-url": "https://packagist.org/downloads/",
  990. "license": [
  991. "MIT"
  992. ],
  993. "authors": [
  994. {
  995. "name": "overtrue",
  996. "email": "anzhengchao@gmail.com",
  997. "homepage": "http://github.com/overtrue"
  998. }
  999. ],
  1000. "description": "Chinese to pinyin translator.",
  1001. "homepage": "https://github.com/overtrue/pinyin",
  1002. "keywords": [
  1003. "Chinese",
  1004. "Pinyin",
  1005. "cn2pinyin"
  1006. ],
  1007. "time": "2020-04-13T08:53:30+00:00"
  1008. },
  1009. {
  1010. "name": "overtrue/socialite",
  1011. "version": "1.3.0",
  1012. "source": {
  1013. "type": "git",
  1014. "url": "https://github.com/overtrue/socialite.git",
  1015. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  1016. },
  1017. "dist": {
  1018. "type": "zip",
  1019. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  1020. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  1021. "shasum": "",
  1022. "mirrors": [
  1023. {
  1024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1025. "preferred": true
  1026. }
  1027. ]
  1028. },
  1029. "require": {
  1030. "guzzlehttp/guzzle": "~5.0|~6.0",
  1031. "php": ">=5.4.0",
  1032. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  1033. },
  1034. "require-dev": {
  1035. "mockery/mockery": "~0.9",
  1036. "phpunit/phpunit": "~4.0"
  1037. },
  1038. "type": "library",
  1039. "autoload": {
  1040. "psr-4": {
  1041. "Overtrue\\Socialite\\": "src/"
  1042. }
  1043. },
  1044. "notification-url": "https://packagist.org/downloads/",
  1045. "license": [
  1046. "MIT"
  1047. ],
  1048. "authors": [
  1049. {
  1050. "name": "overtrue",
  1051. "email": "anzhengchao@gmail.com"
  1052. }
  1053. ],
  1054. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1055. "keywords": [
  1056. "login",
  1057. "oauth",
  1058. "qq",
  1059. "social",
  1060. "wechat",
  1061. "weibo"
  1062. ],
  1063. "time": "2017-08-04T06:28:22+00:00"
  1064. },
  1065. {
  1066. "name": "overtrue/wechat",
  1067. "version": "3.3.33",
  1068. "source": {
  1069. "type": "git",
  1070. "url": "https://github.com/w7corp/easywechat.git",
  1071. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7"
  1072. },
  1073. "dist": {
  1074. "type": "zip",
  1075. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/78e5476df330754040d1c400d0bca640d5b77cb7",
  1076. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7",
  1077. "shasum": "",
  1078. "mirrors": [
  1079. {
  1080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1081. "preferred": true
  1082. }
  1083. ]
  1084. },
  1085. "require": {
  1086. "doctrine/cache": "1.4.*",
  1087. "ext-openssl": "*",
  1088. "guzzlehttp/guzzle": "~6.2",
  1089. "monolog/monolog": "^1.17",
  1090. "overtrue/socialite": "^1.0.25",
  1091. "php": ">=5.5.0",
  1092. "pimple/pimple": "~3.0",
  1093. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  1094. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  1095. },
  1096. "require-dev": {
  1097. "mockery/mockery": "^0.9.9",
  1098. "overtrue/phplint": "dev-master",
  1099. "phpunit/phpunit": "~4.0"
  1100. },
  1101. "type": "library",
  1102. "autoload": {
  1103. "psr-4": {
  1104. "EasyWeChat\\": "src/"
  1105. },
  1106. "files": [
  1107. "src/Payment/helpers.php"
  1108. ]
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "overtrue",
  1117. "email": "anzhengchao@gmail.com"
  1118. }
  1119. ],
  1120. "description": "微信SDK",
  1121. "keywords": [
  1122. "sdk",
  1123. "wechat",
  1124. "weixin",
  1125. "weixin-sdk"
  1126. ],
  1127. "time": "2018-10-17T12:27:27+00:00"
  1128. },
  1129. {
  1130. "name": "paragonie/random_compat",
  1131. "version": "v9.99.99",
  1132. "source": {
  1133. "type": "git",
  1134. "url": "https://github.com/paragonie/random_compat.git",
  1135. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1136. },
  1137. "dist": {
  1138. "type": "zip",
  1139. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1140. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1141. "shasum": "",
  1142. "mirrors": [
  1143. {
  1144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1145. "preferred": true
  1146. }
  1147. ]
  1148. },
  1149. "require": {
  1150. "php": "^7"
  1151. },
  1152. "require-dev": {
  1153. "phpunit/phpunit": "4.*|5.*",
  1154. "vimeo/psalm": "^1"
  1155. },
  1156. "suggest": {
  1157. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1158. },
  1159. "type": "library",
  1160. "notification-url": "https://packagist.org/downloads/",
  1161. "license": [
  1162. "MIT"
  1163. ],
  1164. "authors": [
  1165. {
  1166. "name": "Paragon Initiative Enterprises",
  1167. "email": "security@paragonie.com",
  1168. "homepage": "https://paragonie.com"
  1169. }
  1170. ],
  1171. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1172. "keywords": [
  1173. "csprng",
  1174. "polyfill",
  1175. "pseudorandom",
  1176. "random"
  1177. ],
  1178. "time": "2018-07-02T15:55:56+00:00"
  1179. },
  1180. {
  1181. "name": "phpoffice/phpexcel",
  1182. "version": "1.8.2",
  1183. "source": {
  1184. "type": "git",
  1185. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1186. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  1187. },
  1188. "dist": {
  1189. "type": "zip",
  1190. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1191. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1192. "shasum": "",
  1193. "mirrors": [
  1194. {
  1195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1196. "preferred": true
  1197. }
  1198. ]
  1199. },
  1200. "require": {
  1201. "ext-mbstring": "*",
  1202. "ext-xml": "*",
  1203. "ext-xmlwriter": "*",
  1204. "php": "^5.2|^7.0"
  1205. },
  1206. "require-dev": {
  1207. "squizlabs/php_codesniffer": "2.*"
  1208. },
  1209. "type": "library",
  1210. "autoload": {
  1211. "psr-0": {
  1212. "PHPExcel": "Classes/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "LGPL-2.1"
  1218. ],
  1219. "authors": [
  1220. {
  1221. "name": "Maarten Balliauw",
  1222. "homepage": "http://blog.maartenballiauw.be"
  1223. },
  1224. {
  1225. "name": "Erik Tilt"
  1226. },
  1227. {
  1228. "name": "Franck Lefevre",
  1229. "homepage": "http://rootslabs.net"
  1230. },
  1231. {
  1232. "name": "Mark Baker",
  1233. "homepage": "http://markbakeruk.net"
  1234. }
  1235. ],
  1236. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1237. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1238. "keywords": [
  1239. "OpenXML",
  1240. "excel",
  1241. "php",
  1242. "spreadsheet",
  1243. "xls",
  1244. "xlsx"
  1245. ],
  1246. "abandoned": "phpoffice/phpspreadsheet",
  1247. "time": "2018-11-22T23:07:24+00:00"
  1248. },
  1249. {
  1250. "name": "pimple/pimple",
  1251. "version": "v3.2.3",
  1252. "source": {
  1253. "type": "git",
  1254. "url": "https://github.com/silexphp/Pimple.git",
  1255. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  1256. },
  1257. "dist": {
  1258. "type": "zip",
  1259. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1260. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1261. "shasum": "",
  1262. "mirrors": [
  1263. {
  1264. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1265. "preferred": true
  1266. }
  1267. ]
  1268. },
  1269. "require": {
  1270. "php": ">=5.3.0",
  1271. "psr/container": "^1.0"
  1272. },
  1273. "require-dev": {
  1274. "symfony/phpunit-bridge": "^3.2"
  1275. },
  1276. "type": "library",
  1277. "extra": {
  1278. "branch-alias": {
  1279. "dev-master": "3.2.x-dev"
  1280. }
  1281. },
  1282. "autoload": {
  1283. "psr-0": {
  1284. "Pimple": "src/"
  1285. }
  1286. },
  1287. "notification-url": "https://packagist.org/downloads/",
  1288. "license": [
  1289. "MIT"
  1290. ],
  1291. "authors": [
  1292. {
  1293. "name": "Fabien Potencier",
  1294. "email": "fabien@symfony.com"
  1295. }
  1296. ],
  1297. "description": "Pimple, a simple Dependency Injection Container",
  1298. "homepage": "http://pimple.sensiolabs.org",
  1299. "keywords": [
  1300. "container",
  1301. "dependency injection"
  1302. ],
  1303. "time": "2018-01-21T07:42:36+00:00"
  1304. },
  1305. {
  1306. "name": "psr/cache",
  1307. "version": "1.0.1",
  1308. "source": {
  1309. "type": "git",
  1310. "url": "https://github.com/php-fig/cache.git",
  1311. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1312. },
  1313. "dist": {
  1314. "type": "zip",
  1315. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1316. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1317. "shasum": "",
  1318. "mirrors": [
  1319. {
  1320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1321. "preferred": true
  1322. }
  1323. ]
  1324. },
  1325. "require": {
  1326. "php": ">=5.3.0"
  1327. },
  1328. "type": "library",
  1329. "extra": {
  1330. "branch-alias": {
  1331. "dev-master": "1.0.x-dev"
  1332. }
  1333. },
  1334. "autoload": {
  1335. "psr-4": {
  1336. "Psr\\Cache\\": "src/"
  1337. }
  1338. },
  1339. "notification-url": "https://packagist.org/downloads/",
  1340. "license": [
  1341. "MIT"
  1342. ],
  1343. "authors": [
  1344. {
  1345. "name": "PHP-FIG",
  1346. "homepage": "http://www.php-fig.org/"
  1347. }
  1348. ],
  1349. "description": "Common interface for caching libraries",
  1350. "keywords": [
  1351. "cache",
  1352. "psr",
  1353. "psr-6"
  1354. ],
  1355. "time": "2016-08-06T20:24:11+00:00"
  1356. },
  1357. {
  1358. "name": "psr/container",
  1359. "version": "1.0.0",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/php-fig/container.git",
  1363. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1368. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1369. "shasum": "",
  1370. "mirrors": [
  1371. {
  1372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1373. "preferred": true
  1374. }
  1375. ]
  1376. },
  1377. "require": {
  1378. "php": ">=5.3.0"
  1379. },
  1380. "type": "library",
  1381. "extra": {
  1382. "branch-alias": {
  1383. "dev-master": "1.0.x-dev"
  1384. }
  1385. },
  1386. "autoload": {
  1387. "psr-4": {
  1388. "Psr\\Container\\": "src/"
  1389. }
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "MIT"
  1394. ],
  1395. "authors": [
  1396. {
  1397. "name": "PHP-FIG",
  1398. "homepage": "http://www.php-fig.org/"
  1399. }
  1400. ],
  1401. "description": "Common Container Interface (PHP FIG PSR-11)",
  1402. "homepage": "https://github.com/php-fig/container",
  1403. "keywords": [
  1404. "PSR-11",
  1405. "container",
  1406. "container-interface",
  1407. "container-interop",
  1408. "psr"
  1409. ],
  1410. "time": "2017-02-14T16:28:37+00:00"
  1411. },
  1412. {
  1413. "name": "psr/http-message",
  1414. "version": "1.0.1",
  1415. "source": {
  1416. "type": "git",
  1417. "url": "https://github.com/php-fig/http-message.git",
  1418. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1419. },
  1420. "dist": {
  1421. "type": "zip",
  1422. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1423. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  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.3.0"
  1434. },
  1435. "type": "library",
  1436. "extra": {
  1437. "branch-alias": {
  1438. "dev-master": "1.0.x-dev"
  1439. }
  1440. },
  1441. "autoload": {
  1442. "psr-4": {
  1443. "Psr\\Http\\Message\\": "src/"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "MIT"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "PHP-FIG",
  1453. "homepage": "http://www.php-fig.org/"
  1454. }
  1455. ],
  1456. "description": "Common interface for HTTP messages",
  1457. "homepage": "https://github.com/php-fig/http-message",
  1458. "keywords": [
  1459. "http",
  1460. "http-message",
  1461. "psr",
  1462. "psr-7",
  1463. "request",
  1464. "response"
  1465. ],
  1466. "time": "2016-08-06T14:39:51+00:00"
  1467. },
  1468. {
  1469. "name": "psr/log",
  1470. "version": "1.1.2",
  1471. "source": {
  1472. "type": "git",
  1473. "url": "https://github.com/php-fig/log.git",
  1474. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  1475. },
  1476. "dist": {
  1477. "type": "zip",
  1478. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1479. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  1480. "shasum": "",
  1481. "mirrors": [
  1482. {
  1483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1484. "preferred": true
  1485. }
  1486. ]
  1487. },
  1488. "require": {
  1489. "php": ">=5.3.0"
  1490. },
  1491. "type": "library",
  1492. "extra": {
  1493. "branch-alias": {
  1494. "dev-master": "1.1.x-dev"
  1495. }
  1496. },
  1497. "autoload": {
  1498. "psr-4": {
  1499. "Psr\\Log\\": "Psr/Log/"
  1500. }
  1501. },
  1502. "notification-url": "https://packagist.org/downloads/",
  1503. "license": [
  1504. "MIT"
  1505. ],
  1506. "authors": [
  1507. {
  1508. "name": "PHP-FIG",
  1509. "homepage": "http://www.php-fig.org/"
  1510. }
  1511. ],
  1512. "description": "Common interface for logging libraries",
  1513. "homepage": "https://github.com/php-fig/log",
  1514. "keywords": [
  1515. "log",
  1516. "psr",
  1517. "psr-3"
  1518. ],
  1519. "time": "2019-11-01T11:05:21+00:00"
  1520. },
  1521. {
  1522. "name": "psr/simple-cache",
  1523. "version": "1.0.1",
  1524. "source": {
  1525. "type": "git",
  1526. "url": "https://github.com/php-fig/simple-cache.git",
  1527. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1528. },
  1529. "dist": {
  1530. "type": "zip",
  1531. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1532. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1533. "shasum": "",
  1534. "mirrors": [
  1535. {
  1536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1537. "preferred": true
  1538. }
  1539. ]
  1540. },
  1541. "require": {
  1542. "php": ">=5.3.0"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "1.0.x-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-4": {
  1552. "Psr\\SimpleCache\\": "src/"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "PHP-FIG",
  1562. "homepage": "http://www.php-fig.org/"
  1563. }
  1564. ],
  1565. "description": "Common interfaces for simple caching",
  1566. "keywords": [
  1567. "cache",
  1568. "caching",
  1569. "psr",
  1570. "psr-16",
  1571. "simple-cache"
  1572. ],
  1573. "time": "2017-10-23T01:57:42+00:00"
  1574. },
  1575. {
  1576. "name": "qcloud/cos-sdk-v5",
  1577. "version": "v1.3.3",
  1578. "source": {
  1579. "type": "git",
  1580. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  1581. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d"
  1582. },
  1583. "dist": {
  1584. "type": "zip",
  1585. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  1586. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  1587. "shasum": "",
  1588. "mirrors": [
  1589. {
  1590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1591. "preferred": true
  1592. }
  1593. ]
  1594. },
  1595. "require": {
  1596. "guzzle/guzzle": "~3.7",
  1597. "php": ">=5.3.0"
  1598. },
  1599. "type": "library",
  1600. "autoload": {
  1601. "psr-0": {
  1602. "Qcloud\\Cos\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "yaozongyou",
  1612. "email": "yaozongyou@vip.qq.com"
  1613. },
  1614. {
  1615. "name": "lewzylu",
  1616. "email": "327874225@qq.com"
  1617. }
  1618. ],
  1619. "description": "PHP SDK for QCloud COS",
  1620. "keywords": [
  1621. "cos",
  1622. "php",
  1623. "qcloud"
  1624. ],
  1625. "time": "2019-08-07T10:15:47+00:00"
  1626. },
  1627. {
  1628. "name": "qiniu/php-sdk",
  1629. "version": "v7.2.9",
  1630. "source": {
  1631. "type": "git",
  1632. "url": "https://github.com/qiniu/php-sdk.git",
  1633. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90"
  1634. },
  1635. "dist": {
  1636. "type": "zip",
  1637. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  1638. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  1639. "shasum": "",
  1640. "mirrors": [
  1641. {
  1642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1643. "preferred": true
  1644. }
  1645. ]
  1646. },
  1647. "require": {
  1648. "php": ">=5.3.3"
  1649. },
  1650. "require-dev": {
  1651. "phpunit/phpunit": "~4.0",
  1652. "squizlabs/php_codesniffer": "~2.3"
  1653. },
  1654. "type": "library",
  1655. "autoload": {
  1656. "psr-4": {
  1657. "Qiniu\\": "src/Qiniu"
  1658. },
  1659. "files": [
  1660. "src/Qiniu/functions.php"
  1661. ]
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Qiniu",
  1670. "email": "sdk@qiniu.com",
  1671. "homepage": "http://www.qiniu.com"
  1672. }
  1673. ],
  1674. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  1675. "homepage": "http://developer.qiniu.com/",
  1676. "keywords": [
  1677. "cloud",
  1678. "qiniu",
  1679. "sdk",
  1680. "storage"
  1681. ],
  1682. "time": "2019-07-09T07:55:07+00:00"
  1683. },
  1684. {
  1685. "name": "ralouphie/getallheaders",
  1686. "version": "2.0.5",
  1687. "source": {
  1688. "type": "git",
  1689. "url": "https://github.com/ralouphie/getallheaders.git",
  1690. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  1691. },
  1692. "dist": {
  1693. "type": "zip",
  1694. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1695. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  1696. "shasum": "",
  1697. "mirrors": [
  1698. {
  1699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1700. "preferred": true
  1701. }
  1702. ]
  1703. },
  1704. "require": {
  1705. "php": ">=5.3"
  1706. },
  1707. "require-dev": {
  1708. "phpunit/phpunit": "~3.7.0",
  1709. "satooshi/php-coveralls": ">=1.0"
  1710. },
  1711. "type": "library",
  1712. "autoload": {
  1713. "files": [
  1714. "src/getallheaders.php"
  1715. ]
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "MIT"
  1720. ],
  1721. "authors": [
  1722. {
  1723. "name": "Ralph Khattar",
  1724. "email": "ralph.khattar@gmail.com"
  1725. }
  1726. ],
  1727. "description": "A polyfill for getallheaders.",
  1728. "time": "2016-02-11T07:05:27+00:00"
  1729. },
  1730. {
  1731. "name": "spatie/macroable",
  1732. "version": "1.0.0",
  1733. "source": {
  1734. "type": "git",
  1735. "url": "https://github.com/spatie/macroable.git",
  1736. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3"
  1737. },
  1738. "dist": {
  1739. "type": "zip",
  1740. "url": "https://api.github.com/repos/spatie/macroable/zipball/74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  1741. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  1742. "shasum": "",
  1743. "mirrors": [
  1744. {
  1745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1746. "preferred": true
  1747. }
  1748. ]
  1749. },
  1750. "require": {
  1751. "php": "^7.0"
  1752. },
  1753. "require-dev": {
  1754. "phpunit/phpunit": "^6.3"
  1755. },
  1756. "type": "library",
  1757. "autoload": {
  1758. "psr-4": {
  1759. "Spatie\\Macroable\\": "src"
  1760. }
  1761. },
  1762. "notification-url": "https://packagist.org/downloads/",
  1763. "license": [
  1764. "MIT"
  1765. ],
  1766. "authors": [
  1767. {
  1768. "name": "Freek Van der Herten",
  1769. "email": "freek@spatie.be",
  1770. "homepage": "https://spatie.be",
  1771. "role": "Developer"
  1772. }
  1773. ],
  1774. "description": "A trait to dynamically add methods to a class",
  1775. "homepage": "https://github.com/spatie/macroable",
  1776. "keywords": [
  1777. "macroable",
  1778. "spatie"
  1779. ],
  1780. "time": "2017-09-18T09:51:20+00:00"
  1781. },
  1782. {
  1783. "name": "symfony/event-dispatcher",
  1784. "version": "v2.8.50",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/symfony/event-dispatcher.git",
  1788. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
  1793. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
  1794. "shasum": "",
  1795. "mirrors": [
  1796. {
  1797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1798. "preferred": true
  1799. }
  1800. ]
  1801. },
  1802. "require": {
  1803. "php": ">=5.3.9"
  1804. },
  1805. "require-dev": {
  1806. "psr/log": "~1.0",
  1807. "symfony/config": "^2.0.5|~3.0.0",
  1808. "symfony/dependency-injection": "~2.6|~3.0.0",
  1809. "symfony/expression-language": "~2.6|~3.0.0",
  1810. "symfony/stopwatch": "~2.3|~3.0.0"
  1811. },
  1812. "suggest": {
  1813. "symfony/dependency-injection": "",
  1814. "symfony/http-kernel": ""
  1815. },
  1816. "type": "library",
  1817. "extra": {
  1818. "branch-alias": {
  1819. "dev-master": "2.8-dev"
  1820. }
  1821. },
  1822. "autoload": {
  1823. "psr-4": {
  1824. "Symfony\\Component\\EventDispatcher\\": ""
  1825. },
  1826. "exclude-from-classmap": [
  1827. "/Tests/"
  1828. ]
  1829. },
  1830. "notification-url": "https://packagist.org/downloads/",
  1831. "license": [
  1832. "MIT"
  1833. ],
  1834. "authors": [
  1835. {
  1836. "name": "Fabien Potencier",
  1837. "email": "fabien@symfony.com"
  1838. },
  1839. {
  1840. "name": "Symfony Community",
  1841. "homepage": "https://symfony.com/contributors"
  1842. }
  1843. ],
  1844. "description": "Symfony EventDispatcher Component",
  1845. "homepage": "https://symfony.com",
  1846. "time": "2018-11-21T14:20:20+00:00"
  1847. },
  1848. {
  1849. "name": "symfony/http-foundation",
  1850. "version": "v3.4.28",
  1851. "source": {
  1852. "type": "git",
  1853. "url": "https://github.com/symfony/http-foundation.git",
  1854. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e"
  1855. },
  1856. "dist": {
  1857. "type": "zip",
  1858. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/677ae5e892b081e71a665bfa7dd90fe61800c00e",
  1859. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e",
  1860. "shasum": "",
  1861. "mirrors": [
  1862. {
  1863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1864. "preferred": true
  1865. }
  1866. ]
  1867. },
  1868. "require": {
  1869. "php": "^5.5.9|>=7.0.8",
  1870. "symfony/polyfill-mbstring": "~1.1",
  1871. "symfony/polyfill-php70": "~1.6"
  1872. },
  1873. "require-dev": {
  1874. "symfony/expression-language": "~2.8|~3.0|~4.0"
  1875. },
  1876. "type": "library",
  1877. "extra": {
  1878. "branch-alias": {
  1879. "dev-master": "3.4-dev"
  1880. }
  1881. },
  1882. "autoload": {
  1883. "psr-4": {
  1884. "Symfony\\Component\\HttpFoundation\\": ""
  1885. },
  1886. "exclude-from-classmap": [
  1887. "/Tests/"
  1888. ]
  1889. },
  1890. "notification-url": "https://packagist.org/downloads/",
  1891. "license": [
  1892. "MIT"
  1893. ],
  1894. "authors": [
  1895. {
  1896. "name": "Fabien Potencier",
  1897. "email": "fabien@symfony.com"
  1898. },
  1899. {
  1900. "name": "Symfony Community",
  1901. "homepage": "https://symfony.com/contributors"
  1902. }
  1903. ],
  1904. "description": "Symfony HttpFoundation Component",
  1905. "homepage": "https://symfony.com",
  1906. "time": "2019-05-27T05:50:24+00:00"
  1907. },
  1908. {
  1909. "name": "symfony/polyfill-mbstring",
  1910. "version": "v1.11.0",
  1911. "source": {
  1912. "type": "git",
  1913. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1914. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  1915. },
  1916. "dist": {
  1917. "type": "zip",
  1918. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  1919. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  1920. "shasum": "",
  1921. "mirrors": [
  1922. {
  1923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1924. "preferred": true
  1925. }
  1926. ]
  1927. },
  1928. "require": {
  1929. "php": ">=5.3.3"
  1930. },
  1931. "suggest": {
  1932. "ext-mbstring": "For best performance"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-master": "1.11-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "Symfony\\Polyfill\\Mbstring\\": ""
  1943. },
  1944. "files": [
  1945. "bootstrap.php"
  1946. ]
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Nicolas Grekas",
  1955. "email": "p@tchwork.com"
  1956. },
  1957. {
  1958. "name": "Symfony Community",
  1959. "homepage": "https://symfony.com/contributors"
  1960. }
  1961. ],
  1962. "description": "Symfony polyfill for the Mbstring extension",
  1963. "homepage": "https://symfony.com",
  1964. "keywords": [
  1965. "compatibility",
  1966. "mbstring",
  1967. "polyfill",
  1968. "portable",
  1969. "shim"
  1970. ],
  1971. "time": "2019-02-06T07:57:58+00:00"
  1972. },
  1973. {
  1974. "name": "symfony/polyfill-php70",
  1975. "version": "v1.11.0",
  1976. "source": {
  1977. "type": "git",
  1978. "url": "https://github.com/symfony/polyfill-php70.git",
  1979. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  1980. },
  1981. "dist": {
  1982. "type": "zip",
  1983. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  1984. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  1985. "shasum": "",
  1986. "mirrors": [
  1987. {
  1988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1989. "preferred": true
  1990. }
  1991. ]
  1992. },
  1993. "require": {
  1994. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  1995. "php": ">=5.3.3"
  1996. },
  1997. "type": "library",
  1998. "extra": {
  1999. "branch-alias": {
  2000. "dev-master": "1.11-dev"
  2001. }
  2002. },
  2003. "autoload": {
  2004. "psr-4": {
  2005. "Symfony\\Polyfill\\Php70\\": ""
  2006. },
  2007. "files": [
  2008. "bootstrap.php"
  2009. ],
  2010. "classmap": [
  2011. "Resources/stubs"
  2012. ]
  2013. },
  2014. "notification-url": "https://packagist.org/downloads/",
  2015. "license": [
  2016. "MIT"
  2017. ],
  2018. "authors": [
  2019. {
  2020. "name": "Nicolas Grekas",
  2021. "email": "p@tchwork.com"
  2022. },
  2023. {
  2024. "name": "Symfony Community",
  2025. "homepage": "https://symfony.com/contributors"
  2026. }
  2027. ],
  2028. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  2029. "homepage": "https://symfony.com",
  2030. "keywords": [
  2031. "compatibility",
  2032. "polyfill",
  2033. "portable",
  2034. "shim"
  2035. ],
  2036. "time": "2019-02-06T07:57:58+00:00"
  2037. },
  2038. {
  2039. "name": "symfony/polyfill-php72",
  2040. "version": "v1.11.0",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/symfony/polyfill-php72.git",
  2044. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2049. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2050. "shasum": "",
  2051. "mirrors": [
  2052. {
  2053. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2054. "preferred": true
  2055. }
  2056. ]
  2057. },
  2058. "require": {
  2059. "php": ">=5.3.3"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "1.11-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "psr-4": {
  2069. "Symfony\\Polyfill\\Php72\\": ""
  2070. },
  2071. "files": [
  2072. "bootstrap.php"
  2073. ]
  2074. },
  2075. "notification-url": "https://packagist.org/downloads/",
  2076. "license": [
  2077. "MIT"
  2078. ],
  2079. "authors": [
  2080. {
  2081. "name": "Nicolas Grekas",
  2082. "email": "p@tchwork.com"
  2083. },
  2084. {
  2085. "name": "Symfony Community",
  2086. "homepage": "https://symfony.com/contributors"
  2087. }
  2088. ],
  2089. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2090. "homepage": "https://symfony.com",
  2091. "keywords": [
  2092. "compatibility",
  2093. "polyfill",
  2094. "portable",
  2095. "shim"
  2096. ],
  2097. "time": "2019-02-06T07:57:58+00:00"
  2098. },
  2099. {
  2100. "name": "symfony/process",
  2101. "version": "v4.3.2",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/symfony/process.git",
  2105. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/symfony/process/zipball/856d35814cf287480465bb7a6c413bb7f5f5e69c",
  2110. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c",
  2111. "shasum": "",
  2112. "mirrors": [
  2113. {
  2114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2115. "preferred": true
  2116. }
  2117. ]
  2118. },
  2119. "require": {
  2120. "php": "^7.1.3"
  2121. },
  2122. "type": "library",
  2123. "extra": {
  2124. "branch-alias": {
  2125. "dev-master": "4.3-dev"
  2126. }
  2127. },
  2128. "autoload": {
  2129. "psr-4": {
  2130. "Symfony\\Component\\Process\\": ""
  2131. },
  2132. "exclude-from-classmap": [
  2133. "/Tests/"
  2134. ]
  2135. },
  2136. "notification-url": "https://packagist.org/downloads/",
  2137. "license": [
  2138. "MIT"
  2139. ],
  2140. "authors": [
  2141. {
  2142. "name": "Fabien Potencier",
  2143. "email": "fabien@symfony.com"
  2144. },
  2145. {
  2146. "name": "Symfony Community",
  2147. "homepage": "https://symfony.com/contributors"
  2148. }
  2149. ],
  2150. "description": "Symfony Process Component",
  2151. "homepage": "https://symfony.com",
  2152. "time": "2019-05-30T16:10:05+00:00"
  2153. },
  2154. {
  2155. "name": "symfony/psr-http-message-bridge",
  2156. "version": "v1.2.0",
  2157. "source": {
  2158. "type": "git",
  2159. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  2160. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  2161. },
  2162. "dist": {
  2163. "type": "zip",
  2164. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  2165. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  2166. "shasum": "",
  2167. "mirrors": [
  2168. {
  2169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2170. "preferred": true
  2171. }
  2172. ]
  2173. },
  2174. "require": {
  2175. "php": "^7.1",
  2176. "psr/http-message": "^1.0",
  2177. "symfony/http-foundation": "^3.4 || ^4.0"
  2178. },
  2179. "require-dev": {
  2180. "nyholm/psr7": "^1.1",
  2181. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  2182. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  2183. },
  2184. "suggest": {
  2185. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  2186. },
  2187. "type": "symfony-bridge",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-master": "1.2-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "psr-4": {
  2195. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2196. },
  2197. "exclude-from-classmap": [
  2198. "/Tests/"
  2199. ]
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Symfony Community",
  2208. "homepage": "http://symfony.com/contributors"
  2209. },
  2210. {
  2211. "name": "Fabien Potencier",
  2212. "email": "fabien@symfony.com"
  2213. }
  2214. ],
  2215. "description": "PSR HTTP message bridge",
  2216. "homepage": "http://symfony.com",
  2217. "keywords": [
  2218. "http",
  2219. "http-message",
  2220. "psr-17",
  2221. "psr-7"
  2222. ],
  2223. "time": "2019-03-11T18:22:33+00:00"
  2224. },
  2225. {
  2226. "name": "symfony/translation",
  2227. "version": "v4.3.2",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/symfony/translation.git",
  2231. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/symfony/translation/zipball/934ab1d18545149e012aa898cf02e9f23790f7a0",
  2236. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0",
  2237. "shasum": "",
  2238. "mirrors": [
  2239. {
  2240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2241. "preferred": true
  2242. }
  2243. ]
  2244. },
  2245. "require": {
  2246. "php": "^7.1.3",
  2247. "symfony/polyfill-mbstring": "~1.0",
  2248. "symfony/translation-contracts": "^1.1.2"
  2249. },
  2250. "conflict": {
  2251. "symfony/config": "<3.4",
  2252. "symfony/dependency-injection": "<3.4",
  2253. "symfony/yaml": "<3.4"
  2254. },
  2255. "provide": {
  2256. "symfony/translation-implementation": "1.0"
  2257. },
  2258. "require-dev": {
  2259. "psr/log": "~1.0",
  2260. "symfony/config": "~3.4|~4.0",
  2261. "symfony/console": "~3.4|~4.0",
  2262. "symfony/dependency-injection": "~3.4|~4.0",
  2263. "symfony/finder": "~2.8|~3.0|~4.0",
  2264. "symfony/http-kernel": "~3.4|~4.0",
  2265. "symfony/intl": "~3.4|~4.0",
  2266. "symfony/service-contracts": "^1.1.2",
  2267. "symfony/var-dumper": "~3.4|~4.0",
  2268. "symfony/yaml": "~3.4|~4.0"
  2269. },
  2270. "suggest": {
  2271. "psr/log-implementation": "To use logging capability in translator",
  2272. "symfony/config": "",
  2273. "symfony/yaml": ""
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "branch-alias": {
  2278. "dev-master": "4.3-dev"
  2279. }
  2280. },
  2281. "autoload": {
  2282. "psr-4": {
  2283. "Symfony\\Component\\Translation\\": ""
  2284. },
  2285. "exclude-from-classmap": [
  2286. "/Tests/"
  2287. ]
  2288. },
  2289. "notification-url": "https://packagist.org/downloads/",
  2290. "license": [
  2291. "MIT"
  2292. ],
  2293. "authors": [
  2294. {
  2295. "name": "Fabien Potencier",
  2296. "email": "fabien@symfony.com"
  2297. },
  2298. {
  2299. "name": "Symfony Community",
  2300. "homepage": "https://symfony.com/contributors"
  2301. }
  2302. ],
  2303. "description": "Symfony Translation Component",
  2304. "homepage": "https://symfony.com",
  2305. "time": "2019-06-13T11:03:18+00:00"
  2306. },
  2307. {
  2308. "name": "symfony/translation-contracts",
  2309. "version": "v1.1.5",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/symfony/translation-contracts.git",
  2313. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  2318. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  2319. "shasum": "",
  2320. "mirrors": [
  2321. {
  2322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2323. "preferred": true
  2324. }
  2325. ]
  2326. },
  2327. "require": {
  2328. "php": "^7.1.3"
  2329. },
  2330. "suggest": {
  2331. "symfony/translation-implementation": ""
  2332. },
  2333. "type": "library",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-master": "1.1-dev"
  2337. }
  2338. },
  2339. "autoload": {
  2340. "psr-4": {
  2341. "Symfony\\Contracts\\Translation\\": ""
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "Nicolas Grekas",
  2351. "email": "p@tchwork.com"
  2352. },
  2353. {
  2354. "name": "Symfony Community",
  2355. "homepage": "https://symfony.com/contributors"
  2356. }
  2357. ],
  2358. "description": "Generic abstractions related to translation",
  2359. "homepage": "https://symfony.com",
  2360. "keywords": [
  2361. "abstractions",
  2362. "contracts",
  2363. "decoupling",
  2364. "interfaces",
  2365. "interoperability",
  2366. "standards"
  2367. ],
  2368. "time": "2019-06-13T11:15:36+00:00"
  2369. },
  2370. {
  2371. "name": "symfony/var-dumper",
  2372. "version": "v4.3.1",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/symfony/var-dumper.git",
  2376. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f974f448154928d2b5fb7c412bd23b81d063f34b",
  2381. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b",
  2382. "shasum": "",
  2383. "mirrors": [
  2384. {
  2385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2386. "preferred": true
  2387. }
  2388. ]
  2389. },
  2390. "require": {
  2391. "php": "^7.1.3",
  2392. "symfony/polyfill-mbstring": "~1.0",
  2393. "symfony/polyfill-php72": "~1.5"
  2394. },
  2395. "conflict": {
  2396. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2397. "symfony/console": "<3.4"
  2398. },
  2399. "require-dev": {
  2400. "ext-iconv": "*",
  2401. "symfony/console": "~3.4|~4.0",
  2402. "symfony/process": "~3.4|~4.0",
  2403. "twig/twig": "~1.34|~2.4"
  2404. },
  2405. "suggest": {
  2406. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2407. "ext-intl": "To show region name in time zone dump",
  2408. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2409. },
  2410. "bin": [
  2411. "Resources/bin/var-dump-server"
  2412. ],
  2413. "type": "library",
  2414. "extra": {
  2415. "branch-alias": {
  2416. "dev-master": "4.3-dev"
  2417. }
  2418. },
  2419. "autoload": {
  2420. "files": [
  2421. "Resources/functions/dump.php"
  2422. ],
  2423. "psr-4": {
  2424. "Symfony\\Component\\VarDumper\\": ""
  2425. },
  2426. "exclude-from-classmap": [
  2427. "/Tests/"
  2428. ]
  2429. },
  2430. "notification-url": "https://packagist.org/downloads/",
  2431. "license": [
  2432. "MIT"
  2433. ],
  2434. "authors": [
  2435. {
  2436. "name": "Nicolas Grekas",
  2437. "email": "p@tchwork.com"
  2438. },
  2439. {
  2440. "name": "Symfony Community",
  2441. "homepage": "https://symfony.com/contributors"
  2442. }
  2443. ],
  2444. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2445. "homepage": "https://symfony.com",
  2446. "keywords": [
  2447. "debug",
  2448. "dump"
  2449. ],
  2450. "time": "2019-06-05T02:08:12+00:00"
  2451. },
  2452. {
  2453. "name": "topthink/framework",
  2454. "version": "v6.0.0",
  2455. "source": {
  2456. "type": "git",
  2457. "url": "https://github.com/top-think/framework.git",
  2458. "reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597"
  2459. },
  2460. "dist": {
  2461. "type": "zip",
  2462. "url": "https://api.github.com/repos/top-think/framework/zipball/79c555aab0313d1a33ddcdb3c395f2c47f37f597",
  2463. "reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597",
  2464. "shasum": "",
  2465. "mirrors": [
  2466. {
  2467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2468. "preferred": true
  2469. }
  2470. ]
  2471. },
  2472. "require": {
  2473. "ext-json": "*",
  2474. "ext-mbstring": "*",
  2475. "league/flysystem": "^1.0",
  2476. "league/flysystem-cached-adapter": "^1.0",
  2477. "opis/closure": "^3.1",
  2478. "php": ">=7.1.0",
  2479. "psr/container": "~1.0",
  2480. "psr/log": "~1.0",
  2481. "psr/simple-cache": "^1.0",
  2482. "topthink/think-helper": "^3.1.1",
  2483. "topthink/think-orm": "^2.0"
  2484. },
  2485. "require-dev": {
  2486. "mikey179/vfsstream": "^1.6",
  2487. "mockery/mockery": "^1.2",
  2488. "phpunit/phpunit": "^7.0"
  2489. },
  2490. "type": "library",
  2491. "autoload": {
  2492. "files": [],
  2493. "psr-4": {
  2494. "think\\": "src/think/"
  2495. }
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "Apache-2.0"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "liu21st",
  2504. "email": "liu21st@gmail.com"
  2505. },
  2506. {
  2507. "name": "yunwuxin",
  2508. "email": "448901948@qq.com"
  2509. }
  2510. ],
  2511. "description": "The ThinkPHP Framework.",
  2512. "homepage": "http://thinkphp.cn/",
  2513. "keywords": [
  2514. "framework",
  2515. "orm",
  2516. "thinkphp"
  2517. ],
  2518. "time": "2019-10-23T23:28:43+00:00"
  2519. },
  2520. {
  2521. "name": "topthink/think-captcha",
  2522. "version": "v3.0.1",
  2523. "source": {
  2524. "type": "git",
  2525. "url": "https://github.com/top-think/think-captcha.git",
  2526. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48"
  2527. },
  2528. "dist": {
  2529. "type": "zip",
  2530. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/9fc0c627d773f6a54a8dd142ebf358f746557a48",
  2531. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48",
  2532. "shasum": "",
  2533. "mirrors": [
  2534. {
  2535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2536. "preferred": true
  2537. }
  2538. ]
  2539. },
  2540. "require": {
  2541. "topthink/framework": "^6.0.0"
  2542. },
  2543. "type": "library",
  2544. "extra": {
  2545. "think": {
  2546. "services": [
  2547. "think\\captcha\\CaptchaService"
  2548. ]
  2549. }
  2550. },
  2551. "autoload": {
  2552. "psr-4": {
  2553. "think\\captcha\\": "src/"
  2554. },
  2555. "files": [
  2556. "src/helper.php"
  2557. ]
  2558. },
  2559. "notification-url": "https://packagist.org/downloads/",
  2560. "license": [
  2561. "Apache-2.0"
  2562. ],
  2563. "authors": [
  2564. {
  2565. "name": "yunwuxin",
  2566. "email": "448901948@qq.com"
  2567. }
  2568. ],
  2569. "description": "captcha package for thinkphp",
  2570. "time": "2019-06-06T07:16:01+00:00"
  2571. },
  2572. {
  2573. "name": "topthink/think-factory",
  2574. "version": "v1.0.1",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/top-think/think-factory.git",
  2578. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/top-think/think-factory/zipball/b8080a6472aae1cff47ceb8c30feec3c2835364b",
  2583. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b",
  2584. "shasum": "",
  2585. "mirrors": [
  2586. {
  2587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2588. "preferred": true
  2589. }
  2590. ]
  2591. },
  2592. "require": {
  2593. "topthink/framework": "^6.0.0",
  2594. "topthink/think-helper": "^3.0.0"
  2595. },
  2596. "type": "library",
  2597. "autoload": {
  2598. "psr-4": {
  2599. "think\\": "src"
  2600. }
  2601. },
  2602. "notification-url": "https://packagist.org/downloads/",
  2603. "license": [
  2604. "Apache-2.0"
  2605. ],
  2606. "authors": [
  2607. {
  2608. "name": "yunwuxin",
  2609. "email": "448901948@qq.com"
  2610. }
  2611. ],
  2612. "abandoned": true,
  2613. "time": "2019-04-15T06:55:28+00:00"
  2614. },
  2615. {
  2616. "name": "topthink/think-helper",
  2617. "version": "v3.1.3",
  2618. "source": {
  2619. "type": "git",
  2620. "url": "https://github.com/top-think/think-helper.git",
  2621. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4"
  2622. },
  2623. "dist": {
  2624. "type": "zip",
  2625. "url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  2626. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  2627. "shasum": "",
  2628. "mirrors": [
  2629. {
  2630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2631. "preferred": true
  2632. }
  2633. ]
  2634. },
  2635. "require": {
  2636. "php": ">=7.1.0"
  2637. },
  2638. "type": "library",
  2639. "autoload": {
  2640. "psr-4": {
  2641. "think\\": "src"
  2642. },
  2643. "files": [
  2644. "src/helper.php"
  2645. ]
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "Apache-2.0"
  2650. ],
  2651. "authors": [
  2652. {
  2653. "name": "yunwuxin",
  2654. "email": "448901948@qq.com"
  2655. }
  2656. ],
  2657. "description": "The ThinkPHP6 Helper Package",
  2658. "time": "2019-09-30T02:36:48+00:00"
  2659. },
  2660. {
  2661. "name": "topthink/think-image",
  2662. "version": "v1.0.7",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://github.com/top-think/think-image.git",
  2666. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  2671. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  2672. "shasum": "",
  2673. "mirrors": [
  2674. {
  2675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2676. "preferred": true
  2677. }
  2678. ]
  2679. },
  2680. "require": {
  2681. "ext-gd": "*"
  2682. },
  2683. "require-dev": {
  2684. "phpunit/phpunit": "4.8.*",
  2685. "topthink/framework": "^5.0"
  2686. },
  2687. "type": "library",
  2688. "autoload": {
  2689. "psr-4": {
  2690. "think\\": "src"
  2691. }
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "Apache-2.0"
  2696. ],
  2697. "authors": [
  2698. {
  2699. "name": "yunwuxin",
  2700. "email": "448901948@qq.com"
  2701. }
  2702. ],
  2703. "description": "The ThinkPHP5 Image Package",
  2704. "time": "2016-09-29T06:05:43+00:00"
  2705. },
  2706. {
  2707. "name": "topthink/think-multi-app",
  2708. "version": "v1.0.11",
  2709. "source": {
  2710. "type": "git",
  2711. "url": "https://github.com/top-think/think-multi-app.git",
  2712. "reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9"
  2713. },
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/215f4a6bb88e53ad41b448c61957336eb55ce6f9",
  2717. "reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9",
  2718. "shasum": "",
  2719. "mirrors": [
  2720. {
  2721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2722. "preferred": true
  2723. }
  2724. ]
  2725. },
  2726. "require": {
  2727. "php": ">=7.1.0",
  2728. "topthink/framework": "^6.0.0"
  2729. },
  2730. "type": "library",
  2731. "extra": {
  2732. "think": {
  2733. "services": [
  2734. "think\\app\\Service"
  2735. ]
  2736. }
  2737. },
  2738. "autoload": {
  2739. "psr-4": {
  2740. "think\\app\\": "src"
  2741. }
  2742. },
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "Apache-2.0"
  2746. ],
  2747. "authors": [
  2748. {
  2749. "name": "liu21st",
  2750. "email": "liu21st@gmail.com"
  2751. }
  2752. ],
  2753. "description": "thinkphp6 multi app support",
  2754. "time": "2019-10-29T06:34:59+00:00"
  2755. },
  2756. {
  2757. "name": "topthink/think-orm",
  2758. "version": "v2.0.27",
  2759. "source": {
  2760. "type": "git",
  2761. "url": "https://github.com/top-think/think-orm.git",
  2762. "reference": "02affaaccade2cdd8bbb2d2f5d15e46113e6eb50"
  2763. },
  2764. "dist": {
  2765. "type": "zip",
  2766. "url": "https://api.github.com/repos/top-think/think-orm/zipball/02affaaccade2cdd8bbb2d2f5d15e46113e6eb50",
  2767. "reference": "02affaaccade2cdd8bbb2d2f5d15e46113e6eb50",
  2768. "shasum": "",
  2769. "mirrors": [
  2770. {
  2771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2772. "preferred": true
  2773. }
  2774. ]
  2775. },
  2776. "require": {
  2777. "ext-json": "*",
  2778. "php": ">=7.1.0",
  2779. "psr/log": "~1.0",
  2780. "psr/simple-cache": "^1.0",
  2781. "topthink/think-helper": "^3.1"
  2782. },
  2783. "type": "library",
  2784. "autoload": {
  2785. "psr-4": {
  2786. "think\\": "src"
  2787. },
  2788. "files": []
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "Apache-2.0"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "liu21st",
  2797. "email": "liu21st@gmail.com"
  2798. }
  2799. ],
  2800. "description": "think orm",
  2801. "keywords": [
  2802. "database",
  2803. "orm"
  2804. ],
  2805. "time": "2019-10-23T02:16:50+00:00"
  2806. },
  2807. {
  2808. "name": "topthink/think-queue",
  2809. "version": "v3.0.2",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/top-think/think-queue.git",
  2813. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/top-think/think-queue/zipball/c34b983abce9427fca7e30ac983b75041f436ad0",
  2818. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0",
  2819. "shasum": "",
  2820. "mirrors": [
  2821. {
  2822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2823. "preferred": true
  2824. }
  2825. ]
  2826. },
  2827. "require": {
  2828. "nesbot/carbon": "^2.16",
  2829. "symfony/process": "^4.2",
  2830. "topthink/framework": "^6.0.0",
  2831. "topthink/think-factory": "^1.0.0",
  2832. "topthink/think-helper": "^3.0.4"
  2833. },
  2834. "require-dev": {
  2835. "mockery/mockery": "^1.2",
  2836. "phpunit/phpunit": "^6.2",
  2837. "topthink/think-migration": "^3.0.0"
  2838. },
  2839. "type": "library",
  2840. "extra": {
  2841. "think": {
  2842. "services": [
  2843. "think\\queue\\Service"
  2844. ],
  2845. "config": {
  2846. "queue": "src/config.php"
  2847. }
  2848. }
  2849. },
  2850. "autoload": {
  2851. "psr-4": {
  2852. "think\\": "src"
  2853. },
  2854. "files": [
  2855. "src/common.php"
  2856. ]
  2857. },
  2858. "notification-url": "https://packagist.org/downloads/",
  2859. "license": [
  2860. "Apache-2.0"
  2861. ],
  2862. "authors": [
  2863. {
  2864. "name": "yunwuxin",
  2865. "email": "448901948@qq.com"
  2866. }
  2867. ],
  2868. "description": "The ThinkPHP5 Queue Package",
  2869. "time": "2019-06-06T10:41:07+00:00"
  2870. },
  2871. {
  2872. "name": "topthink/think-template",
  2873. "version": "v2.0.7",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/top-think/think-template.git",
  2877. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  2882. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  2883. "shasum": "",
  2884. "mirrors": [
  2885. {
  2886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2887. "preferred": true
  2888. }
  2889. ]
  2890. },
  2891. "require": {
  2892. "php": ">=7.1.0",
  2893. "psr/simple-cache": "^1.0"
  2894. },
  2895. "type": "library",
  2896. "autoload": {
  2897. "psr-4": {
  2898. "think\\": "src"
  2899. }
  2900. },
  2901. "notification-url": "https://packagist.org/downloads/",
  2902. "license": [
  2903. "Apache-2.0"
  2904. ],
  2905. "authors": [
  2906. {
  2907. "name": "liu21st",
  2908. "email": "liu21st@gmail.com"
  2909. }
  2910. ],
  2911. "description": "the php template engine",
  2912. "time": "2019-09-20T15:31:04+00:00"
  2913. },
  2914. {
  2915. "name": "topthink/think-view",
  2916. "version": "v1.0.13",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/top-think/think-view.git",
  2920. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/top-think/think-view/zipball/90803b73f781db5d42619082c4597afc58b2d4c5",
  2925. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5",
  2926. "shasum": "",
  2927. "mirrors": [
  2928. {
  2929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2930. "preferred": true
  2931. }
  2932. ]
  2933. },
  2934. "require": {
  2935. "php": ">=7.1.0",
  2936. "topthink/think-template": "^2.0"
  2937. },
  2938. "type": "library",
  2939. "autoload": {
  2940. "psr-4": {
  2941. "think\\view\\driver\\": "src"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "Apache-2.0"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "liu21st",
  2951. "email": "liu21st@gmail.com"
  2952. }
  2953. ],
  2954. "description": "thinkphp template driver",
  2955. "time": "2019-10-07T12:23:10+00:00"
  2956. },
  2957. {
  2958. "name": "workerman/channel",
  2959. "version": "v1.0.5",
  2960. "source": {
  2961. "type": "git",
  2962. "url": "https://github.com/walkor/Channel.git",
  2963. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50"
  2964. },
  2965. "dist": {
  2966. "type": "zip",
  2967. "url": "https://api.github.com/repos/walkor/Channel/zipball/0836a9a413c6e8425ee36307d95e2e49cc380f50",
  2968. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50",
  2969. "shasum": "",
  2970. "mirrors": [
  2971. {
  2972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2973. "preferred": true
  2974. }
  2975. ]
  2976. },
  2977. "require": {
  2978. "workerman/workerman": ">=3.3.0"
  2979. },
  2980. "type": "library",
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Channel\\": "./src"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "homepage": "http://www.workerman.net",
  2991. "time": "2018-07-02T02:42:37+00:00"
  2992. },
  2993. {
  2994. "name": "workerman/workerman",
  2995. "version": "v3.5.19",
  2996. "source": {
  2997. "type": "git",
  2998. "url": "https://github.com/walkor/Workerman.git",
  2999. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367"
  3000. },
  3001. "dist": {
  3002. "type": "zip",
  3003. "url": "https://api.github.com/repos/walkor/Workerman/zipball/4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  3004. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  3005. "shasum": "",
  3006. "mirrors": [
  3007. {
  3008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3009. "preferred": true
  3010. }
  3011. ]
  3012. },
  3013. "require": {
  3014. "php": ">=5.3"
  3015. },
  3016. "suggest": {
  3017. "ext-event": "For better performance. "
  3018. },
  3019. "type": "library",
  3020. "autoload": {
  3021. "psr-4": {
  3022. "Workerman\\": "./"
  3023. }
  3024. },
  3025. "notification-url": "https://packagist.org/downloads/",
  3026. "license": [
  3027. "MIT"
  3028. ],
  3029. "authors": [
  3030. {
  3031. "name": "walkor",
  3032. "email": "walkor@workerman.net",
  3033. "homepage": "http://www.workerman.net",
  3034. "role": "Developer"
  3035. }
  3036. ],
  3037. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  3038. "homepage": "http://www.workerman.net",
  3039. "keywords": [
  3040. "asynchronous",
  3041. "event-loop"
  3042. ],
  3043. "time": "2019-04-05T10:35:31+00:00"
  3044. },
  3045. {
  3046. "name": "xaboy/form-builder",
  3047. "version": "1.2.10",
  3048. "source": {
  3049. "type": "git",
  3050. "url": "https://github.com/xaboy/form-builder.git",
  3051. "reference": "198c5f066499eef8b005f5d504fcb6120fa3ac04"
  3052. },
  3053. "dist": {
  3054. "type": "zip",
  3055. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/198c5f066499eef8b005f5d504fcb6120fa3ac04",
  3056. "reference": "198c5f066499eef8b005f5d504fcb6120fa3ac04",
  3057. "shasum": "",
  3058. "mirrors": [
  3059. {
  3060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3061. "preferred": true
  3062. }
  3063. ]
  3064. },
  3065. "require": {
  3066. "ext-json": "*",
  3067. "php": ">=5.4.0"
  3068. },
  3069. "type": "library",
  3070. "autoload": {
  3071. "psr-4": {
  3072. "FormBuilder\\": "./src/"
  3073. }
  3074. },
  3075. "notification-url": "https://packagist.org/downloads/",
  3076. "license": [
  3077. "MIT"
  3078. ],
  3079. "authors": [
  3080. {
  3081. "name": "xaboy",
  3082. "email": "xaboy2005@qq.com"
  3083. }
  3084. ],
  3085. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  3086. "homepage": "https://github.com/xaboy/form-builder",
  3087. "time": "2019-08-26T09:34:17+00:00"
  3088. }
  3089. ],
  3090. "packages-dev": [],
  3091. "aliases": [],
  3092. "minimum-stability": "stable",
  3093. "stability-flags": [],
  3094. "prefer-stable": false,
  3095. "prefer-lowest": false,
  3096. "platform": {
  3097. "php": ">=7.1.0",
  3098. "ext-json": "*",
  3099. "ext-curl": "*",
  3100. "ext-bcmath": "*",
  3101. "ext-mbstring": "*"
  3102. },
  3103. "platform-dev": [],
  3104. "plugin-api-version": "2.2.0"
  3105. }