composer.lock 109 KB

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