composer.lock 127 KB

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