installed.json 113 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162
  1. {
  2. "packages": [
  3. {
  4. "name": "aliyuncs/oss-sdk-php",
  5. "version": "v2.6.0",
  6. "version_normalized": "2.6.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  10. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  15. "reference": "572d0f8e099e8630ae7139ed3fdedb926c7a760f",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": ">=5.3"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "*",
  23. "satooshi/php-coveralls": "*"
  24. },
  25. "time": "2022-08-03T08:06:01+00:00",
  26. "type": "library",
  27. "installation-source": "dist",
  28. "autoload": {
  29. "psr-4": {
  30. "OSS\\": "src/OSS"
  31. }
  32. },
  33. "notification-url": "https://packagist.org/downloads/",
  34. "license": [
  35. "MIT"
  36. ],
  37. "authors": [
  38. {
  39. "name": "Aliyuncs",
  40. "homepage": "http://www.aliyun.com"
  41. }
  42. ],
  43. "description": "Aliyun OSS SDK for PHP",
  44. "homepage": "http://www.aliyun.com/product/oss/",
  45. "support": {
  46. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  47. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.6.0"
  48. },
  49. "install-path": "../aliyuncs/oss-sdk-php"
  50. },
  51. {
  52. "name": "doctrine/annotations",
  53. "version": "1.14.3",
  54. "version_normalized": "1.14.3.0",
  55. "source": {
  56. "type": "git",
  57. "url": "https://github.com/doctrine/annotations.git",
  58. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  59. },
  60. "dist": {
  61. "type": "zip",
  62. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  63. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  64. "shasum": ""
  65. },
  66. "require": {
  67. "doctrine/lexer": "^1 || ^2",
  68. "ext-tokenizer": "*",
  69. "php": "^7.1 || ^8.0",
  70. "psr/cache": "^1 || ^2 || ^3"
  71. },
  72. "require-dev": {
  73. "doctrine/cache": "^1.11 || ^2.0",
  74. "doctrine/coding-standard": "^9 || ^10",
  75. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  76. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  77. "symfony/cache": "^4.4 || ^5.4 || ^6",
  78. "vimeo/psalm": "^4.10"
  79. },
  80. "suggest": {
  81. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  82. },
  83. "time": "2023-02-01T09:20:38+00:00",
  84. "type": "library",
  85. "installation-source": "dist",
  86. "autoload": {
  87. "psr-4": {
  88. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  89. }
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "MIT"
  94. ],
  95. "authors": [
  96. {
  97. "name": "Guilherme Blanco",
  98. "email": "guilhermeblanco@gmail.com"
  99. },
  100. {
  101. "name": "Roman Borschel",
  102. "email": "roman@code-factory.org"
  103. },
  104. {
  105. "name": "Benjamin Eberlei",
  106. "email": "kontakt@beberlei.de"
  107. },
  108. {
  109. "name": "Jonathan Wage",
  110. "email": "jonwage@gmail.com"
  111. },
  112. {
  113. "name": "Johannes Schmitt",
  114. "email": "schmittjoh@gmail.com"
  115. }
  116. ],
  117. "description": "Docblock Annotations Parser",
  118. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  119. "keywords": [
  120. "annotations",
  121. "docblock",
  122. "parser"
  123. ],
  124. "support": {
  125. "issues": "https://github.com/doctrine/annotations/issues",
  126. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  127. },
  128. "install-path": "../doctrine/annotations"
  129. },
  130. {
  131. "name": "doctrine/deprecations",
  132. "version": "v1.0.0",
  133. "version_normalized": "1.0.0.0",
  134. "source": {
  135. "type": "git",
  136. "url": "https://github.com/doctrine/deprecations.git",
  137. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  138. },
  139. "dist": {
  140. "type": "zip",
  141. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  142. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  143. "shasum": ""
  144. },
  145. "require": {
  146. "php": "^7.1|^8.0"
  147. },
  148. "require-dev": {
  149. "doctrine/coding-standard": "^9",
  150. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  151. "psr/log": "^1|^2|^3"
  152. },
  153. "suggest": {
  154. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  155. },
  156. "time": "2022-05-02T15:47:09+00:00",
  157. "type": "library",
  158. "installation-source": "dist",
  159. "autoload": {
  160. "psr-4": {
  161. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  169. "homepage": "https://www.doctrine-project.org/",
  170. "support": {
  171. "issues": "https://github.com/doctrine/deprecations/issues",
  172. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  173. },
  174. "install-path": "../doctrine/deprecations"
  175. },
  176. {
  177. "name": "doctrine/lexer",
  178. "version": "2.1.0",
  179. "version_normalized": "2.1.0.0",
  180. "source": {
  181. "type": "git",
  182. "url": "https://github.com/doctrine/lexer.git",
  183. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  184. },
  185. "dist": {
  186. "type": "zip",
  187. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  188. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  189. "shasum": ""
  190. },
  191. "require": {
  192. "doctrine/deprecations": "^1.0",
  193. "php": "^7.1 || ^8.0"
  194. },
  195. "require-dev": {
  196. "doctrine/coding-standard": "^9 || ^10",
  197. "phpstan/phpstan": "^1.3",
  198. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  199. "psalm/plugin-phpunit": "^0.18.3",
  200. "vimeo/psalm": "^4.11 || ^5.0"
  201. },
  202. "time": "2022-12-14T08:49:07+00:00",
  203. "type": "library",
  204. "installation-source": "dist",
  205. "autoload": {
  206. "psr-4": {
  207. "Doctrine\\Common\\Lexer\\": "src"
  208. }
  209. },
  210. "notification-url": "https://packagist.org/downloads/",
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "Guilherme Blanco",
  217. "email": "guilhermeblanco@gmail.com"
  218. },
  219. {
  220. "name": "Roman Borschel",
  221. "email": "roman@code-factory.org"
  222. },
  223. {
  224. "name": "Johannes Schmitt",
  225. "email": "schmittjoh@gmail.com"
  226. }
  227. ],
  228. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  229. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  230. "keywords": [
  231. "annotations",
  232. "docblock",
  233. "lexer",
  234. "parser",
  235. "php"
  236. ],
  237. "support": {
  238. "issues": "https://github.com/doctrine/lexer/issues",
  239. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  240. },
  241. "funding": [
  242. {
  243. "url": "https://www.doctrine-project.org/sponsorship.html",
  244. "type": "custom"
  245. },
  246. {
  247. "url": "https://www.patreon.com/phpdoctrine",
  248. "type": "patreon"
  249. },
  250. {
  251. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  252. "type": "tidelift"
  253. }
  254. ],
  255. "install-path": "../doctrine/lexer"
  256. },
  257. {
  258. "name": "elasticsearch/elasticsearch",
  259. "version": "v7.17.2",
  260. "version_normalized": "7.17.2.0",
  261. "source": {
  262. "type": "git",
  263. "url": "git@github.com:elastic/elasticsearch-php.git",
  264. "reference": "2d302233f2bb0926812d82823bb820d405e130fc"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/2d302233f2bb0926812d82823bb820d405e130fc",
  269. "reference": "2d302233f2bb0926812d82823bb820d405e130fc",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "ext-json": ">=1.3.7",
  274. "ezimuel/ringphp": "^1.1.2",
  275. "php": "^7.3 || ^8.0",
  276. "psr/log": "^1|^2|^3"
  277. },
  278. "require-dev": {
  279. "ext-yaml": "*",
  280. "ext-zip": "*",
  281. "mockery/mockery": "^1.2",
  282. "phpstan/phpstan": "^1.10",
  283. "phpunit/phpunit": "^9.3",
  284. "squizlabs/php_codesniffer": "^3.4",
  285. "symfony/finder": "~4.0"
  286. },
  287. "suggest": {
  288. "ext-curl": "*",
  289. "monolog/monolog": "Allows for client-level logging and tracing"
  290. },
  291. "time": "2023-04-21T15:31:12+00:00",
  292. "type": "library",
  293. "installation-source": "dist",
  294. "autoload": {
  295. "files": [
  296. "src/autoload.php"
  297. ],
  298. "psr-4": {
  299. "Elasticsearch\\": "src/Elasticsearch/"
  300. }
  301. },
  302. "notification-url": "https://packagist.org/downloads/",
  303. "license": [
  304. "Apache-2.0",
  305. "LGPL-2.1-only"
  306. ],
  307. "authors": [
  308. {
  309. "name": "Zachary Tong"
  310. },
  311. {
  312. "name": "Enrico Zimuel"
  313. }
  314. ],
  315. "description": "PHP Client for Elasticsearch",
  316. "keywords": [
  317. "client",
  318. "elasticsearch",
  319. "search"
  320. ],
  321. "install-path": "../elasticsearch/elasticsearch"
  322. },
  323. {
  324. "name": "ezimuel/guzzlestreams",
  325. "version": "3.1.0",
  326. "version_normalized": "3.1.0.0",
  327. "source": {
  328. "type": "git",
  329. "url": "https://github.com/ezimuel/guzzlestreams.git",
  330. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997"
  331. },
  332. "dist": {
  333. "type": "zip",
  334. "url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  335. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  336. "shasum": ""
  337. },
  338. "require": {
  339. "php": ">=5.4.0"
  340. },
  341. "require-dev": {
  342. "phpunit/phpunit": "~9.0"
  343. },
  344. "time": "2022-10-24T12:58:50+00:00",
  345. "type": "library",
  346. "extra": {
  347. "branch-alias": {
  348. "dev-master": "3.0-dev"
  349. }
  350. },
  351. "installation-source": "dist",
  352. "autoload": {
  353. "psr-4": {
  354. "GuzzleHttp\\Stream\\": "src/"
  355. }
  356. },
  357. "notification-url": "https://packagist.org/downloads/",
  358. "license": [
  359. "MIT"
  360. ],
  361. "authors": [
  362. {
  363. "name": "Michael Dowling",
  364. "email": "mtdowling@gmail.com",
  365. "homepage": "https://github.com/mtdowling"
  366. }
  367. ],
  368. "description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
  369. "homepage": "http://guzzlephp.org/",
  370. "keywords": [
  371. "Guzzle",
  372. "stream"
  373. ],
  374. "support": {
  375. "source": "https://github.com/ezimuel/guzzlestreams/tree/3.1.0"
  376. },
  377. "install-path": "../ezimuel/guzzlestreams"
  378. },
  379. {
  380. "name": "ezimuel/ringphp",
  381. "version": "1.2.2",
  382. "version_normalized": "1.2.2.0",
  383. "source": {
  384. "type": "git",
  385. "url": "https://github.com/ezimuel/ringphp.git",
  386. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4"
  387. },
  388. "dist": {
  389. "type": "zip",
  390. "url": "https://api.github.com/repos/ezimuel/ringphp/zipball/7887fc8488013065f72f977dcb281994f5fde9f4",
  391. "reference": "7887fc8488013065f72f977dcb281994f5fde9f4",
  392. "shasum": ""
  393. },
  394. "require": {
  395. "ezimuel/guzzlestreams": "^3.0.1",
  396. "php": ">=5.4.0",
  397. "react/promise": "~2.0"
  398. },
  399. "replace": {
  400. "guzzlehttp/ringphp": "self.version"
  401. },
  402. "require-dev": {
  403. "ext-curl": "*",
  404. "phpunit/phpunit": "~9.0"
  405. },
  406. "suggest": {
  407. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  408. },
  409. "time": "2022-12-07T11:28:53+00:00",
  410. "type": "library",
  411. "extra": {
  412. "branch-alias": {
  413. "dev-master": "1.1-dev"
  414. }
  415. },
  416. "installation-source": "dist",
  417. "autoload": {
  418. "psr-4": {
  419. "GuzzleHttp\\Ring\\": "src/"
  420. }
  421. },
  422. "notification-url": "https://packagist.org/downloads/",
  423. "license": [
  424. "MIT"
  425. ],
  426. "authors": [
  427. {
  428. "name": "Michael Dowling",
  429. "email": "mtdowling@gmail.com",
  430. "homepage": "https://github.com/mtdowling"
  431. }
  432. ],
  433. "description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
  434. "support": {
  435. "source": "https://github.com/ezimuel/ringphp/tree/1.2.2"
  436. },
  437. "install-path": "../ezimuel/ringphp"
  438. },
  439. {
  440. "name": "guzzlehttp/command",
  441. "version": "1.2.3",
  442. "version_normalized": "1.2.3.0",
  443. "source": {
  444. "type": "git",
  445. "url": "https://github.com/guzzle/command.git",
  446. "reference": "3c9383aaf2e39fa8d39375ae37b95b55964aaef4"
  447. },
  448. "dist": {
  449. "type": "zip",
  450. "url": "https://api.github.com/repos/guzzle/command/zipball/3c9383aaf2e39fa8d39375ae37b95b55964aaef4",
  451. "reference": "3c9383aaf2e39fa8d39375ae37b95b55964aaef4",
  452. "shasum": ""
  453. },
  454. "require": {
  455. "guzzlehttp/guzzle": "^7.5.1",
  456. "guzzlehttp/promises": "^1.5.2",
  457. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  458. "php": "^7.2.5 || ^8.0"
  459. },
  460. "require-dev": {
  461. "phpunit/phpunit": "^8.5.19"
  462. },
  463. "time": "2023-04-18T08:30:31+00:00",
  464. "type": "library",
  465. "installation-source": "dist",
  466. "autoload": {
  467. "psr-4": {
  468. "GuzzleHttp\\Command\\": "src/"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Graham Campbell",
  478. "email": "hello@gjcampbell.co.uk",
  479. "homepage": "https://github.com/GrahamCampbell"
  480. },
  481. {
  482. "name": "Michael Dowling",
  483. "email": "mtdowling@gmail.com",
  484. "homepage": "https://github.com/mtdowling"
  485. },
  486. {
  487. "name": "Jeremy Lindblom",
  488. "email": "jeremeamia@gmail.com",
  489. "homepage": "https://github.com/jeremeamia"
  490. },
  491. {
  492. "name": "Tobias Nyholm",
  493. "email": "tobias.nyholm@gmail.com",
  494. "homepage": "https://github.com/Nyholm"
  495. }
  496. ],
  497. "description": "Provides the foundation for building command-based web service clients",
  498. "support": {
  499. "issues": "https://github.com/guzzle/command/issues",
  500. "source": "https://github.com/guzzle/command/tree/1.2.3"
  501. },
  502. "funding": [
  503. {
  504. "url": "https://github.com/GrahamCampbell",
  505. "type": "github"
  506. },
  507. {
  508. "url": "https://github.com/Nyholm",
  509. "type": "github"
  510. },
  511. {
  512. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/command",
  513. "type": "tidelift"
  514. }
  515. ],
  516. "install-path": "../guzzlehttp/command"
  517. },
  518. {
  519. "name": "guzzlehttp/guzzle",
  520. "version": "7.5.1",
  521. "version_normalized": "7.5.1.0",
  522. "source": {
  523. "type": "git",
  524. "url": "https://github.com/guzzle/guzzle.git",
  525. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9"
  526. },
  527. "dist": {
  528. "type": "zip",
  529. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  530. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  531. "shasum": ""
  532. },
  533. "require": {
  534. "ext-json": "*",
  535. "guzzlehttp/promises": "^1.5",
  536. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  537. "php": "^7.2.5 || ^8.0",
  538. "psr/http-client": "^1.0",
  539. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  540. },
  541. "provide": {
  542. "psr/http-client-implementation": "1.0"
  543. },
  544. "require-dev": {
  545. "bamarni/composer-bin-plugin": "^1.8.1",
  546. "ext-curl": "*",
  547. "php-http/client-integration-tests": "^3.0",
  548. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  549. "psr/log": "^1.1 || ^2.0 || ^3.0"
  550. },
  551. "suggest": {
  552. "ext-curl": "Required for CURL handler support",
  553. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  554. "psr/log": "Required for using the Log middleware"
  555. },
  556. "time": "2023-04-17T16:30:08+00:00",
  557. "type": "library",
  558. "extra": {
  559. "bamarni-bin": {
  560. "bin-links": true,
  561. "forward-command": false
  562. },
  563. "branch-alias": {
  564. "dev-master": "7.5-dev"
  565. }
  566. },
  567. "installation-source": "dist",
  568. "autoload": {
  569. "files": [
  570. "src/functions_include.php"
  571. ],
  572. "psr-4": {
  573. "GuzzleHttp\\": "src/"
  574. }
  575. },
  576. "notification-url": "https://packagist.org/downloads/",
  577. "license": [
  578. "MIT"
  579. ],
  580. "authors": [
  581. {
  582. "name": "Graham Campbell",
  583. "email": "hello@gjcampbell.co.uk",
  584. "homepage": "https://github.com/GrahamCampbell"
  585. },
  586. {
  587. "name": "Michael Dowling",
  588. "email": "mtdowling@gmail.com",
  589. "homepage": "https://github.com/mtdowling"
  590. },
  591. {
  592. "name": "Jeremy Lindblom",
  593. "email": "jeremeamia@gmail.com",
  594. "homepage": "https://github.com/jeremeamia"
  595. },
  596. {
  597. "name": "George Mponos",
  598. "email": "gmponos@gmail.com",
  599. "homepage": "https://github.com/gmponos"
  600. },
  601. {
  602. "name": "Tobias Nyholm",
  603. "email": "tobias.nyholm@gmail.com",
  604. "homepage": "https://github.com/Nyholm"
  605. },
  606. {
  607. "name": "Márk Sági-Kazár",
  608. "email": "mark.sagikazar@gmail.com",
  609. "homepage": "https://github.com/sagikazarmark"
  610. },
  611. {
  612. "name": "Tobias Schultze",
  613. "email": "webmaster@tubo-world.de",
  614. "homepage": "https://github.com/Tobion"
  615. }
  616. ],
  617. "description": "Guzzle is a PHP HTTP client library",
  618. "keywords": [
  619. "client",
  620. "curl",
  621. "framework",
  622. "http",
  623. "http client",
  624. "psr-18",
  625. "psr-7",
  626. "rest",
  627. "web service"
  628. ],
  629. "support": {
  630. "issues": "https://github.com/guzzle/guzzle/issues",
  631. "source": "https://github.com/guzzle/guzzle/tree/7.5.1"
  632. },
  633. "funding": [
  634. {
  635. "url": "https://github.com/GrahamCampbell",
  636. "type": "github"
  637. },
  638. {
  639. "url": "https://github.com/Nyholm",
  640. "type": "github"
  641. },
  642. {
  643. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  644. "type": "tidelift"
  645. }
  646. ],
  647. "install-path": "../guzzlehttp/guzzle"
  648. },
  649. {
  650. "name": "guzzlehttp/guzzle-services",
  651. "version": "1.3.2",
  652. "version_normalized": "1.3.2.0",
  653. "source": {
  654. "type": "git",
  655. "url": "https://github.com/guzzle/guzzle-services.git",
  656. "reference": "4989d902dd4e0411b320e851c46f3c94d652d891"
  657. },
  658. "dist": {
  659. "type": "zip",
  660. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/4989d902dd4e0411b320e851c46f3c94d652d891",
  661. "reference": "4989d902dd4e0411b320e851c46f3c94d652d891",
  662. "shasum": ""
  663. },
  664. "require": {
  665. "guzzlehttp/command": "^1.2.2",
  666. "guzzlehttp/guzzle": "^7.4.1",
  667. "guzzlehttp/psr7": "^1.8.3 || ^2.1",
  668. "guzzlehttp/uri-template": "^1.0.1",
  669. "php": "^7.2.5 || ^8.0"
  670. },
  671. "require-dev": {
  672. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  673. },
  674. "suggest": {
  675. "gimler/guzzle-description-loader": "^0.0.4"
  676. },
  677. "time": "2022-03-03T11:21:34+00:00",
  678. "type": "library",
  679. "extra": {
  680. "branch-alias": {
  681. "dev-master": "1.3-dev"
  682. }
  683. },
  684. "installation-source": "dist",
  685. "autoload": {
  686. "psr-4": {
  687. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Graham Campbell",
  697. "email": "hello@gjcampbell.co.uk",
  698. "homepage": "https://github.com/GrahamCampbell"
  699. },
  700. {
  701. "name": "Michael Dowling",
  702. "email": "mtdowling@gmail.com",
  703. "homepage": "https://github.com/mtdowling"
  704. },
  705. {
  706. "name": "Stefano Kowalke",
  707. "email": "blueduck@mail.org",
  708. "homepage": "https://github.com/Konafets"
  709. },
  710. {
  711. "name": "Tobias Nyholm",
  712. "email": "tobias.nyholm@gmail.com",
  713. "homepage": "https://github.com/Nyholm"
  714. }
  715. ],
  716. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  717. "support": {
  718. "issues": "https://github.com/guzzle/guzzle-services/issues",
  719. "source": "https://github.com/guzzle/guzzle-services/tree/1.3.2"
  720. },
  721. "funding": [
  722. {
  723. "url": "https://github.com/GrahamCampbell",
  724. "type": "github"
  725. },
  726. {
  727. "url": "https://github.com/Nyholm",
  728. "type": "github"
  729. },
  730. {
  731. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle-services",
  732. "type": "tidelift"
  733. }
  734. ],
  735. "install-path": "../guzzlehttp/guzzle-services"
  736. },
  737. {
  738. "name": "guzzlehttp/promises",
  739. "version": "1.5.2",
  740. "version_normalized": "1.5.2.0",
  741. "source": {
  742. "type": "git",
  743. "url": "https://github.com/guzzle/promises.git",
  744. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  745. },
  746. "dist": {
  747. "type": "zip",
  748. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  749. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  750. "shasum": ""
  751. },
  752. "require": {
  753. "php": ">=5.5"
  754. },
  755. "require-dev": {
  756. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  757. },
  758. "time": "2022-08-28T14:55:35+00:00",
  759. "type": "library",
  760. "extra": {
  761. "branch-alias": {
  762. "dev-master": "1.5-dev"
  763. }
  764. },
  765. "installation-source": "dist",
  766. "autoload": {
  767. "files": [
  768. "src/functions_include.php"
  769. ],
  770. "psr-4": {
  771. "GuzzleHttp\\Promise\\": "src/"
  772. }
  773. },
  774. "notification-url": "https://packagist.org/downloads/",
  775. "license": [
  776. "MIT"
  777. ],
  778. "authors": [
  779. {
  780. "name": "Graham Campbell",
  781. "email": "hello@gjcampbell.co.uk",
  782. "homepage": "https://github.com/GrahamCampbell"
  783. },
  784. {
  785. "name": "Michael Dowling",
  786. "email": "mtdowling@gmail.com",
  787. "homepage": "https://github.com/mtdowling"
  788. },
  789. {
  790. "name": "Tobias Nyholm",
  791. "email": "tobias.nyholm@gmail.com",
  792. "homepage": "https://github.com/Nyholm"
  793. },
  794. {
  795. "name": "Tobias Schultze",
  796. "email": "webmaster@tubo-world.de",
  797. "homepage": "https://github.com/Tobion"
  798. }
  799. ],
  800. "description": "Guzzle promises library",
  801. "keywords": [
  802. "promise"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/guzzle/promises/issues",
  806. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://github.com/GrahamCampbell",
  811. "type": "github"
  812. },
  813. {
  814. "url": "https://github.com/Nyholm",
  815. "type": "github"
  816. },
  817. {
  818. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  819. "type": "tidelift"
  820. }
  821. ],
  822. "install-path": "../guzzlehttp/promises"
  823. },
  824. {
  825. "name": "guzzlehttp/psr7",
  826. "version": "2.4.5",
  827. "version_normalized": "2.4.5.0",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/guzzle/psr7.git",
  831. "reference": "0454e12ef0cd597ccd2adb036f7bda4e7fface66"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/guzzle/psr7/zipball/0454e12ef0cd597ccd2adb036f7bda4e7fface66",
  836. "reference": "0454e12ef0cd597ccd2adb036f7bda4e7fface66",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "php": "^7.2.5 || ^8.0",
  841. "psr/http-factory": "^1.0",
  842. "psr/http-message": "^1.0",
  843. "ralouphie/getallheaders": "^3.0"
  844. },
  845. "provide": {
  846. "psr/http-factory-implementation": "1.0",
  847. "psr/http-message-implementation": "1.0"
  848. },
  849. "require-dev": {
  850. "bamarni/composer-bin-plugin": "^1.8.1",
  851. "http-interop/http-factory-tests": "^0.9",
  852. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  853. },
  854. "suggest": {
  855. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  856. },
  857. "time": "2023-04-17T16:00:45+00:00",
  858. "type": "library",
  859. "extra": {
  860. "bamarni-bin": {
  861. "bin-links": true,
  862. "forward-command": false
  863. }
  864. },
  865. "installation-source": "dist",
  866. "autoload": {
  867. "psr-4": {
  868. "GuzzleHttp\\Psr7\\": "src/"
  869. }
  870. },
  871. "notification-url": "https://packagist.org/downloads/",
  872. "license": [
  873. "MIT"
  874. ],
  875. "authors": [
  876. {
  877. "name": "Graham Campbell",
  878. "email": "hello@gjcampbell.co.uk",
  879. "homepage": "https://github.com/GrahamCampbell"
  880. },
  881. {
  882. "name": "Michael Dowling",
  883. "email": "mtdowling@gmail.com",
  884. "homepage": "https://github.com/mtdowling"
  885. },
  886. {
  887. "name": "George Mponos",
  888. "email": "gmponos@gmail.com",
  889. "homepage": "https://github.com/gmponos"
  890. },
  891. {
  892. "name": "Tobias Nyholm",
  893. "email": "tobias.nyholm@gmail.com",
  894. "homepage": "https://github.com/Nyholm"
  895. },
  896. {
  897. "name": "Márk Sági-Kazár",
  898. "email": "mark.sagikazar@gmail.com",
  899. "homepage": "https://github.com/sagikazarmark"
  900. },
  901. {
  902. "name": "Tobias Schultze",
  903. "email": "webmaster@tubo-world.de",
  904. "homepage": "https://github.com/Tobion"
  905. },
  906. {
  907. "name": "Márk Sági-Kazár",
  908. "email": "mark.sagikazar@gmail.com",
  909. "homepage": "https://sagikazarmark.hu"
  910. }
  911. ],
  912. "description": "PSR-7 message implementation that also provides common utility methods",
  913. "keywords": [
  914. "http",
  915. "message",
  916. "psr-7",
  917. "request",
  918. "response",
  919. "stream",
  920. "uri",
  921. "url"
  922. ],
  923. "support": {
  924. "issues": "https://github.com/guzzle/psr7/issues",
  925. "source": "https://github.com/guzzle/psr7/tree/2.4.5"
  926. },
  927. "funding": [
  928. {
  929. "url": "https://github.com/GrahamCampbell",
  930. "type": "github"
  931. },
  932. {
  933. "url": "https://github.com/Nyholm",
  934. "type": "github"
  935. },
  936. {
  937. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  938. "type": "tidelift"
  939. }
  940. ],
  941. "install-path": "../guzzlehttp/psr7"
  942. },
  943. {
  944. "name": "guzzlehttp/uri-template",
  945. "version": "v1.0.1",
  946. "version_normalized": "1.0.1.0",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/guzzle/uri-template.git",
  950. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  955. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": "^7.2.5 || ^8.0",
  960. "symfony/polyfill-php80": "^1.17"
  961. },
  962. "require-dev": {
  963. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  964. "uri-template/tests": "1.0.0"
  965. },
  966. "time": "2021-10-07T12:57:01+00:00",
  967. "type": "library",
  968. "extra": {
  969. "branch-alias": {
  970. "dev-master": "1.0-dev"
  971. }
  972. },
  973. "installation-source": "dist",
  974. "autoload": {
  975. "psr-4": {
  976. "GuzzleHttp\\UriTemplate\\": "src"
  977. }
  978. },
  979. "notification-url": "https://packagist.org/downloads/",
  980. "license": [
  981. "MIT"
  982. ],
  983. "authors": [
  984. {
  985. "name": "Graham Campbell",
  986. "email": "hello@gjcampbell.co.uk",
  987. "homepage": "https://github.com/GrahamCampbell"
  988. },
  989. {
  990. "name": "Michael Dowling",
  991. "email": "mtdowling@gmail.com",
  992. "homepage": "https://github.com/mtdowling"
  993. },
  994. {
  995. "name": "George Mponos",
  996. "email": "gmponos@gmail.com",
  997. "homepage": "https://github.com/gmponos"
  998. },
  999. {
  1000. "name": "Tobias Nyholm",
  1001. "email": "tobias.nyholm@gmail.com",
  1002. "homepage": "https://github.com/Nyholm"
  1003. }
  1004. ],
  1005. "description": "A polyfill class for uri_template of PHP",
  1006. "keywords": [
  1007. "guzzlehttp",
  1008. "uri-template"
  1009. ],
  1010. "support": {
  1011. "issues": "https://github.com/guzzle/uri-template/issues",
  1012. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1013. },
  1014. "funding": [
  1015. {
  1016. "url": "https://github.com/GrahamCampbell",
  1017. "type": "github"
  1018. },
  1019. {
  1020. "url": "https://github.com/Nyholm",
  1021. "type": "github"
  1022. },
  1023. {
  1024. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1025. "type": "tidelift"
  1026. }
  1027. ],
  1028. "install-path": "../guzzlehttp/uri-template"
  1029. },
  1030. {
  1031. "name": "hg/apidoc",
  1032. "version": "v5.0.10",
  1033. "version_normalized": "5.0.10.0",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/HGthecode/apidoc-php.git",
  1037. "reference": "c8056cd7f02e0af35c1be060f9454194b846a094"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/HGthecode/apidoc-php/zipball/c8056cd7f02e0af35c1be060f9454194b846a094",
  1042. "reference": "c8056cd7f02e0af35c1be060f9454194b846a094",
  1043. "shasum": ""
  1044. },
  1045. "require": {
  1046. "doctrine/annotations": "^1 || ^2",
  1047. "doctrine/lexer": "^1 || ^2",
  1048. "php": "^7.1 || ^8.0"
  1049. },
  1050. "time": "2023-05-08T01:22:32+00:00",
  1051. "type": "library",
  1052. "extra": {
  1053. "laravel": {
  1054. "providers": [
  1055. "hg\\apidoc\\providers\\LaravelService"
  1056. ]
  1057. },
  1058. "think": {
  1059. "services": [
  1060. "hg\\apidoc\\providers\\ThinkPHPService"
  1061. ],
  1062. "config": {
  1063. "apidoc": "src/config.php"
  1064. }
  1065. },
  1066. "hyperf": {
  1067. "config": "hg\\apidoc\\ConfigProvider"
  1068. }
  1069. },
  1070. "installation-source": "dist",
  1071. "autoload": {
  1072. "psr-4": {
  1073. "hg\\apidoc\\": "src/"
  1074. }
  1075. },
  1076. "notification-url": "https://packagist.org/downloads/",
  1077. "license": [
  1078. "MIT"
  1079. ],
  1080. "authors": [
  1081. {
  1082. "name": "hg-code",
  1083. "email": "376401263@qq.com"
  1084. }
  1085. ],
  1086. "description": "根据注解生成API文档,兼容Laravel、ThinkPHP、Hyperf、Webman等框架;在线调试、Markdown文档、多应用/多版本、Mock数据、授权访问、接口生成器、代码生成器等众多实用功能",
  1087. "keywords": [
  1088. "apidoc",
  1089. "api文档",
  1090. "markdown",
  1091. "php接口文档",
  1092. "接口文档",
  1093. "注解",
  1094. "注释生成",
  1095. "自动生成api"
  1096. ],
  1097. "support": {
  1098. "issues": "https://github.com/HGthecode/apidoc-php/issues",
  1099. "source": "https://github.com/HGthecode/apidoc-php/tree/v5.0.10"
  1100. },
  1101. "install-path": "../hg/apidoc"
  1102. },
  1103. {
  1104. "name": "league/flysystem",
  1105. "version": "1.1.10",
  1106. "version_normalized": "1.1.10.0",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/thephpleague/flysystem.git",
  1110. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1115. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1116. "shasum": ""
  1117. },
  1118. "require": {
  1119. "ext-fileinfo": "*",
  1120. "league/mime-type-detection": "^1.3",
  1121. "php": "^7.2.5 || ^8.0"
  1122. },
  1123. "conflict": {
  1124. "league/flysystem-sftp": "<1.0.6"
  1125. },
  1126. "require-dev": {
  1127. "phpspec/prophecy": "^1.11.1",
  1128. "phpunit/phpunit": "^8.5.8"
  1129. },
  1130. "suggest": {
  1131. "ext-ftp": "Allows you to use FTP server storage",
  1132. "ext-openssl": "Allows you to use FTPS server storage",
  1133. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1134. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1135. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1136. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1137. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1138. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1139. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1140. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1141. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1142. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1143. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1144. },
  1145. "time": "2022-10-04T09:16:37+00:00",
  1146. "type": "library",
  1147. "extra": {
  1148. "branch-alias": {
  1149. "dev-master": "1.1-dev"
  1150. }
  1151. },
  1152. "installation-source": "dist",
  1153. "autoload": {
  1154. "psr-4": {
  1155. "League\\Flysystem\\": "src/"
  1156. }
  1157. },
  1158. "notification-url": "https://packagist.org/downloads/",
  1159. "license": [
  1160. "MIT"
  1161. ],
  1162. "authors": [
  1163. {
  1164. "name": "Frank de Jonge",
  1165. "email": "info@frenky.net"
  1166. }
  1167. ],
  1168. "description": "Filesystem abstraction: Many filesystems, one API.",
  1169. "keywords": [
  1170. "Cloud Files",
  1171. "WebDAV",
  1172. "abstraction",
  1173. "aws",
  1174. "cloud",
  1175. "copy.com",
  1176. "dropbox",
  1177. "file systems",
  1178. "files",
  1179. "filesystem",
  1180. "filesystems",
  1181. "ftp",
  1182. "rackspace",
  1183. "remote",
  1184. "s3",
  1185. "sftp",
  1186. "storage"
  1187. ],
  1188. "support": {
  1189. "issues": "https://github.com/thephpleague/flysystem/issues",
  1190. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1191. },
  1192. "funding": [
  1193. {
  1194. "url": "https://offset.earth/frankdejonge",
  1195. "type": "other"
  1196. }
  1197. ],
  1198. "install-path": "../league/flysystem"
  1199. },
  1200. {
  1201. "name": "league/flysystem-cached-adapter",
  1202. "version": "1.1.0",
  1203. "version_normalized": "1.1.0.0",
  1204. "source": {
  1205. "type": "git",
  1206. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1207. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  1208. },
  1209. "dist": {
  1210. "type": "zip",
  1211. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1212. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  1213. "shasum": ""
  1214. },
  1215. "require": {
  1216. "league/flysystem": "~1.0",
  1217. "psr/cache": "^1.0.0"
  1218. },
  1219. "require-dev": {
  1220. "mockery/mockery": "~0.9",
  1221. "phpspec/phpspec": "^3.4",
  1222. "phpunit/phpunit": "^5.7",
  1223. "predis/predis": "~1.0",
  1224. "tedivm/stash": "~0.12"
  1225. },
  1226. "suggest": {
  1227. "ext-phpredis": "Pure C implemented extension for PHP"
  1228. },
  1229. "time": "2020-07-25T15:56:04+00:00",
  1230. "type": "library",
  1231. "installation-source": "dist",
  1232. "autoload": {
  1233. "psr-4": {
  1234. "League\\Flysystem\\Cached\\": "src/"
  1235. }
  1236. },
  1237. "notification-url": "https://packagist.org/downloads/",
  1238. "license": [
  1239. "MIT"
  1240. ],
  1241. "authors": [
  1242. {
  1243. "name": "frankdejonge",
  1244. "email": "info@frenky.net"
  1245. }
  1246. ],
  1247. "description": "An adapter decorator to enable meta-data caching.",
  1248. "support": {
  1249. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  1250. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  1251. },
  1252. "install-path": "../league/flysystem-cached-adapter"
  1253. },
  1254. {
  1255. "name": "league/mime-type-detection",
  1256. "version": "1.11.0",
  1257. "version_normalized": "1.11.0.0",
  1258. "source": {
  1259. "type": "git",
  1260. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1261. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  1262. },
  1263. "dist": {
  1264. "type": "zip",
  1265. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1266. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  1267. "shasum": ""
  1268. },
  1269. "require": {
  1270. "ext-fileinfo": "*",
  1271. "php": "^7.2 || ^8.0"
  1272. },
  1273. "require-dev": {
  1274. "friendsofphp/php-cs-fixer": "^3.2",
  1275. "phpstan/phpstan": "^0.12.68",
  1276. "phpunit/phpunit": "^8.5.8 || ^9.3"
  1277. },
  1278. "time": "2022-04-17T13:12:02+00:00",
  1279. "type": "library",
  1280. "installation-source": "dist",
  1281. "autoload": {
  1282. "psr-4": {
  1283. "League\\MimeTypeDetection\\": "src"
  1284. }
  1285. },
  1286. "notification-url": "https://packagist.org/downloads/",
  1287. "license": [
  1288. "MIT"
  1289. ],
  1290. "authors": [
  1291. {
  1292. "name": "Frank de Jonge",
  1293. "email": "info@frankdejonge.nl"
  1294. }
  1295. ],
  1296. "description": "Mime-type detection for Flysystem",
  1297. "support": {
  1298. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1299. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  1300. },
  1301. "funding": [
  1302. {
  1303. "url": "https://github.com/frankdejonge",
  1304. "type": "github"
  1305. },
  1306. {
  1307. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1308. "type": "tidelift"
  1309. }
  1310. ],
  1311. "install-path": "../league/mime-type-detection"
  1312. },
  1313. {
  1314. "name": "liz/flysystem-qiniu",
  1315. "version": "v1.23",
  1316. "version_normalized": "1.23.0.0",
  1317. "source": {
  1318. "type": "git",
  1319. "url": "https://github.com/l396635210/flysystem-qiniu.git",
  1320. "reference": "24af0f95644fcf66e82cc04ce840f31f6450e026"
  1321. },
  1322. "dist": {
  1323. "type": "zip",
  1324. "url": "https://api.github.com/repos/l396635210/flysystem-qiniu/zipball/24af0f95644fcf66e82cc04ce840f31f6450e026",
  1325. "reference": "24af0f95644fcf66e82cc04ce840f31f6450e026",
  1326. "shasum": ""
  1327. },
  1328. "require": {
  1329. "league/flysystem": "^1.0",
  1330. "php": "^7.0 || ^8.0",
  1331. "qiniu/php-sdk": "^7.2"
  1332. },
  1333. "time": "2021-01-12T12:50:38+00:00",
  1334. "type": "library",
  1335. "installation-source": "dist",
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Liz\\Flysystem\\QiNiu\\": "src"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "authors": [
  1346. {
  1347. "name": "liz in company",
  1348. "email": "396635210@qq.com"
  1349. }
  1350. ],
  1351. "description": "QiNiu oss adapter for flysystem",
  1352. "support": {
  1353. "issues": "https://github.com/l396635210/flysystem-qiniu/issues",
  1354. "source": "https://github.com/l396635210/flysystem-qiniu/tree/v1.23"
  1355. },
  1356. "install-path": "../liz/flysystem-qiniu"
  1357. },
  1358. {
  1359. "name": "myclabs/php-enum",
  1360. "version": "1.6.6",
  1361. "version_normalized": "1.6.6.0",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/myclabs/php-enum.git",
  1365. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  1370. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "ext-json": "*",
  1375. "php": ">=5.4"
  1376. },
  1377. "require-dev": {
  1378. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  1379. "squizlabs/php_codesniffer": "1.*"
  1380. },
  1381. "time": "2019-02-04T21:18:49+00:00",
  1382. "type": "library",
  1383. "installation-source": "dist",
  1384. "autoload": {
  1385. "psr-4": {
  1386. "MyCLabs\\Enum\\": "src/"
  1387. }
  1388. },
  1389. "notification-url": "https://packagist.org/downloads/",
  1390. "license": [
  1391. "MIT"
  1392. ],
  1393. "authors": [
  1394. {
  1395. "name": "PHP Enum contributors",
  1396. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1397. }
  1398. ],
  1399. "description": "PHP Enum implementation",
  1400. "homepage": "http://github.com/myclabs/php-enum",
  1401. "keywords": [
  1402. "enum"
  1403. ],
  1404. "support": {
  1405. "issues": "https://github.com/myclabs/php-enum/issues",
  1406. "source": "https://github.com/myclabs/php-enum/tree/master"
  1407. },
  1408. "install-path": "../myclabs/php-enum"
  1409. },
  1410. {
  1411. "name": "overtrue/flysystem-cos",
  1412. "version": "2.1.2",
  1413. "version_normalized": "2.1.2.0",
  1414. "source": {
  1415. "type": "git",
  1416. "url": "https://github.com/overtrue/flysystem-cos.git",
  1417. "reference": "f6985f38f3c76a9be962f404f127b7222a9b5fff"
  1418. },
  1419. "dist": {
  1420. "type": "zip",
  1421. "url": "https://api.github.com/repos/overtrue/flysystem-cos/zipball/f6985f38f3c76a9be962f404f127b7222a9b5fff",
  1422. "reference": "f6985f38f3c76a9be962f404f127b7222a9b5fff",
  1423. "shasum": ""
  1424. },
  1425. "require": {
  1426. "guzzlehttp/guzzle": "^6.3|^7.0",
  1427. "league/flysystem": "^1.0",
  1428. "php": ">=7.0",
  1429. "qcloud/cos-sdk-v5": "^2.0.0"
  1430. },
  1431. "require-dev": {
  1432. "mockery/mockery": "~1.0",
  1433. "php": ">=7.1",
  1434. "phpunit/phpunit": "^8.0"
  1435. },
  1436. "time": "2020-10-22T10:28:58+00:00",
  1437. "type": "library",
  1438. "installation-source": "dist",
  1439. "autoload": {
  1440. "psr-4": {
  1441. "Overtrue\\Flysystem\\Cos\\": "src"
  1442. }
  1443. },
  1444. "notification-url": "https://packagist.org/downloads/",
  1445. "license": [
  1446. "MIT"
  1447. ],
  1448. "authors": [
  1449. {
  1450. "name": "overtrue",
  1451. "email": "i@overtrue.me"
  1452. }
  1453. ],
  1454. "description": "Flysystem adapter for the QCloud COS storage.",
  1455. "support": {
  1456. "issues": "https://github.com/overtrue/flysystem-cos/issues",
  1457. "source": "https://github.com/overtrue/flysystem-cos/tree/2.1.2"
  1458. },
  1459. "install-path": "../overtrue/flysystem-cos"
  1460. },
  1461. {
  1462. "name": "php-di/phpdoc-reader",
  1463. "version": "2.2.1",
  1464. "version_normalized": "2.2.1.0",
  1465. "source": {
  1466. "type": "git",
  1467. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  1468. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  1469. },
  1470. "dist": {
  1471. "type": "zip",
  1472. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  1473. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  1474. "shasum": ""
  1475. },
  1476. "require": {
  1477. "php": ">=7.2.0"
  1478. },
  1479. "require-dev": {
  1480. "mnapoli/hard-mode": "~0.3.0",
  1481. "phpunit/phpunit": "^8.5|^9.0"
  1482. },
  1483. "time": "2020-10-12T12:39:22+00:00",
  1484. "type": "library",
  1485. "installation-source": "dist",
  1486. "autoload": {
  1487. "psr-4": {
  1488. "PhpDocReader\\": "src/PhpDocReader"
  1489. }
  1490. },
  1491. "notification-url": "https://packagist.org/downloads/",
  1492. "license": [
  1493. "MIT"
  1494. ],
  1495. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  1496. "keywords": [
  1497. "phpdoc",
  1498. "reflection"
  1499. ],
  1500. "support": {
  1501. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  1502. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  1503. },
  1504. "install-path": "../php-di/phpdoc-reader"
  1505. },
  1506. {
  1507. "name": "psr/cache",
  1508. "version": "1.0.1",
  1509. "version_normalized": "1.0.1.0",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/php-fig/cache.git",
  1513. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1518. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1519. "shasum": ""
  1520. },
  1521. "require": {
  1522. "php": ">=5.3.0"
  1523. },
  1524. "time": "2016-08-06T20:24:11+00:00",
  1525. "type": "library",
  1526. "extra": {
  1527. "branch-alias": {
  1528. "dev-master": "1.0.x-dev"
  1529. }
  1530. },
  1531. "installation-source": "dist",
  1532. "autoload": {
  1533. "psr-4": {
  1534. "Psr\\Cache\\": "src/"
  1535. }
  1536. },
  1537. "notification-url": "https://packagist.org/downloads/",
  1538. "license": [
  1539. "MIT"
  1540. ],
  1541. "authors": [
  1542. {
  1543. "name": "PHP-FIG",
  1544. "homepage": "http://www.php-fig.org/"
  1545. }
  1546. ],
  1547. "description": "Common interface for caching libraries",
  1548. "keywords": [
  1549. "cache",
  1550. "psr",
  1551. "psr-6"
  1552. ],
  1553. "support": {
  1554. "source": "https://github.com/php-fig/cache/tree/master"
  1555. },
  1556. "install-path": "../psr/cache"
  1557. },
  1558. {
  1559. "name": "psr/container",
  1560. "version": "1.1.1",
  1561. "version_normalized": "1.1.1.0",
  1562. "source": {
  1563. "type": "git",
  1564. "url": "https://github.com/php-fig/container.git",
  1565. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1566. },
  1567. "dist": {
  1568. "type": "zip",
  1569. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1570. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1571. "shasum": ""
  1572. },
  1573. "require": {
  1574. "php": ">=7.2.0"
  1575. },
  1576. "time": "2021-03-05T17:36:06+00:00",
  1577. "type": "library",
  1578. "installation-source": "dist",
  1579. "autoload": {
  1580. "psr-4": {
  1581. "Psr\\Container\\": "src/"
  1582. }
  1583. },
  1584. "notification-url": "https://packagist.org/downloads/",
  1585. "license": [
  1586. "MIT"
  1587. ],
  1588. "authors": [
  1589. {
  1590. "name": "PHP-FIG",
  1591. "homepage": "https://www.php-fig.org/"
  1592. }
  1593. ],
  1594. "description": "Common Container Interface (PHP FIG PSR-11)",
  1595. "homepage": "https://github.com/php-fig/container",
  1596. "keywords": [
  1597. "PSR-11",
  1598. "container",
  1599. "container-interface",
  1600. "container-interop",
  1601. "psr"
  1602. ],
  1603. "support": {
  1604. "issues": "https://github.com/php-fig/container/issues",
  1605. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1606. },
  1607. "install-path": "../psr/container"
  1608. },
  1609. {
  1610. "name": "psr/http-client",
  1611. "version": "1.0.2",
  1612. "version_normalized": "1.0.2.0",
  1613. "source": {
  1614. "type": "git",
  1615. "url": "https://github.com/php-fig/http-client.git",
  1616. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  1617. },
  1618. "dist": {
  1619. "type": "zip",
  1620. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  1621. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  1622. "shasum": ""
  1623. },
  1624. "require": {
  1625. "php": "^7.0 || ^8.0",
  1626. "psr/http-message": "^1.0 || ^2.0"
  1627. },
  1628. "time": "2023-04-10T20:12:12+00:00",
  1629. "type": "library",
  1630. "extra": {
  1631. "branch-alias": {
  1632. "dev-master": "1.0.x-dev"
  1633. }
  1634. },
  1635. "installation-source": "dist",
  1636. "autoload": {
  1637. "psr-4": {
  1638. "Psr\\Http\\Client\\": "src/"
  1639. }
  1640. },
  1641. "notification-url": "https://packagist.org/downloads/",
  1642. "license": [
  1643. "MIT"
  1644. ],
  1645. "authors": [
  1646. {
  1647. "name": "PHP-FIG",
  1648. "homepage": "https://www.php-fig.org/"
  1649. }
  1650. ],
  1651. "description": "Common interface for HTTP clients",
  1652. "homepage": "https://github.com/php-fig/http-client",
  1653. "keywords": [
  1654. "http",
  1655. "http-client",
  1656. "psr",
  1657. "psr-18"
  1658. ],
  1659. "support": {
  1660. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  1661. },
  1662. "install-path": "../psr/http-client"
  1663. },
  1664. {
  1665. "name": "psr/http-factory",
  1666. "version": "1.0.2",
  1667. "version_normalized": "1.0.2.0",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/php-fig/http-factory.git",
  1671. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  1676. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  1677. "shasum": ""
  1678. },
  1679. "require": {
  1680. "php": ">=7.0.0",
  1681. "psr/http-message": "^1.0 || ^2.0"
  1682. },
  1683. "time": "2023-04-10T20:10:41+00:00",
  1684. "type": "library",
  1685. "extra": {
  1686. "branch-alias": {
  1687. "dev-master": "1.0.x-dev"
  1688. }
  1689. },
  1690. "installation-source": "dist",
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Psr\\Http\\Message\\": "src/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "authors": [
  1701. {
  1702. "name": "PHP-FIG",
  1703. "homepage": "https://www.php-fig.org/"
  1704. }
  1705. ],
  1706. "description": "Common interfaces for PSR-7 HTTP message factories",
  1707. "keywords": [
  1708. "factory",
  1709. "http",
  1710. "message",
  1711. "psr",
  1712. "psr-17",
  1713. "psr-7",
  1714. "request",
  1715. "response"
  1716. ],
  1717. "support": {
  1718. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  1719. },
  1720. "install-path": "../psr/http-factory"
  1721. },
  1722. {
  1723. "name": "psr/http-message",
  1724. "version": "1.0.1",
  1725. "version_normalized": "1.0.1.0",
  1726. "source": {
  1727. "type": "git",
  1728. "url": "https://github.com/php-fig/http-message.git",
  1729. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1730. },
  1731. "dist": {
  1732. "type": "zip",
  1733. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1734. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1735. "shasum": ""
  1736. },
  1737. "require": {
  1738. "php": ">=5.3.0"
  1739. },
  1740. "time": "2016-08-06T14:39:51+00:00",
  1741. "type": "library",
  1742. "extra": {
  1743. "branch-alias": {
  1744. "dev-master": "1.0.x-dev"
  1745. }
  1746. },
  1747. "installation-source": "dist",
  1748. "autoload": {
  1749. "psr-4": {
  1750. "Psr\\Http\\Message\\": "src/"
  1751. }
  1752. },
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "MIT"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "PHP-FIG",
  1760. "homepage": "http://www.php-fig.org/"
  1761. }
  1762. ],
  1763. "description": "Common interface for HTTP messages",
  1764. "homepage": "https://github.com/php-fig/http-message",
  1765. "keywords": [
  1766. "http",
  1767. "http-message",
  1768. "psr",
  1769. "psr-7",
  1770. "request",
  1771. "response"
  1772. ],
  1773. "support": {
  1774. "source": "https://github.com/php-fig/http-message/tree/master"
  1775. },
  1776. "install-path": "../psr/http-message"
  1777. },
  1778. {
  1779. "name": "psr/log",
  1780. "version": "1.1.4",
  1781. "version_normalized": "1.1.4.0",
  1782. "source": {
  1783. "type": "git",
  1784. "url": "https://github.com/php-fig/log.git",
  1785. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1786. },
  1787. "dist": {
  1788. "type": "zip",
  1789. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1790. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1791. "shasum": ""
  1792. },
  1793. "require": {
  1794. "php": ">=5.3.0"
  1795. },
  1796. "time": "2021-05-03T11:20:27+00:00",
  1797. "type": "library",
  1798. "extra": {
  1799. "branch-alias": {
  1800. "dev-master": "1.1.x-dev"
  1801. }
  1802. },
  1803. "installation-source": "dist",
  1804. "autoload": {
  1805. "psr-4": {
  1806. "Psr\\Log\\": "Psr/Log/"
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "PHP-FIG",
  1816. "homepage": "https://www.php-fig.org/"
  1817. }
  1818. ],
  1819. "description": "Common interface for logging libraries",
  1820. "homepage": "https://github.com/php-fig/log",
  1821. "keywords": [
  1822. "log",
  1823. "psr",
  1824. "psr-3"
  1825. ],
  1826. "support": {
  1827. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1828. },
  1829. "install-path": "../psr/log"
  1830. },
  1831. {
  1832. "name": "psr/simple-cache",
  1833. "version": "1.0.1",
  1834. "version_normalized": "1.0.1.0",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/php-fig/simple-cache.git",
  1838. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1843. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1844. "shasum": ""
  1845. },
  1846. "require": {
  1847. "php": ">=5.3.0"
  1848. },
  1849. "time": "2017-10-23T01:57:42+00:00",
  1850. "type": "library",
  1851. "extra": {
  1852. "branch-alias": {
  1853. "dev-master": "1.0.x-dev"
  1854. }
  1855. },
  1856. "installation-source": "dist",
  1857. "autoload": {
  1858. "psr-4": {
  1859. "Psr\\SimpleCache\\": "src/"
  1860. }
  1861. },
  1862. "notification-url": "https://packagist.org/downloads/",
  1863. "license": [
  1864. "MIT"
  1865. ],
  1866. "authors": [
  1867. {
  1868. "name": "PHP-FIG",
  1869. "homepage": "http://www.php-fig.org/"
  1870. }
  1871. ],
  1872. "description": "Common interfaces for simple caching",
  1873. "keywords": [
  1874. "cache",
  1875. "caching",
  1876. "psr",
  1877. "psr-16",
  1878. "simple-cache"
  1879. ],
  1880. "support": {
  1881. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1882. },
  1883. "install-path": "../psr/simple-cache"
  1884. },
  1885. {
  1886. "name": "qcloud/cos-sdk-v5",
  1887. "version": "v2.6.2",
  1888. "version_normalized": "2.6.2.0",
  1889. "source": {
  1890. "type": "git",
  1891. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  1892. "reference": "92a1ee62b85ed4e7bf6836a684df5d7e3158d0ed"
  1893. },
  1894. "dist": {
  1895. "type": "zip",
  1896. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/92a1ee62b85ed4e7bf6836a684df5d7e3158d0ed",
  1897. "reference": "92a1ee62b85ed4e7bf6836a684df5d7e3158d0ed",
  1898. "shasum": ""
  1899. },
  1900. "require": {
  1901. "ext-curl": "*",
  1902. "ext-json": "*",
  1903. "ext-mbstring": "*",
  1904. "ext-simplexml": "*",
  1905. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  1906. "guzzlehttp/guzzle-services": "^1.1",
  1907. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  1908. "php": ">=5.6"
  1909. },
  1910. "time": "2023-04-07T07:38:24+00:00",
  1911. "type": "library",
  1912. "extra": {
  1913. "branch-alias": {
  1914. "dev-master": "2.4-dev"
  1915. }
  1916. },
  1917. "installation-source": "dist",
  1918. "autoload": {
  1919. "files": [
  1920. "src/Common.php"
  1921. ],
  1922. "psr-4": {
  1923. "Qcloud\\Cos\\": "src/"
  1924. }
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "MIT"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "yaozongyou",
  1933. "email": "yaozongyou@vip.qq.com"
  1934. },
  1935. {
  1936. "name": "lewzylu",
  1937. "email": "327874225@qq.com"
  1938. },
  1939. {
  1940. "name": "tuunalai",
  1941. "email": "550566181@qq.com"
  1942. }
  1943. ],
  1944. "description": "PHP SDK for QCloud COS",
  1945. "keywords": [
  1946. "cos",
  1947. "php",
  1948. "qcloud"
  1949. ],
  1950. "support": {
  1951. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  1952. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.6.2"
  1953. },
  1954. "install-path": "../qcloud/cos-sdk-v5"
  1955. },
  1956. {
  1957. "name": "qeq66/jwt",
  1958. "version": "3.3.5",
  1959. "version_normalized": "3.3.5.0",
  1960. "source": {
  1961. "type": "git",
  1962. "url": "https://github.com/qeq66/jwt.git",
  1963. "reference": "bd2fa6c51704dc18c61026c852c789224d7190a0"
  1964. },
  1965. "dist": {
  1966. "type": "zip",
  1967. "url": "https://api.github.com/repos/qeq66/jwt/zipball/bd2fa6c51704dc18c61026c852c789224d7190a0",
  1968. "reference": "bd2fa6c51704dc18c61026c852c789224d7190a0",
  1969. "shasum": ""
  1970. },
  1971. "require": {
  1972. "ext-mbstring": "*",
  1973. "ext-openssl": "*",
  1974. "php": ">=5.6"
  1975. },
  1976. "require-dev": {
  1977. "mikey179/vfsstream": "~1.5",
  1978. "phpmd/phpmd": "~2.2",
  1979. "phpunit/php-invoker": "~1.1",
  1980. "phpunit/phpunit": "^5.7 || ^7.3",
  1981. "squizlabs/php_codesniffer": "~2.3"
  1982. },
  1983. "time": "2022-07-11T08:31:22+00:00",
  1984. "type": "library",
  1985. "extra": {
  1986. "branch-alias": {
  1987. "dev-master": "3.1-dev"
  1988. }
  1989. },
  1990. "installation-source": "dist",
  1991. "autoload": {
  1992. "psr-4": {
  1993. "Lcobucci\\JWT\\": "src"
  1994. }
  1995. },
  1996. "notification-url": "https://packagist.org/downloads/",
  1997. "license": [
  1998. "BSD-3-Clause"
  1999. ],
  2000. "authors": [
  2001. {
  2002. "name": "Luís Otávio Cobucci Oblonczyk",
  2003. "email": "lcobucci@gmail.com",
  2004. "role": "Developer"
  2005. }
  2006. ],
  2007. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2008. "keywords": [
  2009. "JWS",
  2010. "jwt"
  2011. ],
  2012. "support": {
  2013. "source": "https://github.com/qeq66/jwt/tree/3.3.5"
  2014. },
  2015. "install-path": "../qeq66/jwt"
  2016. },
  2017. {
  2018. "name": "qiniu/php-sdk",
  2019. "version": "v7.8.0",
  2020. "version_normalized": "7.8.0.0",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/qiniu/php-sdk.git",
  2024. "reference": "4bbddbde2b8994e2a1372a457a975725db5d723e"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/4bbddbde2b8994e2a1372a457a975725db5d723e",
  2029. "reference": "4bbddbde2b8994e2a1372a457a975725db5d723e",
  2030. "shasum": ""
  2031. },
  2032. "require": {
  2033. "myclabs/php-enum": "1.6.6",
  2034. "php": ">=5.3.3"
  2035. },
  2036. "require-dev": {
  2037. "paragonie/random_compat": ">=2",
  2038. "phpunit/phpunit": "~4.0",
  2039. "squizlabs/php_codesniffer": "~3.6"
  2040. },
  2041. "time": "2022-10-25T09:31:00+00:00",
  2042. "type": "library",
  2043. "installation-source": "dist",
  2044. "autoload": {
  2045. "files": [
  2046. "src/Qiniu/functions.php"
  2047. ],
  2048. "psr-4": {
  2049. "Qiniu\\": "src/Qiniu"
  2050. }
  2051. },
  2052. "notification-url": "https://packagist.org/downloads/",
  2053. "license": [
  2054. "MIT"
  2055. ],
  2056. "authors": [
  2057. {
  2058. "name": "Qiniu",
  2059. "email": "sdk@qiniu.com",
  2060. "homepage": "http://www.qiniu.com"
  2061. }
  2062. ],
  2063. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2064. "homepage": "http://developer.qiniu.com/",
  2065. "keywords": [
  2066. "cloud",
  2067. "qiniu",
  2068. "sdk",
  2069. "storage"
  2070. ],
  2071. "support": {
  2072. "issues": "https://github.com/qiniu/php-sdk/issues",
  2073. "source": "https://github.com/qiniu/php-sdk/tree/v7.8.0"
  2074. },
  2075. "install-path": "../qiniu/php-sdk"
  2076. },
  2077. {
  2078. "name": "ralouphie/getallheaders",
  2079. "version": "3.0.3",
  2080. "version_normalized": "3.0.3.0",
  2081. "source": {
  2082. "type": "git",
  2083. "url": "https://github.com/ralouphie/getallheaders.git",
  2084. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2085. },
  2086. "dist": {
  2087. "type": "zip",
  2088. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2089. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2090. "shasum": ""
  2091. },
  2092. "require": {
  2093. "php": ">=5.6"
  2094. },
  2095. "require-dev": {
  2096. "php-coveralls/php-coveralls": "^2.1",
  2097. "phpunit/phpunit": "^5 || ^6.5"
  2098. },
  2099. "time": "2019-03-08T08:55:37+00:00",
  2100. "type": "library",
  2101. "installation-source": "dist",
  2102. "autoload": {
  2103. "files": [
  2104. "src/getallheaders.php"
  2105. ]
  2106. },
  2107. "notification-url": "https://packagist.org/downloads/",
  2108. "license": [
  2109. "MIT"
  2110. ],
  2111. "authors": [
  2112. {
  2113. "name": "Ralph Khattar",
  2114. "email": "ralph.khattar@gmail.com"
  2115. }
  2116. ],
  2117. "description": "A polyfill for getallheaders.",
  2118. "support": {
  2119. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2120. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2121. },
  2122. "install-path": "../ralouphie/getallheaders"
  2123. },
  2124. {
  2125. "name": "react/promise",
  2126. "version": "v2.10.0",
  2127. "version_normalized": "2.10.0.0",
  2128. "source": {
  2129. "type": "git",
  2130. "url": "https://github.com/reactphp/promise.git",
  2131. "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38"
  2132. },
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://api.github.com/repos/reactphp/promise/zipball/f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38",
  2136. "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38",
  2137. "shasum": ""
  2138. },
  2139. "require": {
  2140. "php": ">=5.4.0"
  2141. },
  2142. "require-dev": {
  2143. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.36"
  2144. },
  2145. "time": "2023-05-02T15:15:43+00:00",
  2146. "type": "library",
  2147. "installation-source": "dist",
  2148. "autoload": {
  2149. "files": [
  2150. "src/functions_include.php"
  2151. ],
  2152. "psr-4": {
  2153. "React\\Promise\\": "src/"
  2154. }
  2155. },
  2156. "notification-url": "https://packagist.org/downloads/",
  2157. "license": [
  2158. "MIT"
  2159. ],
  2160. "authors": [
  2161. {
  2162. "name": "Jan Sorgalla",
  2163. "email": "jsorgalla@gmail.com",
  2164. "homepage": "https://sorgalla.com/"
  2165. },
  2166. {
  2167. "name": "Christian Lück",
  2168. "email": "christian@clue.engineering",
  2169. "homepage": "https://clue.engineering/"
  2170. },
  2171. {
  2172. "name": "Cees-Jan Kiewiet",
  2173. "email": "reactphp@ceesjankiewiet.nl",
  2174. "homepage": "https://wyrihaximus.net/"
  2175. },
  2176. {
  2177. "name": "Chris Boden",
  2178. "email": "cboden@gmail.com",
  2179. "homepage": "https://cboden.dev/"
  2180. }
  2181. ],
  2182. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  2183. "keywords": [
  2184. "promise",
  2185. "promises"
  2186. ],
  2187. "support": {
  2188. "issues": "https://github.com/reactphp/promise/issues",
  2189. "source": "https://github.com/reactphp/promise/tree/v2.10.0"
  2190. },
  2191. "funding": [
  2192. {
  2193. "url": "https://opencollective.com/reactphp",
  2194. "type": "open_collective"
  2195. }
  2196. ],
  2197. "install-path": "../react/promise"
  2198. },
  2199. {
  2200. "name": "symfony/deprecation-contracts",
  2201. "version": "v2.5.2",
  2202. "version_normalized": "2.5.2.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://github.com/symfony/deprecation-contracts.git",
  2206. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2211. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2212. "shasum": ""
  2213. },
  2214. "require": {
  2215. "php": ">=7.1"
  2216. },
  2217. "time": "2022-01-02T09:53:40+00:00",
  2218. "type": "library",
  2219. "extra": {
  2220. "branch-alias": {
  2221. "dev-main": "2.5-dev"
  2222. },
  2223. "thanks": {
  2224. "name": "symfony/contracts",
  2225. "url": "https://github.com/symfony/contracts"
  2226. }
  2227. },
  2228. "installation-source": "dist",
  2229. "autoload": {
  2230. "files": [
  2231. "function.php"
  2232. ]
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "Nicolas Grekas",
  2241. "email": "p@tchwork.com"
  2242. },
  2243. {
  2244. "name": "Symfony Community",
  2245. "homepage": "https://symfony.com/contributors"
  2246. }
  2247. ],
  2248. "description": "A generic function and convention to trigger deprecation notices",
  2249. "homepage": "https://symfony.com",
  2250. "support": {
  2251. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2252. },
  2253. "funding": [
  2254. {
  2255. "url": "https://symfony.com/sponsor",
  2256. "type": "custom"
  2257. },
  2258. {
  2259. "url": "https://github.com/fabpot",
  2260. "type": "github"
  2261. },
  2262. {
  2263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2264. "type": "tidelift"
  2265. }
  2266. ],
  2267. "install-path": "../symfony/deprecation-contracts"
  2268. },
  2269. {
  2270. "name": "symfony/polyfill-mbstring",
  2271. "version": "v1.27.0",
  2272. "version_normalized": "1.27.0.0",
  2273. "source": {
  2274. "type": "git",
  2275. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2276. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  2277. },
  2278. "dist": {
  2279. "type": "zip",
  2280. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2281. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  2282. "shasum": ""
  2283. },
  2284. "require": {
  2285. "php": ">=7.1"
  2286. },
  2287. "provide": {
  2288. "ext-mbstring": "*"
  2289. },
  2290. "suggest": {
  2291. "ext-mbstring": "For best performance"
  2292. },
  2293. "time": "2022-11-03T14:55:06+00:00",
  2294. "type": "library",
  2295. "extra": {
  2296. "branch-alias": {
  2297. "dev-main": "1.27-dev"
  2298. },
  2299. "thanks": {
  2300. "name": "symfony/polyfill",
  2301. "url": "https://github.com/symfony/polyfill"
  2302. }
  2303. },
  2304. "installation-source": "dist",
  2305. "autoload": {
  2306. "files": [
  2307. "bootstrap.php"
  2308. ],
  2309. "psr-4": {
  2310. "Symfony\\Polyfill\\Mbstring\\": ""
  2311. }
  2312. },
  2313. "notification-url": "https://packagist.org/downloads/",
  2314. "license": [
  2315. "MIT"
  2316. ],
  2317. "authors": [
  2318. {
  2319. "name": "Nicolas Grekas",
  2320. "email": "p@tchwork.com"
  2321. },
  2322. {
  2323. "name": "Symfony Community",
  2324. "homepage": "https://symfony.com/contributors"
  2325. }
  2326. ],
  2327. "description": "Symfony polyfill for the Mbstring extension",
  2328. "homepage": "https://symfony.com",
  2329. "keywords": [
  2330. "compatibility",
  2331. "mbstring",
  2332. "polyfill",
  2333. "portable",
  2334. "shim"
  2335. ],
  2336. "support": {
  2337. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  2338. },
  2339. "funding": [
  2340. {
  2341. "url": "https://symfony.com/sponsor",
  2342. "type": "custom"
  2343. },
  2344. {
  2345. "url": "https://github.com/fabpot",
  2346. "type": "github"
  2347. },
  2348. {
  2349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2350. "type": "tidelift"
  2351. }
  2352. ],
  2353. "install-path": "../symfony/polyfill-mbstring"
  2354. },
  2355. {
  2356. "name": "symfony/polyfill-php72",
  2357. "version": "v1.27.0",
  2358. "version_normalized": "1.27.0.0",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/symfony/polyfill-php72.git",
  2362. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  2367. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  2368. "shasum": ""
  2369. },
  2370. "require": {
  2371. "php": ">=7.1"
  2372. },
  2373. "time": "2022-11-03T14:55:06+00:00",
  2374. "type": "library",
  2375. "extra": {
  2376. "branch-alias": {
  2377. "dev-main": "1.27-dev"
  2378. },
  2379. "thanks": {
  2380. "name": "symfony/polyfill",
  2381. "url": "https://github.com/symfony/polyfill"
  2382. }
  2383. },
  2384. "installation-source": "dist",
  2385. "autoload": {
  2386. "files": [
  2387. "bootstrap.php"
  2388. ],
  2389. "psr-4": {
  2390. "Symfony\\Polyfill\\Php72\\": ""
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Nicolas Grekas",
  2400. "email": "p@tchwork.com"
  2401. },
  2402. {
  2403. "name": "Symfony Community",
  2404. "homepage": "https://symfony.com/contributors"
  2405. }
  2406. ],
  2407. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2408. "homepage": "https://symfony.com",
  2409. "keywords": [
  2410. "compatibility",
  2411. "polyfill",
  2412. "portable",
  2413. "shim"
  2414. ],
  2415. "support": {
  2416. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  2417. },
  2418. "funding": [
  2419. {
  2420. "url": "https://symfony.com/sponsor",
  2421. "type": "custom"
  2422. },
  2423. {
  2424. "url": "https://github.com/fabpot",
  2425. "type": "github"
  2426. },
  2427. {
  2428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2429. "type": "tidelift"
  2430. }
  2431. ],
  2432. "install-path": "../symfony/polyfill-php72"
  2433. },
  2434. {
  2435. "name": "symfony/polyfill-php80",
  2436. "version": "v1.27.0",
  2437. "version_normalized": "1.27.0.0",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/symfony/polyfill-php80.git",
  2441. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2446. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  2447. "shasum": ""
  2448. },
  2449. "require": {
  2450. "php": ">=7.1"
  2451. },
  2452. "time": "2022-11-03T14:55:06+00:00",
  2453. "type": "library",
  2454. "extra": {
  2455. "branch-alias": {
  2456. "dev-main": "1.27-dev"
  2457. },
  2458. "thanks": {
  2459. "name": "symfony/polyfill",
  2460. "url": "https://github.com/symfony/polyfill"
  2461. }
  2462. },
  2463. "installation-source": "dist",
  2464. "autoload": {
  2465. "files": [
  2466. "bootstrap.php"
  2467. ],
  2468. "psr-4": {
  2469. "Symfony\\Polyfill\\Php80\\": ""
  2470. },
  2471. "classmap": [
  2472. "Resources/stubs"
  2473. ]
  2474. },
  2475. "notification-url": "https://packagist.org/downloads/",
  2476. "license": [
  2477. "MIT"
  2478. ],
  2479. "authors": [
  2480. {
  2481. "name": "Ion Bazan",
  2482. "email": "ion.bazan@gmail.com"
  2483. },
  2484. {
  2485. "name": "Nicolas Grekas",
  2486. "email": "p@tchwork.com"
  2487. },
  2488. {
  2489. "name": "Symfony Community",
  2490. "homepage": "https://symfony.com/contributors"
  2491. }
  2492. ],
  2493. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2494. "homepage": "https://symfony.com",
  2495. "keywords": [
  2496. "compatibility",
  2497. "polyfill",
  2498. "portable",
  2499. "shim"
  2500. ],
  2501. "support": {
  2502. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  2503. },
  2504. "funding": [
  2505. {
  2506. "url": "https://symfony.com/sponsor",
  2507. "type": "custom"
  2508. },
  2509. {
  2510. "url": "https://github.com/fabpot",
  2511. "type": "github"
  2512. },
  2513. {
  2514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2515. "type": "tidelift"
  2516. }
  2517. ],
  2518. "install-path": "../symfony/polyfill-php80"
  2519. },
  2520. {
  2521. "name": "symfony/var-dumper",
  2522. "version": "v4.4.47",
  2523. "version_normalized": "4.4.47.0",
  2524. "source": {
  2525. "type": "git",
  2526. "url": "https://github.com/symfony/var-dumper.git",
  2527. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  2528. },
  2529. "dist": {
  2530. "type": "zip",
  2531. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  2532. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  2533. "shasum": ""
  2534. },
  2535. "require": {
  2536. "php": ">=7.1.3",
  2537. "symfony/polyfill-mbstring": "~1.0",
  2538. "symfony/polyfill-php72": "~1.5",
  2539. "symfony/polyfill-php80": "^1.16"
  2540. },
  2541. "conflict": {
  2542. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2543. "symfony/console": "<3.4"
  2544. },
  2545. "require-dev": {
  2546. "ext-iconv": "*",
  2547. "symfony/console": "^3.4|^4.0|^5.0",
  2548. "symfony/process": "^4.4|^5.0",
  2549. "twig/twig": "^1.43|^2.13|^3.0.4"
  2550. },
  2551. "suggest": {
  2552. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2553. "ext-intl": "To show region name in time zone dump",
  2554. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2555. },
  2556. "time": "2022-10-03T15:15:11+00:00",
  2557. "bin": [
  2558. "Resources/bin/var-dump-server"
  2559. ],
  2560. "type": "library",
  2561. "installation-source": "dist",
  2562. "autoload": {
  2563. "files": [
  2564. "Resources/functions/dump.php"
  2565. ],
  2566. "psr-4": {
  2567. "Symfony\\Component\\VarDumper\\": ""
  2568. },
  2569. "exclude-from-classmap": [
  2570. "/Tests/"
  2571. ]
  2572. },
  2573. "notification-url": "https://packagist.org/downloads/",
  2574. "license": [
  2575. "MIT"
  2576. ],
  2577. "authors": [
  2578. {
  2579. "name": "Nicolas Grekas",
  2580. "email": "p@tchwork.com"
  2581. },
  2582. {
  2583. "name": "Symfony Community",
  2584. "homepage": "https://symfony.com/contributors"
  2585. }
  2586. ],
  2587. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  2588. "homepage": "https://symfony.com",
  2589. "keywords": [
  2590. "debug",
  2591. "dump"
  2592. ],
  2593. "support": {
  2594. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  2595. },
  2596. "funding": [
  2597. {
  2598. "url": "https://symfony.com/sponsor",
  2599. "type": "custom"
  2600. },
  2601. {
  2602. "url": "https://github.com/fabpot",
  2603. "type": "github"
  2604. },
  2605. {
  2606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2607. "type": "tidelift"
  2608. }
  2609. ],
  2610. "install-path": "../symfony/var-dumper"
  2611. },
  2612. {
  2613. "name": "thans/thinkphp-filesystem-cloud",
  2614. "version": "v1.0.2",
  2615. "version_normalized": "1.0.2.0",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/QThans/thinkphp-filesystem-cloud.git",
  2619. "reference": "b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/QThans/thinkphp-filesystem-cloud/zipball/b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2",
  2624. "reference": "b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "liz/flysystem-qiniu": "^1.10",
  2629. "overtrue/flysystem-cos": "^2.0.0",
  2630. "php": ">=7.1.0",
  2631. "topthink/framework": "^6.0.0",
  2632. "xxtime/flysystem-aliyun-oss": "^1.4"
  2633. },
  2634. "time": "2019-11-29T00:57:33+00:00",
  2635. "type": "library",
  2636. "extra": {
  2637. "think": {
  2638. "services": [
  2639. "thans\\filesystem\\Service"
  2640. ]
  2641. }
  2642. },
  2643. "installation-source": "dist",
  2644. "autoload": {
  2645. "psr-4": {
  2646. "thans\\filesystem\\": "src/"
  2647. }
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "Thans",
  2656. "email": "360641274@qq.com"
  2657. }
  2658. ],
  2659. "description": "thinkphp6.0 filesystem,include Aliyun and Qiniu",
  2660. "support": {
  2661. "issues": "https://github.com/QThans/thinkphp-filesystem-cloud/issues",
  2662. "source": "https://github.com/QThans/thinkphp-filesystem-cloud/tree/master"
  2663. },
  2664. "install-path": "../thans/thinkphp-filesystem-cloud"
  2665. },
  2666. {
  2667. "name": "thans/tp-jwt-auth",
  2668. "version": "v1.3.1",
  2669. "version_normalized": "1.3.1.0",
  2670. "source": {
  2671. "type": "git",
  2672. "url": "https://github.com/QThans/jwt-auth.git",
  2673. "reference": "ab5efcc0fd920df81fea2c404c34bb967ef13aba"
  2674. },
  2675. "dist": {
  2676. "type": "zip",
  2677. "url": "https://api.github.com/repos/QThans/jwt-auth/zipball/ab5efcc0fd920df81fea2c404c34bb967ef13aba",
  2678. "reference": "ab5efcc0fd920df81fea2c404c34bb967ef13aba",
  2679. "shasum": ""
  2680. },
  2681. "require": {
  2682. "php": "^7.0 || ^8.0",
  2683. "qeq66/jwt": "3.3.*",
  2684. "topthink/framework": "^5.1.10 || ^6.0.0"
  2685. },
  2686. "time": "2022-11-01T02:44:23+00:00",
  2687. "type": "library",
  2688. "extra": {
  2689. "think": {
  2690. "services": [
  2691. "thans\\jwt\\Service"
  2692. ],
  2693. "config": {
  2694. "jwt": "config/config.php"
  2695. }
  2696. }
  2697. },
  2698. "installation-source": "dist",
  2699. "autoload": {
  2700. "files": [
  2701. "src/helper.php"
  2702. ],
  2703. "psr-4": {
  2704. "thans\\jwt\\": "src"
  2705. }
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "Thans",
  2714. "email": "360641274@qq.com"
  2715. }
  2716. ],
  2717. "description": "thinkphp jwt auth composer",
  2718. "support": {
  2719. "issues": "https://github.com/QThans/jwt-auth/issues",
  2720. "source": "https://github.com/QThans/jwt-auth/tree/v1.3.1"
  2721. },
  2722. "install-path": "../thans/tp-jwt-auth"
  2723. },
  2724. {
  2725. "name": "topthink/framework",
  2726. "version": "v6.1.2",
  2727. "version_normalized": "6.1.2.0",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://github.com/top-think/framework.git",
  2731. "reference": "67235be5b919aaaf1de5aed9839f65d8e766aca3"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://api.github.com/repos/top-think/framework/zipball/67235be5b919aaaf1de5aed9839f65d8e766aca3",
  2736. "reference": "67235be5b919aaaf1de5aed9839f65d8e766aca3",
  2737. "shasum": ""
  2738. },
  2739. "require": {
  2740. "ext-json": "*",
  2741. "ext-mbstring": "*",
  2742. "php": ">=7.2.5",
  2743. "psr/container": "~1.0",
  2744. "psr/http-message": "^1.0",
  2745. "psr/log": "~1.0",
  2746. "psr/simple-cache": "^1.0",
  2747. "topthink/think-helper": "^3.1.1",
  2748. "topthink/think-orm": "^2.0|^3.0"
  2749. },
  2750. "require-dev": {
  2751. "guzzlehttp/psr7": "^2.1.0",
  2752. "mikey179/vfsstream": "^1.6",
  2753. "mockery/mockery": "^1.2",
  2754. "phpunit/phpunit": "^7.0"
  2755. },
  2756. "time": "2023-02-08T02:24:01+00:00",
  2757. "type": "library",
  2758. "installation-source": "dist",
  2759. "autoload": {
  2760. "files": [],
  2761. "psr-4": {
  2762. "think\\": "src/think/"
  2763. }
  2764. },
  2765. "notification-url": "https://packagist.org/downloads/",
  2766. "license": [
  2767. "Apache-2.0"
  2768. ],
  2769. "authors": [
  2770. {
  2771. "name": "liu21st",
  2772. "email": "liu21st@gmail.com"
  2773. },
  2774. {
  2775. "name": "yunwuxin",
  2776. "email": "448901948@qq.com"
  2777. }
  2778. ],
  2779. "description": "The ThinkPHP Framework.",
  2780. "homepage": "http://thinkphp.cn/",
  2781. "keywords": [
  2782. "framework",
  2783. "orm",
  2784. "thinkphp"
  2785. ],
  2786. "support": {
  2787. "issues": "https://github.com/top-think/framework/issues",
  2788. "source": "https://github.com/top-think/framework/tree/v6.1.2"
  2789. },
  2790. "install-path": "../topthink/framework"
  2791. },
  2792. {
  2793. "name": "topthink/think-annotation",
  2794. "version": "v1.0.0",
  2795. "version_normalized": "1.0.0.0",
  2796. "source": {
  2797. "type": "git",
  2798. "url": "https://github.com/top-think/think-annotation.git",
  2799. "reference": "fa45ccc7e6e8a9ee5f46461bd0fff2a1b93401d8"
  2800. },
  2801. "dist": {
  2802. "type": "zip",
  2803. "url": "https://api.github.com/repos/top-think/think-annotation/zipball/fa45ccc7e6e8a9ee5f46461bd0fff2a1b93401d8",
  2804. "reference": "fa45ccc7e6e8a9ee5f46461bd0fff2a1b93401d8",
  2805. "shasum": ""
  2806. },
  2807. "require": {
  2808. "doctrine/annotations": "^1.6",
  2809. "php-di/phpdoc-reader": "^2.1",
  2810. "topthink/framework": "^6.0"
  2811. },
  2812. "time": "2019-06-24T09:11:21+00:00",
  2813. "type": "library",
  2814. "extra": {
  2815. "think": {
  2816. "services": [
  2817. "think\\annotation\\Service"
  2818. ],
  2819. "config": {
  2820. "annotation": "src/config.php"
  2821. }
  2822. }
  2823. },
  2824. "installation-source": "dist",
  2825. "autoload": {
  2826. "psr-4": {
  2827. "think\\annotation\\": "src"
  2828. }
  2829. },
  2830. "notification-url": "https://packagist.org/downloads/",
  2831. "license": [
  2832. "Apache-2.0"
  2833. ],
  2834. "authors": [
  2835. {
  2836. "name": "yunwuxin",
  2837. "email": "448901948@qq.com"
  2838. }
  2839. ],
  2840. "description": "Annotation For ThinkPHP6",
  2841. "support": {
  2842. "issues": "https://github.com/top-think/think-annotation/issues",
  2843. "source": "https://github.com/top-think/think-annotation/tree/master"
  2844. },
  2845. "install-path": "../topthink/think-annotation"
  2846. },
  2847. {
  2848. "name": "topthink/think-filesystem",
  2849. "version": "v1.0.3",
  2850. "version_normalized": "1.0.3.0",
  2851. "source": {
  2852. "type": "git",
  2853. "url": "https://github.com/top-think/think-filesystem.git",
  2854. "reference": "29f19f140a9267c717fecd7ccb22c84c2d72382e"
  2855. },
  2856. "dist": {
  2857. "type": "zip",
  2858. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/29f19f140a9267c717fecd7ccb22c84c2d72382e",
  2859. "reference": "29f19f140a9267c717fecd7ccb22c84c2d72382e",
  2860. "shasum": ""
  2861. },
  2862. "require": {
  2863. "league/flysystem": "^1.1.4",
  2864. "league/flysystem-cached-adapter": "^1.0",
  2865. "php": ">=7.2.5",
  2866. "topthink/framework": "^6.1|^8.0"
  2867. },
  2868. "require-dev": {
  2869. "mikey179/vfsstream": "^1.6",
  2870. "mockery/mockery": "^1.2",
  2871. "phpunit/phpunit": "^8.0"
  2872. },
  2873. "time": "2023-02-08T01:25:15+00:00",
  2874. "type": "library",
  2875. "installation-source": "dist",
  2876. "autoload": {
  2877. "psr-4": {
  2878. "think\\": "src"
  2879. }
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "Apache-2.0"
  2884. ],
  2885. "authors": [
  2886. {
  2887. "name": "yunwuxin",
  2888. "email": "448901948@qq.com"
  2889. }
  2890. ],
  2891. "description": "The ThinkPHP6.1 Filesystem Package",
  2892. "support": {
  2893. "issues": "https://github.com/top-think/think-filesystem/issues",
  2894. "source": "https://github.com/top-think/think-filesystem/tree/v1.0.3"
  2895. },
  2896. "install-path": "../topthink/think-filesystem"
  2897. },
  2898. {
  2899. "name": "topthink/think-helper",
  2900. "version": "v3.1.6",
  2901. "version_normalized": "3.1.6.0",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://github.com/top-think/think-helper.git",
  2905. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  2910. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  2911. "shasum": ""
  2912. },
  2913. "require": {
  2914. "php": ">=7.1.0"
  2915. },
  2916. "require-dev": {
  2917. "phpunit/phpunit": "^9.5"
  2918. },
  2919. "time": "2021-12-15T04:27:55+00:00",
  2920. "type": "library",
  2921. "installation-source": "dist",
  2922. "autoload": {
  2923. "files": [
  2924. "src/helper.php"
  2925. ],
  2926. "psr-4": {
  2927. "think\\": "src"
  2928. }
  2929. },
  2930. "notification-url": "https://packagist.org/downloads/",
  2931. "license": [
  2932. "Apache-2.0"
  2933. ],
  2934. "authors": [
  2935. {
  2936. "name": "yunwuxin",
  2937. "email": "448901948@qq.com"
  2938. }
  2939. ],
  2940. "description": "The ThinkPHP6 Helper Package",
  2941. "support": {
  2942. "issues": "https://github.com/top-think/think-helper/issues",
  2943. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  2944. },
  2945. "install-path": "../topthink/think-helper"
  2946. },
  2947. {
  2948. "name": "topthink/think-orm",
  2949. "version": "v2.0.60",
  2950. "version_normalized": "2.0.60.0",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://github.com/top-think/think-orm.git",
  2954. "reference": "8bc34a4307fa27186c0e96a9b3de3cb23aa1ed46"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://api.github.com/repos/top-think/think-orm/zipball/8bc34a4307fa27186c0e96a9b3de3cb23aa1ed46",
  2959. "reference": "8bc34a4307fa27186c0e96a9b3de3cb23aa1ed46",
  2960. "shasum": ""
  2961. },
  2962. "require": {
  2963. "ext-json": "*",
  2964. "ext-pdo": "*",
  2965. "php": ">=7.1.0",
  2966. "psr/log": "^1.0|^2.0",
  2967. "psr/simple-cache": "^1.0|^2.0",
  2968. "topthink/think-helper": "^3.1"
  2969. },
  2970. "require-dev": {
  2971. "phpunit/phpunit": "^7|^8|^9.5"
  2972. },
  2973. "time": "2023-03-19T04:51:56+00:00",
  2974. "type": "library",
  2975. "installation-source": "dist",
  2976. "autoload": {
  2977. "files": [
  2978. "stubs/load_stubs.php"
  2979. ],
  2980. "psr-4": {
  2981. "think\\": "src"
  2982. }
  2983. },
  2984. "notification-url": "https://packagist.org/downloads/",
  2985. "license": [
  2986. "Apache-2.0"
  2987. ],
  2988. "authors": [
  2989. {
  2990. "name": "liu21st",
  2991. "email": "liu21st@gmail.com"
  2992. }
  2993. ],
  2994. "description": "think orm",
  2995. "keywords": [
  2996. "database",
  2997. "orm"
  2998. ],
  2999. "support": {
  3000. "issues": "https://github.com/top-think/think-orm/issues",
  3001. "source": "https://github.com/top-think/think-orm/tree/v2.0.60"
  3002. },
  3003. "install-path": "../topthink/think-orm"
  3004. },
  3005. {
  3006. "name": "topthink/think-trace",
  3007. "version": "v1.6",
  3008. "version_normalized": "1.6.0.0",
  3009. "source": {
  3010. "type": "git",
  3011. "url": "https://github.com/top-think/think-trace.git",
  3012. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  3013. },
  3014. "dist": {
  3015. "type": "zip",
  3016. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  3017. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  3018. "shasum": ""
  3019. },
  3020. "require": {
  3021. "php": ">=7.1.0",
  3022. "topthink/framework": "^6.0|^8.0"
  3023. },
  3024. "time": "2023-02-07T08:36:32+00:00",
  3025. "type": "library",
  3026. "extra": {
  3027. "think": {
  3028. "services": [
  3029. "think\\trace\\Service"
  3030. ],
  3031. "config": {
  3032. "trace": "src/config.php"
  3033. }
  3034. }
  3035. },
  3036. "installation-source": "dist",
  3037. "autoload": {
  3038. "psr-4": {
  3039. "think\\trace\\": "src"
  3040. }
  3041. },
  3042. "notification-url": "https://packagist.org/downloads/",
  3043. "license": [
  3044. "Apache-2.0"
  3045. ],
  3046. "authors": [
  3047. {
  3048. "name": "liu21st",
  3049. "email": "liu21st@gmail.com"
  3050. }
  3051. ],
  3052. "description": "thinkphp debug trace",
  3053. "support": {
  3054. "issues": "https://github.com/top-think/think-trace/issues",
  3055. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  3056. },
  3057. "install-path": "../topthink/think-trace"
  3058. },
  3059. {
  3060. "name": "xxtime/flysystem-aliyun-oss",
  3061. "version": "1.5.0",
  3062. "version_normalized": "1.5.0.0",
  3063. "source": {
  3064. "type": "git",
  3065. "url": "https://github.com/xxtime/flysystem-aliyun-oss.git",
  3066. "reference": "ae873b5919076157b9cfeaf39d2f56d2dbb39ee9"
  3067. },
  3068. "dist": {
  3069. "type": "zip",
  3070. "url": "https://api.github.com/repos/xxtime/flysystem-aliyun-oss/zipball/ae873b5919076157b9cfeaf39d2f56d2dbb39ee9",
  3071. "reference": "ae873b5919076157b9cfeaf39d2f56d2dbb39ee9",
  3072. "shasum": ""
  3073. },
  3074. "require": {
  3075. "aliyuncs/oss-sdk-php": "~2.3",
  3076. "league/flysystem": "^1.0.49",
  3077. "php": ">=5.5.0"
  3078. },
  3079. "time": "2019-11-12T07:57:34+00:00",
  3080. "type": "library",
  3081. "installation-source": "dist",
  3082. "autoload": {
  3083. "psr-4": {
  3084. "Xxtime\\Flysystem\\Aliyun\\": "src/"
  3085. }
  3086. },
  3087. "notification-url": "https://packagist.org/downloads/",
  3088. "license": [
  3089. "MIT"
  3090. ],
  3091. "authors": [
  3092. {
  3093. "name": "Joe",
  3094. "email": "joe@xxtime.com",
  3095. "homepage": "https://github.com/xxtime",
  3096. "role": "Developer"
  3097. }
  3098. ],
  3099. "description": "AliYun OSS adapter for flysystem. aliyuncs/oss-sdk-php ~2.3",
  3100. "homepage": "https://github.com/xxtime/flysystem-aliyun-oss",
  3101. "keywords": [
  3102. "Flysystem",
  3103. "aliyun-oss",
  3104. "flysystem-aliyun-oss"
  3105. ],
  3106. "support": {
  3107. "email": "joe@xxtime.com",
  3108. "issues": "https://github.com/xxtime/flysystem-aliyun-oss/issues",
  3109. "source": "https://github.com/xxtime/flysystem-aliyun-oss/tree/1.5.0",
  3110. "wiki": "https://github.com/xxtime"
  3111. },
  3112. "install-path": "../xxtime/flysystem-aliyun-oss"
  3113. },
  3114. {
  3115. "name": "zhushide/think-orm-elasticsearch",
  3116. "version": "v0.2.5",
  3117. "version_normalized": "0.2.5.0",
  3118. "source": {
  3119. "type": "git",
  3120. "url": "https://gitee.com/zhushide/think-orm-elasticsearch.git",
  3121. "reference": "2668c49f59283790c34f5e3af0b4d2a5853e7bc0"
  3122. },
  3123. "require": {
  3124. "elasticsearch/elasticsearch": "^7.10",
  3125. "php": ">=7.1.0",
  3126. "topthink/think-orm": "^2.0"
  3127. },
  3128. "time": "2023-05-15T03:04:41+00:00",
  3129. "type": "library",
  3130. "installation-source": "source",
  3131. "autoload": {
  3132. "psr-4": {
  3133. "think\\db\\": "src"
  3134. }
  3135. },
  3136. "notification-url": "https://packagist.org/downloads/",
  3137. "license": [
  3138. "Apache-2.0"
  3139. ],
  3140. "authors": [
  3141. {
  3142. "name": "zhushide",
  3143. "email": "zhushide@126.com"
  3144. }
  3145. ],
  3146. "description": "think orm elasticsearch",
  3147. "keywords": [
  3148. "elasticsearch",
  3149. "orm",
  3150. "thinkphp"
  3151. ],
  3152. "install-path": "../zhushide/think-orm-elasticsearch"
  3153. }
  3154. ],
  3155. "dev": true,
  3156. "dev-package-names": [
  3157. "symfony/polyfill-mbstring",
  3158. "symfony/polyfill-php72",
  3159. "symfony/var-dumper",
  3160. "topthink/think-trace"
  3161. ]
  3162. }