installed.json 100 KB

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