composer.lock 118 KB

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