composer.lock 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "20d75f6fa095054a224e79cdb11cbe2a",
  8. "packages": [
  9. {
  10. "name": "death_satan/think-qiniu-storage",
  11. "version": "1.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Death-Satan/think-qiniu-storage.git",
  15. "reference": "56cb8a872934be74ac76131146d243e8a426ecb0"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Death-Satan/think-qiniu-storage/zipball/56cb8a872934be74ac76131146d243e8a426ecb0",
  20. "reference": "56cb8a872934be74ac76131146d243e8a426ecb0",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "topthink/framework": "^6.0.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "think\\filesystem\\driver\\": "src"
  30. }
  31. },
  32. "notification-url": "https://packagist.org/downloads/",
  33. "license": [
  34. "Apache2.0"
  35. ],
  36. "authors": [
  37. {
  38. "name": "death-satan",
  39. "email": "2771717608@qq.com"
  40. }
  41. ],
  42. "description": "thinkphp6七牛云驱动",
  43. "keywords": [
  44. "qiniu",
  45. "thinkphp6",
  46. "thinkphp驱动",
  47. "七牛云"
  48. ],
  49. "support": {
  50. "issues": "https://github.com/Death-Satan/think-qiniu-storage/issues",
  51. "source": "https://github.com/Death-Satan/think-qiniu-storage/tree/1.0"
  52. },
  53. "time": "2021-01-02T06:33:16+00:00"
  54. },
  55. {
  56. "name": "easywechat-composer/easywechat-composer",
  57. "version": "1.4.1",
  58. "source": {
  59. "type": "git",
  60. "url": "https://github.com/mingyoung/easywechat-composer.git",
  61. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  62. },
  63. "dist": {
  64. "type": "zip",
  65. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  66. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  67. "shasum": ""
  68. },
  69. "require": {
  70. "composer-plugin-api": "^1.0 || ^2.0",
  71. "php": ">=7.0"
  72. },
  73. "require-dev": {
  74. "composer/composer": "^1.0 || ^2.0",
  75. "phpunit/phpunit": "^6.5 || ^7.0"
  76. },
  77. "type": "composer-plugin",
  78. "extra": {
  79. "class": "EasyWeChatComposer\\Plugin"
  80. },
  81. "autoload": {
  82. "psr-4": {
  83. "EasyWeChatComposer\\": "src/"
  84. }
  85. },
  86. "notification-url": "https://packagist.org/downloads/",
  87. "license": [
  88. "MIT"
  89. ],
  90. "authors": [
  91. {
  92. "name": "张铭阳",
  93. "email": "mingyoungcheung@gmail.com"
  94. }
  95. ],
  96. "description": "The composer plugin for EasyWeChat",
  97. "support": {
  98. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  99. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  100. },
  101. "time": "2021-07-05T04:03:22+00:00"
  102. },
  103. {
  104. "name": "ezyang/htmlpurifier",
  105. "version": "v4.16.0",
  106. "source": {
  107. "type": "git",
  108. "url": "https://github.com/ezyang/htmlpurifier.git",
  109. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  110. },
  111. "dist": {
  112. "type": "zip",
  113. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  114. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  115. "shasum": ""
  116. },
  117. "require": {
  118. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  119. },
  120. "require-dev": {
  121. "cerdic/css-tidy": "^1.7 || ^2.0",
  122. "simpletest/simpletest": "dev-master"
  123. },
  124. "suggest": {
  125. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  126. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  127. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  128. "ext-tidy": "Used for pretty-printing HTML"
  129. },
  130. "type": "library",
  131. "autoload": {
  132. "files": [
  133. "library/HTMLPurifier.composer.php"
  134. ],
  135. "psr-0": {
  136. "HTMLPurifier": "library/"
  137. },
  138. "exclude-from-classmap": [
  139. "/library/HTMLPurifier/Language/"
  140. ]
  141. },
  142. "notification-url": "https://packagist.org/downloads/",
  143. "license": [
  144. "LGPL-2.1-or-later"
  145. ],
  146. "authors": [
  147. {
  148. "name": "Edward Z. Yang",
  149. "email": "admin@htmlpurifier.org",
  150. "homepage": "http://ezyang.com"
  151. }
  152. ],
  153. "description": "Standards compliant HTML filter written in PHP",
  154. "homepage": "http://htmlpurifier.org/",
  155. "keywords": [
  156. "html"
  157. ],
  158. "support": {
  159. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  160. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  161. },
  162. "time": "2022-09-18T07:06:19+00:00"
  163. },
  164. {
  165. "name": "firebase/php-jwt",
  166. "version": "v6.9.0",
  167. "source": {
  168. "type": "git",
  169. "url": "https://github.com/firebase/php-jwt.git",
  170. "reference": "f03270e63eaccf3019ef0f32849c497385774e11"
  171. },
  172. "dist": {
  173. "type": "zip",
  174. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/f03270e63eaccf3019ef0f32849c497385774e11",
  175. "reference": "f03270e63eaccf3019ef0f32849c497385774e11",
  176. "shasum": ""
  177. },
  178. "require": {
  179. "php": "^7.4||^8.0"
  180. },
  181. "require-dev": {
  182. "guzzlehttp/guzzle": "^6.5||^7.4",
  183. "phpspec/prophecy-phpunit": "^2.0",
  184. "phpunit/phpunit": "^9.5",
  185. "psr/cache": "^1.0||^2.0",
  186. "psr/http-client": "^1.0",
  187. "psr/http-factory": "^1.0"
  188. },
  189. "suggest": {
  190. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  191. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  192. },
  193. "type": "library",
  194. "autoload": {
  195. "psr-4": {
  196. "Firebase\\JWT\\": "src"
  197. }
  198. },
  199. "notification-url": "https://packagist.org/downloads/",
  200. "license": [
  201. "BSD-3-Clause"
  202. ],
  203. "authors": [
  204. {
  205. "name": "Neuman Vong",
  206. "email": "neuman+pear@twilio.com",
  207. "role": "Developer"
  208. },
  209. {
  210. "name": "Anant Narayanan",
  211. "email": "anant@php.net",
  212. "role": "Developer"
  213. }
  214. ],
  215. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  216. "homepage": "https://github.com/firebase/php-jwt",
  217. "keywords": [
  218. "jwt",
  219. "php"
  220. ],
  221. "support": {
  222. "issues": "https://github.com/firebase/php-jwt/issues",
  223. "source": "https://github.com/firebase/php-jwt/tree/v6.9.0"
  224. },
  225. "time": "2023-10-05T00:24:42+00:00"
  226. },
  227. {
  228. "name": "guzzlehttp/guzzle",
  229. "version": "7.8.0",
  230. "source": {
  231. "type": "git",
  232. "url": "https://github.com/guzzle/guzzle.git",
  233. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9"
  234. },
  235. "dist": {
  236. "type": "zip",
  237. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  238. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  239. "shasum": ""
  240. },
  241. "require": {
  242. "ext-json": "*",
  243. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  244. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  245. "php": "^7.2.5 || ^8.0",
  246. "psr/http-client": "^1.0",
  247. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  248. },
  249. "provide": {
  250. "psr/http-client-implementation": "1.0"
  251. },
  252. "require-dev": {
  253. "bamarni/composer-bin-plugin": "^1.8.1",
  254. "ext-curl": "*",
  255. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  256. "php-http/message-factory": "^1.1",
  257. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  258. "psr/log": "^1.1 || ^2.0 || ^3.0"
  259. },
  260. "suggest": {
  261. "ext-curl": "Required for CURL handler support",
  262. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  263. "psr/log": "Required for using the Log middleware"
  264. },
  265. "type": "library",
  266. "extra": {
  267. "bamarni-bin": {
  268. "bin-links": true,
  269. "forward-command": false
  270. }
  271. },
  272. "autoload": {
  273. "files": [
  274. "src/functions_include.php"
  275. ],
  276. "psr-4": {
  277. "GuzzleHttp\\": "src/"
  278. }
  279. },
  280. "notification-url": "https://packagist.org/downloads/",
  281. "license": [
  282. "MIT"
  283. ],
  284. "authors": [
  285. {
  286. "name": "Graham Campbell",
  287. "email": "hello@gjcampbell.co.uk",
  288. "homepage": "https://github.com/GrahamCampbell"
  289. },
  290. {
  291. "name": "Michael Dowling",
  292. "email": "mtdowling@gmail.com",
  293. "homepage": "https://github.com/mtdowling"
  294. },
  295. {
  296. "name": "Jeremy Lindblom",
  297. "email": "jeremeamia@gmail.com",
  298. "homepage": "https://github.com/jeremeamia"
  299. },
  300. {
  301. "name": "George Mponos",
  302. "email": "gmponos@gmail.com",
  303. "homepage": "https://github.com/gmponos"
  304. },
  305. {
  306. "name": "Tobias Nyholm",
  307. "email": "tobias.nyholm@gmail.com",
  308. "homepage": "https://github.com/Nyholm"
  309. },
  310. {
  311. "name": "Márk Sági-Kazár",
  312. "email": "mark.sagikazar@gmail.com",
  313. "homepage": "https://github.com/sagikazarmark"
  314. },
  315. {
  316. "name": "Tobias Schultze",
  317. "email": "webmaster@tubo-world.de",
  318. "homepage": "https://github.com/Tobion"
  319. }
  320. ],
  321. "description": "Guzzle is a PHP HTTP client library",
  322. "keywords": [
  323. "client",
  324. "curl",
  325. "framework",
  326. "http",
  327. "http client",
  328. "psr-18",
  329. "psr-7",
  330. "rest",
  331. "web service"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/guzzle/guzzle/issues",
  335. "source": "https://github.com/guzzle/guzzle/tree/7.8.0"
  336. },
  337. "funding": [
  338. {
  339. "url": "https://github.com/GrahamCampbell",
  340. "type": "github"
  341. },
  342. {
  343. "url": "https://github.com/Nyholm",
  344. "type": "github"
  345. },
  346. {
  347. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  348. "type": "tidelift"
  349. }
  350. ],
  351. "time": "2023-08-27T10:20:53+00:00"
  352. },
  353. {
  354. "name": "guzzlehttp/promises",
  355. "version": "2.0.1",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/guzzle/promises.git",
  359. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  364. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  365. "shasum": ""
  366. },
  367. "require": {
  368. "php": "^7.2.5 || ^8.0"
  369. },
  370. "require-dev": {
  371. "bamarni/composer-bin-plugin": "^1.8.1",
  372. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  373. },
  374. "type": "library",
  375. "extra": {
  376. "bamarni-bin": {
  377. "bin-links": true,
  378. "forward-command": false
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "GuzzleHttp\\Promise\\": "src/"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Graham Campbell",
  393. "email": "hello@gjcampbell.co.uk",
  394. "homepage": "https://github.com/GrahamCampbell"
  395. },
  396. {
  397. "name": "Michael Dowling",
  398. "email": "mtdowling@gmail.com",
  399. "homepage": "https://github.com/mtdowling"
  400. },
  401. {
  402. "name": "Tobias Nyholm",
  403. "email": "tobias.nyholm@gmail.com",
  404. "homepage": "https://github.com/Nyholm"
  405. },
  406. {
  407. "name": "Tobias Schultze",
  408. "email": "webmaster@tubo-world.de",
  409. "homepage": "https://github.com/Tobion"
  410. }
  411. ],
  412. "description": "Guzzle promises library",
  413. "keywords": [
  414. "promise"
  415. ],
  416. "support": {
  417. "issues": "https://github.com/guzzle/promises/issues",
  418. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  419. },
  420. "funding": [
  421. {
  422. "url": "https://github.com/GrahamCampbell",
  423. "type": "github"
  424. },
  425. {
  426. "url": "https://github.com/Nyholm",
  427. "type": "github"
  428. },
  429. {
  430. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  431. "type": "tidelift"
  432. }
  433. ],
  434. "time": "2023-08-03T15:11:55+00:00"
  435. },
  436. {
  437. "name": "guzzlehttp/psr7",
  438. "version": "2.6.1",
  439. "source": {
  440. "type": "git",
  441. "url": "https://github.com/guzzle/psr7.git",
  442. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
  443. },
  444. "dist": {
  445. "type": "zip",
  446. "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  447. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  448. "shasum": ""
  449. },
  450. "require": {
  451. "php": "^7.2.5 || ^8.0",
  452. "psr/http-factory": "^1.0",
  453. "psr/http-message": "^1.1 || ^2.0",
  454. "ralouphie/getallheaders": "^3.0"
  455. },
  456. "provide": {
  457. "psr/http-factory-implementation": "1.0",
  458. "psr/http-message-implementation": "1.0"
  459. },
  460. "require-dev": {
  461. "bamarni/composer-bin-plugin": "^1.8.1",
  462. "http-interop/http-factory-tests": "^0.9",
  463. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  464. },
  465. "suggest": {
  466. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "bamarni-bin": {
  471. "bin-links": true,
  472. "forward-command": false
  473. }
  474. },
  475. "autoload": {
  476. "psr-4": {
  477. "GuzzleHttp\\Psr7\\": "src/"
  478. }
  479. },
  480. "notification-url": "https://packagist.org/downloads/",
  481. "license": [
  482. "MIT"
  483. ],
  484. "authors": [
  485. {
  486. "name": "Graham Campbell",
  487. "email": "hello@gjcampbell.co.uk",
  488. "homepage": "https://github.com/GrahamCampbell"
  489. },
  490. {
  491. "name": "Michael Dowling",
  492. "email": "mtdowling@gmail.com",
  493. "homepage": "https://github.com/mtdowling"
  494. },
  495. {
  496. "name": "George Mponos",
  497. "email": "gmponos@gmail.com",
  498. "homepage": "https://github.com/gmponos"
  499. },
  500. {
  501. "name": "Tobias Nyholm",
  502. "email": "tobias.nyholm@gmail.com",
  503. "homepage": "https://github.com/Nyholm"
  504. },
  505. {
  506. "name": "Márk Sági-Kazár",
  507. "email": "mark.sagikazar@gmail.com",
  508. "homepage": "https://github.com/sagikazarmark"
  509. },
  510. {
  511. "name": "Tobias Schultze",
  512. "email": "webmaster@tubo-world.de",
  513. "homepage": "https://github.com/Tobion"
  514. },
  515. {
  516. "name": "Márk Sági-Kazár",
  517. "email": "mark.sagikazar@gmail.com",
  518. "homepage": "https://sagikazarmark.hu"
  519. }
  520. ],
  521. "description": "PSR-7 message implementation that also provides common utility methods",
  522. "keywords": [
  523. "http",
  524. "message",
  525. "psr-7",
  526. "request",
  527. "response",
  528. "stream",
  529. "uri",
  530. "url"
  531. ],
  532. "support": {
  533. "issues": "https://github.com/guzzle/psr7/issues",
  534. "source": "https://github.com/guzzle/psr7/tree/2.6.1"
  535. },
  536. "funding": [
  537. {
  538. "url": "https://github.com/GrahamCampbell",
  539. "type": "github"
  540. },
  541. {
  542. "url": "https://github.com/Nyholm",
  543. "type": "github"
  544. },
  545. {
  546. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  547. "type": "tidelift"
  548. }
  549. ],
  550. "time": "2023-08-27T10:13:57+00:00"
  551. },
  552. {
  553. "name": "league/flysystem",
  554. "version": "2.5.0",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/thephpleague/flysystem.git",
  558. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  563. "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "ext-json": "*",
  568. "league/mime-type-detection": "^1.0.0",
  569. "php": "^7.2 || ^8.0"
  570. },
  571. "conflict": {
  572. "guzzlehttp/ringphp": "<1.1.1"
  573. },
  574. "require-dev": {
  575. "async-aws/s3": "^1.5",
  576. "async-aws/simple-s3": "^1.0",
  577. "aws/aws-sdk-php": "^3.132.4",
  578. "composer/semver": "^3.0",
  579. "ext-fileinfo": "*",
  580. "ext-ftp": "*",
  581. "friendsofphp/php-cs-fixer": "^3.2",
  582. "google/cloud-storage": "^1.23",
  583. "phpseclib/phpseclib": "^2.0",
  584. "phpstan/phpstan": "^0.12.26",
  585. "phpunit/phpunit": "^8.5 || ^9.4",
  586. "sabre/dav": "^4.1"
  587. },
  588. "type": "library",
  589. "autoload": {
  590. "psr-4": {
  591. "League\\Flysystem\\": "src"
  592. }
  593. },
  594. "notification-url": "https://packagist.org/downloads/",
  595. "license": [
  596. "MIT"
  597. ],
  598. "authors": [
  599. {
  600. "name": "Frank de Jonge",
  601. "email": "info@frankdejonge.nl"
  602. }
  603. ],
  604. "description": "File storage abstraction for PHP",
  605. "keywords": [
  606. "WebDAV",
  607. "aws",
  608. "cloud",
  609. "file",
  610. "files",
  611. "filesystem",
  612. "filesystems",
  613. "ftp",
  614. "s3",
  615. "sftp",
  616. "storage"
  617. ],
  618. "support": {
  619. "issues": "https://github.com/thephpleague/flysystem/issues",
  620. "source": "https://github.com/thephpleague/flysystem/tree/2.5.0"
  621. },
  622. "funding": [
  623. {
  624. "url": "https://ecologi.com/frankdejonge",
  625. "type": "custom"
  626. },
  627. {
  628. "url": "https://github.com/frankdejonge",
  629. "type": "github"
  630. },
  631. {
  632. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  633. "type": "tidelift"
  634. }
  635. ],
  636. "time": "2022-09-17T21:02:32+00:00"
  637. },
  638. {
  639. "name": "league/mime-type-detection",
  640. "version": "1.14.0",
  641. "source": {
  642. "type": "git",
  643. "url": "https://github.com/thephpleague/mime-type-detection.git",
  644. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
  645. },
  646. "dist": {
  647. "type": "zip",
  648. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
  649. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  650. "shasum": ""
  651. },
  652. "require": {
  653. "ext-fileinfo": "*",
  654. "php": "^7.4 || ^8.0"
  655. },
  656. "require-dev": {
  657. "friendsofphp/php-cs-fixer": "^3.2",
  658. "phpstan/phpstan": "^0.12.68",
  659. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  660. },
  661. "type": "library",
  662. "autoload": {
  663. "psr-4": {
  664. "League\\MimeTypeDetection\\": "src"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Frank de Jonge",
  674. "email": "info@frankdejonge.nl"
  675. }
  676. ],
  677. "description": "Mime-type detection for Flysystem",
  678. "support": {
  679. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  680. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
  681. },
  682. "funding": [
  683. {
  684. "url": "https://github.com/frankdejonge",
  685. "type": "github"
  686. },
  687. {
  688. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  689. "type": "tidelift"
  690. }
  691. ],
  692. "time": "2023-10-17T14:13:20+00:00"
  693. },
  694. {
  695. "name": "monolog/monolog",
  696. "version": "2.9.1",
  697. "source": {
  698. "type": "git",
  699. "url": "https://github.com/Seldaek/monolog.git",
  700. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  701. },
  702. "dist": {
  703. "type": "zip",
  704. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  705. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  706. "shasum": ""
  707. },
  708. "require": {
  709. "php": ">=7.2",
  710. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  711. },
  712. "provide": {
  713. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  714. },
  715. "require-dev": {
  716. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  717. "doctrine/couchdb": "~1.0@dev",
  718. "elasticsearch/elasticsearch": "^7 || ^8",
  719. "ext-json": "*",
  720. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  721. "guzzlehttp/guzzle": "^7.4",
  722. "guzzlehttp/psr7": "^2.2",
  723. "mongodb/mongodb": "^1.8",
  724. "php-amqplib/php-amqplib": "~2.4 || ^3",
  725. "phpspec/prophecy": "^1.15",
  726. "phpstan/phpstan": "^0.12.91",
  727. "phpunit/phpunit": "^8.5.14",
  728. "predis/predis": "^1.1 || ^2.0",
  729. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  730. "ruflin/elastica": "^7",
  731. "swiftmailer/swiftmailer": "^5.3|^6.0",
  732. "symfony/mailer": "^5.4 || ^6",
  733. "symfony/mime": "^5.4 || ^6"
  734. },
  735. "suggest": {
  736. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  737. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  738. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  739. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  740. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  741. "ext-mbstring": "Allow to work properly with unicode symbols",
  742. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  743. "ext-openssl": "Required to send log messages using SSL",
  744. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  745. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  746. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  747. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  748. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  749. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "branch-alias": {
  754. "dev-main": "2.x-dev"
  755. }
  756. },
  757. "autoload": {
  758. "psr-4": {
  759. "Monolog\\": "src/Monolog"
  760. }
  761. },
  762. "notification-url": "https://packagist.org/downloads/",
  763. "license": [
  764. "MIT"
  765. ],
  766. "authors": [
  767. {
  768. "name": "Jordi Boggiano",
  769. "email": "j.boggiano@seld.be",
  770. "homepage": "https://seld.be"
  771. }
  772. ],
  773. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  774. "homepage": "https://github.com/Seldaek/monolog",
  775. "keywords": [
  776. "log",
  777. "logging",
  778. "psr-3"
  779. ],
  780. "support": {
  781. "issues": "https://github.com/Seldaek/monolog/issues",
  782. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  783. },
  784. "funding": [
  785. {
  786. "url": "https://github.com/Seldaek",
  787. "type": "github"
  788. },
  789. {
  790. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  791. "type": "tidelift"
  792. }
  793. ],
  794. "time": "2023-02-06T13:44:46+00:00"
  795. },
  796. {
  797. "name": "myclabs/php-enum",
  798. "version": "1.8.4",
  799. "source": {
  800. "type": "git",
  801. "url": "https://github.com/myclabs/php-enum.git",
  802. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  803. },
  804. "dist": {
  805. "type": "zip",
  806. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  807. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  808. "shasum": ""
  809. },
  810. "require": {
  811. "ext-json": "*",
  812. "php": "^7.3 || ^8.0"
  813. },
  814. "require-dev": {
  815. "phpunit/phpunit": "^9.5",
  816. "squizlabs/php_codesniffer": "1.*",
  817. "vimeo/psalm": "^4.6.2"
  818. },
  819. "type": "library",
  820. "autoload": {
  821. "psr-4": {
  822. "MyCLabs\\Enum\\": "src/"
  823. },
  824. "classmap": [
  825. "stubs/Stringable.php"
  826. ]
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "PHP Enum contributors",
  835. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  836. }
  837. ],
  838. "description": "PHP Enum implementation",
  839. "homepage": "http://github.com/myclabs/php-enum",
  840. "keywords": [
  841. "enum"
  842. ],
  843. "support": {
  844. "issues": "https://github.com/myclabs/php-enum/issues",
  845. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  846. },
  847. "funding": [
  848. {
  849. "url": "https://github.com/mnapoli",
  850. "type": "github"
  851. },
  852. {
  853. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  854. "type": "tidelift"
  855. }
  856. ],
  857. "time": "2022-08-04T09:53:51+00:00"
  858. },
  859. {
  860. "name": "overtrue/socialite",
  861. "version": "3.5.4",
  862. "source": {
  863. "type": "git",
  864. "url": "https://github.com/overtrue/socialite.git",
  865. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48"
  866. },
  867. "dist": {
  868. "type": "zip",
  869. "url": "https://api.github.com/repos/overtrue/socialite/zipball/6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  870. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  871. "shasum": ""
  872. },
  873. "require": {
  874. "ext-json": "*",
  875. "ext-openssl": "*",
  876. "guzzlehttp/guzzle": "~6.0|~7.0",
  877. "php": ">=7.4",
  878. "symfony/http-foundation": "^5.0",
  879. "symfony/psr-http-message-bridge": "^2.0"
  880. },
  881. "require-dev": {
  882. "friendsofphp/php-cs-fixer": "^3.0",
  883. "mockery/mockery": "~1.2",
  884. "phpunit/phpunit": "~9.0"
  885. },
  886. "type": "library",
  887. "autoload": {
  888. "psr-4": {
  889. "Overtrue\\Socialite\\": "src/"
  890. }
  891. },
  892. "notification-url": "https://packagist.org/downloads/",
  893. "license": [
  894. "MIT"
  895. ],
  896. "authors": [
  897. {
  898. "name": "overtrue",
  899. "email": "anzhengchao@gmail.com"
  900. }
  901. ],
  902. "description": "A collection of OAuth 2 packages.",
  903. "keywords": [
  904. "Feishu",
  905. "login",
  906. "oauth",
  907. "qcloud",
  908. "qq",
  909. "social",
  910. "wechat",
  911. "weibo"
  912. ],
  913. "support": {
  914. "issues": "https://github.com/overtrue/socialite/issues",
  915. "source": "https://github.com/overtrue/socialite/tree/3.5.4"
  916. },
  917. "funding": [
  918. {
  919. "url": "https://github.com/overtrue",
  920. "type": "github"
  921. }
  922. ],
  923. "time": "2022-11-19T13:32:42+00:00"
  924. },
  925. {
  926. "name": "overtrue/wechat",
  927. "version": "5.34.1",
  928. "source": {
  929. "type": "git",
  930. "url": "https://github.com/w7corp/easywechat.git",
  931. "reference": "1c31e8208aa9961b80e2d9f3761dd46337fd017b"
  932. },
  933. "dist": {
  934. "type": "zip",
  935. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/1c31e8208aa9961b80e2d9f3761dd46337fd017b",
  936. "reference": "1c31e8208aa9961b80e2d9f3761dd46337fd017b",
  937. "shasum": ""
  938. },
  939. "require": {
  940. "easywechat-composer/easywechat-composer": "^1.1",
  941. "ext-fileinfo": "*",
  942. "ext-libxml": "*",
  943. "ext-openssl": "*",
  944. "ext-simplexml": "*",
  945. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  946. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  947. "overtrue/socialite": "^3.2 || ^4.0",
  948. "php": ">=7.4",
  949. "pimple/pimple": "^3.0",
  950. "psr/simple-cache": "^1.0||^2.0||^3.0",
  951. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  952. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  953. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
  954. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  955. },
  956. "require-dev": {
  957. "brainmaestro/composer-git-hooks": "^2.7",
  958. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  959. "friendsofphp/php-cs-fixer": "^3.5.0",
  960. "mikey179/vfsstream": "^1.6",
  961. "mockery/mockery": "^1.2.3",
  962. "phpstan/phpstan": "^0.12.0",
  963. "phpunit/phpunit": "^9.3"
  964. },
  965. "type": "library",
  966. "extra": {
  967. "hooks": {
  968. "pre-commit": [
  969. "composer test",
  970. "composer fix-style"
  971. ],
  972. "pre-push": [
  973. "composer test",
  974. "composer fix-style"
  975. ]
  976. }
  977. },
  978. "autoload": {
  979. "files": [
  980. "src/Kernel/Support/Helpers.php",
  981. "src/Kernel/Helpers.php"
  982. ],
  983. "psr-4": {
  984. "EasyWeChat\\": "src/"
  985. }
  986. },
  987. "notification-url": "https://packagist.org/downloads/",
  988. "license": [
  989. "MIT"
  990. ],
  991. "authors": [
  992. {
  993. "name": "overtrue",
  994. "email": "anzhengchao@gmail.com"
  995. }
  996. ],
  997. "description": "微信SDK",
  998. "keywords": [
  999. "easywechat",
  1000. "sdk",
  1001. "wechat",
  1002. "weixin",
  1003. "weixin-sdk"
  1004. ],
  1005. "support": {
  1006. "issues": "https://github.com/w7corp/easywechat/issues",
  1007. "source": "https://github.com/w7corp/easywechat/tree/5.34.1"
  1008. },
  1009. "funding": [
  1010. {
  1011. "url": "https://github.com/overtrue",
  1012. "type": "github"
  1013. }
  1014. ],
  1015. "abandoned": "w7corp/easywechat",
  1016. "time": "2023-07-29T09:39:45+00:00"
  1017. },
  1018. {
  1019. "name": "phpmailer/phpmailer",
  1020. "version": "v6.8.1",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/PHPMailer/PHPMailer.git",
  1024. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  1029. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "ext-ctype": "*",
  1034. "ext-filter": "*",
  1035. "ext-hash": "*",
  1036. "php": ">=5.5.0"
  1037. },
  1038. "require-dev": {
  1039. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  1040. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  1041. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  1042. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  1043. "phpcompatibility/php-compatibility": "^9.3.5",
  1044. "roave/security-advisories": "dev-latest",
  1045. "squizlabs/php_codesniffer": "^3.7.2",
  1046. "yoast/phpunit-polyfills": "^1.0.4"
  1047. },
  1048. "suggest": {
  1049. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  1050. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  1051. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  1052. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  1053. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  1054. "psr/log": "For optional PSR-3 debug logging",
  1055. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  1056. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  1057. },
  1058. "type": "library",
  1059. "autoload": {
  1060. "psr-4": {
  1061. "PHPMailer\\PHPMailer\\": "src/"
  1062. }
  1063. },
  1064. "notification-url": "https://packagist.org/downloads/",
  1065. "license": [
  1066. "LGPL-2.1-only"
  1067. ],
  1068. "authors": [
  1069. {
  1070. "name": "Marcus Bointon",
  1071. "email": "phpmailer@synchromedia.co.uk"
  1072. },
  1073. {
  1074. "name": "Jim Jagielski",
  1075. "email": "jimjag@gmail.com"
  1076. },
  1077. {
  1078. "name": "Andy Prevost",
  1079. "email": "codeworxtech@users.sourceforge.net"
  1080. },
  1081. {
  1082. "name": "Brent R. Matzelle"
  1083. }
  1084. ],
  1085. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  1086. "support": {
  1087. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  1088. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  1089. },
  1090. "funding": [
  1091. {
  1092. "url": "https://github.com/Synchro",
  1093. "type": "github"
  1094. }
  1095. ],
  1096. "time": "2023-08-29T08:26:30+00:00"
  1097. },
  1098. {
  1099. "name": "pimple/pimple",
  1100. "version": "v3.5.0",
  1101. "source": {
  1102. "type": "git",
  1103. "url": "https://github.com/silexphp/Pimple.git",
  1104. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  1105. },
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1109. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1110. "shasum": ""
  1111. },
  1112. "require": {
  1113. "php": ">=7.2.5",
  1114. "psr/container": "^1.1 || ^2.0"
  1115. },
  1116. "require-dev": {
  1117. "symfony/phpunit-bridge": "^5.4@dev"
  1118. },
  1119. "type": "library",
  1120. "extra": {
  1121. "branch-alias": {
  1122. "dev-master": "3.4.x-dev"
  1123. }
  1124. },
  1125. "autoload": {
  1126. "psr-0": {
  1127. "Pimple": "src/"
  1128. }
  1129. },
  1130. "notification-url": "https://packagist.org/downloads/",
  1131. "license": [
  1132. "MIT"
  1133. ],
  1134. "authors": [
  1135. {
  1136. "name": "Fabien Potencier",
  1137. "email": "fabien@symfony.com"
  1138. }
  1139. ],
  1140. "description": "Pimple, a simple Dependency Injection Container",
  1141. "homepage": "https://pimple.symfony.com",
  1142. "keywords": [
  1143. "container",
  1144. "dependency injection"
  1145. ],
  1146. "support": {
  1147. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  1148. },
  1149. "time": "2021-10-28T11:13:42+00:00"
  1150. },
  1151. {
  1152. "name": "psr/cache",
  1153. "version": "1.0.1",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/php-fig/cache.git",
  1157. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1162. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1163. "shasum": ""
  1164. },
  1165. "require": {
  1166. "php": ">=5.3.0"
  1167. },
  1168. "type": "library",
  1169. "extra": {
  1170. "branch-alias": {
  1171. "dev-master": "1.0.x-dev"
  1172. }
  1173. },
  1174. "autoload": {
  1175. "psr-4": {
  1176. "Psr\\Cache\\": "src/"
  1177. }
  1178. },
  1179. "notification-url": "https://packagist.org/downloads/",
  1180. "license": [
  1181. "MIT"
  1182. ],
  1183. "authors": [
  1184. {
  1185. "name": "PHP-FIG",
  1186. "homepage": "http://www.php-fig.org/"
  1187. }
  1188. ],
  1189. "description": "Common interface for caching libraries",
  1190. "keywords": [
  1191. "cache",
  1192. "psr",
  1193. "psr-6"
  1194. ],
  1195. "support": {
  1196. "source": "https://github.com/php-fig/cache/tree/master"
  1197. },
  1198. "time": "2016-08-06T20:24:11+00:00"
  1199. },
  1200. {
  1201. "name": "psr/container",
  1202. "version": "1.1.2",
  1203. "source": {
  1204. "type": "git",
  1205. "url": "https://github.com/php-fig/container.git",
  1206. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1207. },
  1208. "dist": {
  1209. "type": "zip",
  1210. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1211. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1212. "shasum": ""
  1213. },
  1214. "require": {
  1215. "php": ">=7.4.0"
  1216. },
  1217. "type": "library",
  1218. "autoload": {
  1219. "psr-4": {
  1220. "Psr\\Container\\": "src/"
  1221. }
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "license": [
  1225. "MIT"
  1226. ],
  1227. "authors": [
  1228. {
  1229. "name": "PHP-FIG",
  1230. "homepage": "https://www.php-fig.org/"
  1231. }
  1232. ],
  1233. "description": "Common Container Interface (PHP FIG PSR-11)",
  1234. "homepage": "https://github.com/php-fig/container",
  1235. "keywords": [
  1236. "PSR-11",
  1237. "container",
  1238. "container-interface",
  1239. "container-interop",
  1240. "psr"
  1241. ],
  1242. "support": {
  1243. "issues": "https://github.com/php-fig/container/issues",
  1244. "source": "https://github.com/php-fig/container/tree/1.1.2"
  1245. },
  1246. "time": "2021-11-05T16:50:12+00:00"
  1247. },
  1248. {
  1249. "name": "psr/event-dispatcher",
  1250. "version": "1.0.0",
  1251. "source": {
  1252. "type": "git",
  1253. "url": "https://github.com/php-fig/event-dispatcher.git",
  1254. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1255. },
  1256. "dist": {
  1257. "type": "zip",
  1258. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1259. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1260. "shasum": ""
  1261. },
  1262. "require": {
  1263. "php": ">=7.2.0"
  1264. },
  1265. "type": "library",
  1266. "extra": {
  1267. "branch-alias": {
  1268. "dev-master": "1.0.x-dev"
  1269. }
  1270. },
  1271. "autoload": {
  1272. "psr-4": {
  1273. "Psr\\EventDispatcher\\": "src/"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "authors": [
  1281. {
  1282. "name": "PHP-FIG",
  1283. "homepage": "http://www.php-fig.org/"
  1284. }
  1285. ],
  1286. "description": "Standard interfaces for event handling.",
  1287. "keywords": [
  1288. "events",
  1289. "psr",
  1290. "psr-14"
  1291. ],
  1292. "support": {
  1293. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1294. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1295. },
  1296. "time": "2019-01-08T18:20:26+00:00"
  1297. },
  1298. {
  1299. "name": "psr/http-client",
  1300. "version": "1.0.3",
  1301. "source": {
  1302. "type": "git",
  1303. "url": "https://github.com/php-fig/http-client.git",
  1304. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1305. },
  1306. "dist": {
  1307. "type": "zip",
  1308. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1309. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1310. "shasum": ""
  1311. },
  1312. "require": {
  1313. "php": "^7.0 || ^8.0",
  1314. "psr/http-message": "^1.0 || ^2.0"
  1315. },
  1316. "type": "library",
  1317. "extra": {
  1318. "branch-alias": {
  1319. "dev-master": "1.0.x-dev"
  1320. }
  1321. },
  1322. "autoload": {
  1323. "psr-4": {
  1324. "Psr\\Http\\Client\\": "src/"
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "MIT"
  1330. ],
  1331. "authors": [
  1332. {
  1333. "name": "PHP-FIG",
  1334. "homepage": "https://www.php-fig.org/"
  1335. }
  1336. ],
  1337. "description": "Common interface for HTTP clients",
  1338. "homepage": "https://github.com/php-fig/http-client",
  1339. "keywords": [
  1340. "http",
  1341. "http-client",
  1342. "psr",
  1343. "psr-18"
  1344. ],
  1345. "support": {
  1346. "source": "https://github.com/php-fig/http-client"
  1347. },
  1348. "time": "2023-09-23T14:17:50+00:00"
  1349. },
  1350. {
  1351. "name": "psr/http-factory",
  1352. "version": "1.0.2",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/php-fig/http-factory.git",
  1356. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  1361. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  1362. "shasum": ""
  1363. },
  1364. "require": {
  1365. "php": ">=7.0.0",
  1366. "psr/http-message": "^1.0 || ^2.0"
  1367. },
  1368. "type": "library",
  1369. "extra": {
  1370. "branch-alias": {
  1371. "dev-master": "1.0.x-dev"
  1372. }
  1373. },
  1374. "autoload": {
  1375. "psr-4": {
  1376. "Psr\\Http\\Message\\": "src/"
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "MIT"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "PHP-FIG",
  1386. "homepage": "https://www.php-fig.org/"
  1387. }
  1388. ],
  1389. "description": "Common interfaces for PSR-7 HTTP message factories",
  1390. "keywords": [
  1391. "factory",
  1392. "http",
  1393. "message",
  1394. "psr",
  1395. "psr-17",
  1396. "psr-7",
  1397. "request",
  1398. "response"
  1399. ],
  1400. "support": {
  1401. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  1402. },
  1403. "time": "2023-04-10T20:10:41+00:00"
  1404. },
  1405. {
  1406. "name": "psr/http-message",
  1407. "version": "1.1",
  1408. "source": {
  1409. "type": "git",
  1410. "url": "https://github.com/php-fig/http-message.git",
  1411. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1412. },
  1413. "dist": {
  1414. "type": "zip",
  1415. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1416. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1417. "shasum": ""
  1418. },
  1419. "require": {
  1420. "php": "^7.2 || ^8.0"
  1421. },
  1422. "type": "library",
  1423. "extra": {
  1424. "branch-alias": {
  1425. "dev-master": "1.1.x-dev"
  1426. }
  1427. },
  1428. "autoload": {
  1429. "psr-4": {
  1430. "Psr\\Http\\Message\\": "src/"
  1431. }
  1432. },
  1433. "notification-url": "https://packagist.org/downloads/",
  1434. "license": [
  1435. "MIT"
  1436. ],
  1437. "authors": [
  1438. {
  1439. "name": "PHP-FIG",
  1440. "homepage": "http://www.php-fig.org/"
  1441. }
  1442. ],
  1443. "description": "Common interface for HTTP messages",
  1444. "homepage": "https://github.com/php-fig/http-message",
  1445. "keywords": [
  1446. "http",
  1447. "http-message",
  1448. "psr",
  1449. "psr-7",
  1450. "request",
  1451. "response"
  1452. ],
  1453. "support": {
  1454. "source": "https://github.com/php-fig/http-message/tree/1.1"
  1455. },
  1456. "time": "2023-04-04T09:50:52+00:00"
  1457. },
  1458. {
  1459. "name": "psr/log",
  1460. "version": "1.1.4",
  1461. "source": {
  1462. "type": "git",
  1463. "url": "https://github.com/php-fig/log.git",
  1464. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1465. },
  1466. "dist": {
  1467. "type": "zip",
  1468. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1469. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1470. "shasum": ""
  1471. },
  1472. "require": {
  1473. "php": ">=5.3.0"
  1474. },
  1475. "type": "library",
  1476. "extra": {
  1477. "branch-alias": {
  1478. "dev-master": "1.1.x-dev"
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Psr\\Log\\": "Psr/Log/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "PHP-FIG",
  1493. "homepage": "https://www.php-fig.org/"
  1494. }
  1495. ],
  1496. "description": "Common interface for logging libraries",
  1497. "homepage": "https://github.com/php-fig/log",
  1498. "keywords": [
  1499. "log",
  1500. "psr",
  1501. "psr-3"
  1502. ],
  1503. "support": {
  1504. "source": "https://github.com/php-fig/log/tree/1.1.4"
  1505. },
  1506. "time": "2021-05-03T11:20:27+00:00"
  1507. },
  1508. {
  1509. "name": "psr/simple-cache",
  1510. "version": "1.0.1",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/php-fig/simple-cache.git",
  1514. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1519. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "php": ">=5.3.0"
  1524. },
  1525. "type": "library",
  1526. "extra": {
  1527. "branch-alias": {
  1528. "dev-master": "1.0.x-dev"
  1529. }
  1530. },
  1531. "autoload": {
  1532. "psr-4": {
  1533. "Psr\\SimpleCache\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "PHP-FIG",
  1543. "homepage": "http://www.php-fig.org/"
  1544. }
  1545. ],
  1546. "description": "Common interfaces for simple caching",
  1547. "keywords": [
  1548. "cache",
  1549. "caching",
  1550. "psr",
  1551. "psr-16",
  1552. "simple-cache"
  1553. ],
  1554. "support": {
  1555. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1556. },
  1557. "time": "2017-10-23T01:57:42+00:00"
  1558. },
  1559. {
  1560. "name": "qiniu/php-sdk",
  1561. "version": "v7.12.0",
  1562. "source": {
  1563. "type": "git",
  1564. "url": "https://github.com/qiniu/php-sdk.git",
  1565. "reference": "96971af3cc6151b32e4a9d61001e126624100538"
  1566. },
  1567. "dist": {
  1568. "type": "zip",
  1569. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/96971af3cc6151b32e4a9d61001e126624100538",
  1570. "reference": "96971af3cc6151b32e4a9d61001e126624100538",
  1571. "shasum": "",
  1572. "mirrors": [
  1573. {
  1574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1575. "preferred": true
  1576. }
  1577. ]
  1578. },
  1579. "require": {
  1580. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  1581. "php": ">=5.3.3"
  1582. },
  1583. "require-dev": {
  1584. "paragonie/random_compat": ">=2",
  1585. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  1586. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  1587. },
  1588. "type": "library",
  1589. "autoload": {
  1590. "files": [
  1591. "src/Qiniu/functions.php",
  1592. "src/Qiniu/Http/Middleware/Middleware.php"
  1593. ],
  1594. "psr-4": {
  1595. "Qiniu\\": "src/Qiniu"
  1596. }
  1597. },
  1598. "notification-url": "https://packagist.org/downloads/",
  1599. "license": [
  1600. "MIT"
  1601. ],
  1602. "authors": [
  1603. {
  1604. "name": "Qiniu",
  1605. "email": "sdk@qiniu.com",
  1606. "homepage": "http://www.qiniu.com"
  1607. }
  1608. ],
  1609. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  1610. "homepage": "http://developer.qiniu.com/",
  1611. "keywords": [
  1612. "cloud",
  1613. "qiniu",
  1614. "sdk",
  1615. "storage"
  1616. ],
  1617. "support": {
  1618. "issues": "https://github.com/qiniu/php-sdk/issues",
  1619. "source": "https://github.com/qiniu/php-sdk/tree/v7.12.0"
  1620. },
  1621. "time": "2023-12-25T08:30:40+00:00"
  1622. },
  1623. {
  1624. "name": "ralouphie/getallheaders",
  1625. "version": "3.0.3",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/ralouphie/getallheaders.git",
  1629. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1634. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "php": ">=5.6"
  1639. },
  1640. "require-dev": {
  1641. "php-coveralls/php-coveralls": "^2.1",
  1642. "phpunit/phpunit": "^5 || ^6.5"
  1643. },
  1644. "type": "library",
  1645. "autoload": {
  1646. "files": [
  1647. "src/getallheaders.php"
  1648. ]
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "Ralph Khattar",
  1657. "email": "ralph.khattar@gmail.com"
  1658. }
  1659. ],
  1660. "description": "A polyfill for getallheaders.",
  1661. "support": {
  1662. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1663. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1664. },
  1665. "time": "2019-03-08T08:55:37+00:00"
  1666. },
  1667. {
  1668. "name": "symfony/cache",
  1669. "version": "v5.4.29",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/symfony/cache.git",
  1673. "reference": "e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/symfony/cache/zipball/e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151",
  1678. "reference": "e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "php": ">=7.2.5",
  1683. "psr/cache": "^1.0|^2.0",
  1684. "psr/log": "^1.1|^2|^3",
  1685. "symfony/cache-contracts": "^1.1.7|^2",
  1686. "symfony/deprecation-contracts": "^2.1|^3",
  1687. "symfony/polyfill-php73": "^1.9",
  1688. "symfony/polyfill-php80": "^1.16",
  1689. "symfony/service-contracts": "^1.1|^2|^3",
  1690. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  1691. },
  1692. "conflict": {
  1693. "doctrine/dbal": "<2.13.1",
  1694. "symfony/dependency-injection": "<4.4",
  1695. "symfony/http-kernel": "<4.4",
  1696. "symfony/var-dumper": "<4.4"
  1697. },
  1698. "provide": {
  1699. "psr/cache-implementation": "1.0|2.0",
  1700. "psr/simple-cache-implementation": "1.0|2.0",
  1701. "symfony/cache-implementation": "1.0|2.0"
  1702. },
  1703. "require-dev": {
  1704. "cache/integration-tests": "dev-master",
  1705. "doctrine/cache": "^1.6|^2.0",
  1706. "doctrine/dbal": "^2.13.1|^3.0",
  1707. "predis/predis": "^1.1",
  1708. "psr/simple-cache": "^1.0|^2.0",
  1709. "symfony/config": "^4.4|^5.0|^6.0",
  1710. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1711. "symfony/filesystem": "^4.4|^5.0|^6.0",
  1712. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  1713. "symfony/messenger": "^4.4|^5.0|^6.0",
  1714. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  1715. },
  1716. "type": "library",
  1717. "autoload": {
  1718. "psr-4": {
  1719. "Symfony\\Component\\Cache\\": ""
  1720. },
  1721. "exclude-from-classmap": [
  1722. "/Tests/"
  1723. ]
  1724. },
  1725. "notification-url": "https://packagist.org/downloads/",
  1726. "license": [
  1727. "MIT"
  1728. ],
  1729. "authors": [
  1730. {
  1731. "name": "Nicolas Grekas",
  1732. "email": "p@tchwork.com"
  1733. },
  1734. {
  1735. "name": "Symfony Community",
  1736. "homepage": "https://symfony.com/contributors"
  1737. }
  1738. ],
  1739. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  1740. "homepage": "https://symfony.com",
  1741. "keywords": [
  1742. "caching",
  1743. "psr6"
  1744. ],
  1745. "support": {
  1746. "source": "https://github.com/symfony/cache/tree/v5.4.29"
  1747. },
  1748. "funding": [
  1749. {
  1750. "url": "https://symfony.com/sponsor",
  1751. "type": "custom"
  1752. },
  1753. {
  1754. "url": "https://github.com/fabpot",
  1755. "type": "github"
  1756. },
  1757. {
  1758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1759. "type": "tidelift"
  1760. }
  1761. ],
  1762. "time": "2023-09-19T13:25:51+00:00"
  1763. },
  1764. {
  1765. "name": "symfony/cache-contracts",
  1766. "version": "v2.5.2",
  1767. "source": {
  1768. "type": "git",
  1769. "url": "https://github.com/symfony/cache-contracts.git",
  1770. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  1771. },
  1772. "dist": {
  1773. "type": "zip",
  1774. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  1775. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  1776. "shasum": ""
  1777. },
  1778. "require": {
  1779. "php": ">=7.2.5",
  1780. "psr/cache": "^1.0|^2.0|^3.0"
  1781. },
  1782. "suggest": {
  1783. "symfony/cache-implementation": ""
  1784. },
  1785. "type": "library",
  1786. "extra": {
  1787. "branch-alias": {
  1788. "dev-main": "2.5-dev"
  1789. },
  1790. "thanks": {
  1791. "name": "symfony/contracts",
  1792. "url": "https://github.com/symfony/contracts"
  1793. }
  1794. },
  1795. "autoload": {
  1796. "psr-4": {
  1797. "Symfony\\Contracts\\Cache\\": ""
  1798. }
  1799. },
  1800. "notification-url": "https://packagist.org/downloads/",
  1801. "license": [
  1802. "MIT"
  1803. ],
  1804. "authors": [
  1805. {
  1806. "name": "Nicolas Grekas",
  1807. "email": "p@tchwork.com"
  1808. },
  1809. {
  1810. "name": "Symfony Community",
  1811. "homepage": "https://symfony.com/contributors"
  1812. }
  1813. ],
  1814. "description": "Generic abstractions related to caching",
  1815. "homepage": "https://symfony.com",
  1816. "keywords": [
  1817. "abstractions",
  1818. "contracts",
  1819. "decoupling",
  1820. "interfaces",
  1821. "interoperability",
  1822. "standards"
  1823. ],
  1824. "support": {
  1825. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  1826. },
  1827. "funding": [
  1828. {
  1829. "url": "https://symfony.com/sponsor",
  1830. "type": "custom"
  1831. },
  1832. {
  1833. "url": "https://github.com/fabpot",
  1834. "type": "github"
  1835. },
  1836. {
  1837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1838. "type": "tidelift"
  1839. }
  1840. ],
  1841. "time": "2022-01-02T09:53:40+00:00"
  1842. },
  1843. {
  1844. "name": "symfony/deprecation-contracts",
  1845. "version": "v2.5.2",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/symfony/deprecation-contracts.git",
  1849. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1854. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  1855. "shasum": ""
  1856. },
  1857. "require": {
  1858. "php": ">=7.1"
  1859. },
  1860. "type": "library",
  1861. "extra": {
  1862. "branch-alias": {
  1863. "dev-main": "2.5-dev"
  1864. },
  1865. "thanks": {
  1866. "name": "symfony/contracts",
  1867. "url": "https://github.com/symfony/contracts"
  1868. }
  1869. },
  1870. "autoload": {
  1871. "files": [
  1872. "function.php"
  1873. ]
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "MIT"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "Nicolas Grekas",
  1882. "email": "p@tchwork.com"
  1883. },
  1884. {
  1885. "name": "Symfony Community",
  1886. "homepage": "https://symfony.com/contributors"
  1887. }
  1888. ],
  1889. "description": "A generic function and convention to trigger deprecation notices",
  1890. "homepage": "https://symfony.com",
  1891. "support": {
  1892. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  1893. },
  1894. "funding": [
  1895. {
  1896. "url": "https://symfony.com/sponsor",
  1897. "type": "custom"
  1898. },
  1899. {
  1900. "url": "https://github.com/fabpot",
  1901. "type": "github"
  1902. },
  1903. {
  1904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1905. "type": "tidelift"
  1906. }
  1907. ],
  1908. "time": "2022-01-02T09:53:40+00:00"
  1909. },
  1910. {
  1911. "name": "symfony/event-dispatcher",
  1912. "version": "v5.4.26",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/symfony/event-dispatcher.git",
  1916. "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/5dcc00e03413f05c1e7900090927bb7247cb0aac",
  1921. "reference": "5dcc00e03413f05c1e7900090927bb7247cb0aac",
  1922. "shasum": ""
  1923. },
  1924. "require": {
  1925. "php": ">=7.2.5",
  1926. "symfony/deprecation-contracts": "^2.1|^3",
  1927. "symfony/event-dispatcher-contracts": "^2|^3",
  1928. "symfony/polyfill-php80": "^1.16"
  1929. },
  1930. "conflict": {
  1931. "symfony/dependency-injection": "<4.4"
  1932. },
  1933. "provide": {
  1934. "psr/event-dispatcher-implementation": "1.0",
  1935. "symfony/event-dispatcher-implementation": "2.0"
  1936. },
  1937. "require-dev": {
  1938. "psr/log": "^1|^2|^3",
  1939. "symfony/config": "^4.4|^5.0|^6.0",
  1940. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1941. "symfony/error-handler": "^4.4|^5.0|^6.0",
  1942. "symfony/expression-language": "^4.4|^5.0|^6.0",
  1943. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  1944. "symfony/service-contracts": "^1.1|^2|^3",
  1945. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  1946. },
  1947. "suggest": {
  1948. "symfony/dependency-injection": "",
  1949. "symfony/http-kernel": ""
  1950. },
  1951. "type": "library",
  1952. "autoload": {
  1953. "psr-4": {
  1954. "Symfony\\Component\\EventDispatcher\\": ""
  1955. },
  1956. "exclude-from-classmap": [
  1957. "/Tests/"
  1958. ]
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "MIT"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Fabien Potencier",
  1967. "email": "fabien@symfony.com"
  1968. },
  1969. {
  1970. "name": "Symfony Community",
  1971. "homepage": "https://symfony.com/contributors"
  1972. }
  1973. ],
  1974. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  1975. "homepage": "https://symfony.com",
  1976. "support": {
  1977. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.26"
  1978. },
  1979. "funding": [
  1980. {
  1981. "url": "https://symfony.com/sponsor",
  1982. "type": "custom"
  1983. },
  1984. {
  1985. "url": "https://github.com/fabpot",
  1986. "type": "github"
  1987. },
  1988. {
  1989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1990. "type": "tidelift"
  1991. }
  1992. ],
  1993. "time": "2023-07-06T06:34:20+00:00"
  1994. },
  1995. {
  1996. "name": "symfony/event-dispatcher-contracts",
  1997. "version": "v2.5.2",
  1998. "source": {
  1999. "type": "git",
  2000. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2001. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  2002. },
  2003. "dist": {
  2004. "type": "zip",
  2005. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  2006. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  2007. "shasum": ""
  2008. },
  2009. "require": {
  2010. "php": ">=7.2.5",
  2011. "psr/event-dispatcher": "^1"
  2012. },
  2013. "suggest": {
  2014. "symfony/event-dispatcher-implementation": ""
  2015. },
  2016. "type": "library",
  2017. "extra": {
  2018. "branch-alias": {
  2019. "dev-main": "2.5-dev"
  2020. },
  2021. "thanks": {
  2022. "name": "symfony/contracts",
  2023. "url": "https://github.com/symfony/contracts"
  2024. }
  2025. },
  2026. "autoload": {
  2027. "psr-4": {
  2028. "Symfony\\Contracts\\EventDispatcher\\": ""
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "MIT"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "Nicolas Grekas",
  2038. "email": "p@tchwork.com"
  2039. },
  2040. {
  2041. "name": "Symfony Community",
  2042. "homepage": "https://symfony.com/contributors"
  2043. }
  2044. ],
  2045. "description": "Generic abstractions related to dispatching event",
  2046. "homepage": "https://symfony.com",
  2047. "keywords": [
  2048. "abstractions",
  2049. "contracts",
  2050. "decoupling",
  2051. "interfaces",
  2052. "interoperability",
  2053. "standards"
  2054. ],
  2055. "support": {
  2056. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  2057. },
  2058. "funding": [
  2059. {
  2060. "url": "https://symfony.com/sponsor",
  2061. "type": "custom"
  2062. },
  2063. {
  2064. "url": "https://github.com/fabpot",
  2065. "type": "github"
  2066. },
  2067. {
  2068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2069. "type": "tidelift"
  2070. }
  2071. ],
  2072. "time": "2022-01-02T09:53:40+00:00"
  2073. },
  2074. {
  2075. "name": "symfony/http-foundation",
  2076. "version": "v5.4.28",
  2077. "source": {
  2078. "type": "git",
  2079. "url": "https://github.com/symfony/http-foundation.git",
  2080. "reference": "365992c83a836dfe635f1e903ccca43ee03d3dd2"
  2081. },
  2082. "dist": {
  2083. "type": "zip",
  2084. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/365992c83a836dfe635f1e903ccca43ee03d3dd2",
  2085. "reference": "365992c83a836dfe635f1e903ccca43ee03d3dd2",
  2086. "shasum": ""
  2087. },
  2088. "require": {
  2089. "php": ">=7.2.5",
  2090. "symfony/deprecation-contracts": "^2.1|^3",
  2091. "symfony/polyfill-mbstring": "~1.1",
  2092. "symfony/polyfill-php80": "^1.16"
  2093. },
  2094. "require-dev": {
  2095. "predis/predis": "~1.0",
  2096. "symfony/cache": "^4.4|^5.0|^6.0",
  2097. "symfony/dependency-injection": "^5.4|^6.0",
  2098. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2099. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  2100. "symfony/mime": "^4.4|^5.0|^6.0",
  2101. "symfony/rate-limiter": "^5.2|^6.0"
  2102. },
  2103. "suggest": {
  2104. "symfony/mime": "To use the file extension guesser"
  2105. },
  2106. "type": "library",
  2107. "autoload": {
  2108. "psr-4": {
  2109. "Symfony\\Component\\HttpFoundation\\": ""
  2110. },
  2111. "exclude-from-classmap": [
  2112. "/Tests/"
  2113. ]
  2114. },
  2115. "notification-url": "https://packagist.org/downloads/",
  2116. "license": [
  2117. "MIT"
  2118. ],
  2119. "authors": [
  2120. {
  2121. "name": "Fabien Potencier",
  2122. "email": "fabien@symfony.com"
  2123. },
  2124. {
  2125. "name": "Symfony Community",
  2126. "homepage": "https://symfony.com/contributors"
  2127. }
  2128. ],
  2129. "description": "Defines an object-oriented layer for the HTTP specification",
  2130. "homepage": "https://symfony.com",
  2131. "support": {
  2132. "source": "https://github.com/symfony/http-foundation/tree/v5.4.28"
  2133. },
  2134. "funding": [
  2135. {
  2136. "url": "https://symfony.com/sponsor",
  2137. "type": "custom"
  2138. },
  2139. {
  2140. "url": "https://github.com/fabpot",
  2141. "type": "github"
  2142. },
  2143. {
  2144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2145. "type": "tidelift"
  2146. }
  2147. ],
  2148. "time": "2023-08-21T07:23:18+00:00"
  2149. },
  2150. {
  2151. "name": "symfony/polyfill-mbstring",
  2152. "version": "v1.28.0",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2156. "reference": "42292d99c55abe617799667f454222c54c60e229"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  2161. "reference": "42292d99c55abe617799667f454222c54c60e229",
  2162. "shasum": ""
  2163. },
  2164. "require": {
  2165. "php": ">=7.1"
  2166. },
  2167. "provide": {
  2168. "ext-mbstring": "*"
  2169. },
  2170. "suggest": {
  2171. "ext-mbstring": "For best performance"
  2172. },
  2173. "type": "library",
  2174. "extra": {
  2175. "branch-alias": {
  2176. "dev-main": "1.28-dev"
  2177. },
  2178. "thanks": {
  2179. "name": "symfony/polyfill",
  2180. "url": "https://github.com/symfony/polyfill"
  2181. }
  2182. },
  2183. "autoload": {
  2184. "files": [
  2185. "bootstrap.php"
  2186. ],
  2187. "psr-4": {
  2188. "Symfony\\Polyfill\\Mbstring\\": ""
  2189. }
  2190. },
  2191. "notification-url": "https://packagist.org/downloads/",
  2192. "license": [
  2193. "MIT"
  2194. ],
  2195. "authors": [
  2196. {
  2197. "name": "Nicolas Grekas",
  2198. "email": "p@tchwork.com"
  2199. },
  2200. {
  2201. "name": "Symfony Community",
  2202. "homepage": "https://symfony.com/contributors"
  2203. }
  2204. ],
  2205. "description": "Symfony polyfill for the Mbstring extension",
  2206. "homepage": "https://symfony.com",
  2207. "keywords": [
  2208. "compatibility",
  2209. "mbstring",
  2210. "polyfill",
  2211. "portable",
  2212. "shim"
  2213. ],
  2214. "support": {
  2215. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  2216. },
  2217. "funding": [
  2218. {
  2219. "url": "https://symfony.com/sponsor",
  2220. "type": "custom"
  2221. },
  2222. {
  2223. "url": "https://github.com/fabpot",
  2224. "type": "github"
  2225. },
  2226. {
  2227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2228. "type": "tidelift"
  2229. }
  2230. ],
  2231. "time": "2023-07-28T09:04:16+00:00"
  2232. },
  2233. {
  2234. "name": "symfony/polyfill-php73",
  2235. "version": "v1.28.0",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://github.com/symfony/polyfill-php73.git",
  2239. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  2244. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  2245. "shasum": ""
  2246. },
  2247. "require": {
  2248. "php": ">=7.1"
  2249. },
  2250. "type": "library",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-main": "1.28-dev"
  2254. },
  2255. "thanks": {
  2256. "name": "symfony/polyfill",
  2257. "url": "https://github.com/symfony/polyfill"
  2258. }
  2259. },
  2260. "autoload": {
  2261. "files": [
  2262. "bootstrap.php"
  2263. ],
  2264. "psr-4": {
  2265. "Symfony\\Polyfill\\Php73\\": ""
  2266. },
  2267. "classmap": [
  2268. "Resources/stubs"
  2269. ]
  2270. },
  2271. "notification-url": "https://packagist.org/downloads/",
  2272. "license": [
  2273. "MIT"
  2274. ],
  2275. "authors": [
  2276. {
  2277. "name": "Nicolas Grekas",
  2278. "email": "p@tchwork.com"
  2279. },
  2280. {
  2281. "name": "Symfony Community",
  2282. "homepage": "https://symfony.com/contributors"
  2283. }
  2284. ],
  2285. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2286. "homepage": "https://symfony.com",
  2287. "keywords": [
  2288. "compatibility",
  2289. "polyfill",
  2290. "portable",
  2291. "shim"
  2292. ],
  2293. "support": {
  2294. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  2295. },
  2296. "funding": [
  2297. {
  2298. "url": "https://symfony.com/sponsor",
  2299. "type": "custom"
  2300. },
  2301. {
  2302. "url": "https://github.com/fabpot",
  2303. "type": "github"
  2304. },
  2305. {
  2306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2307. "type": "tidelift"
  2308. }
  2309. ],
  2310. "time": "2023-01-26T09:26:14+00:00"
  2311. },
  2312. {
  2313. "name": "symfony/polyfill-php80",
  2314. "version": "v1.28.0",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/symfony/polyfill-php80.git",
  2318. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  2323. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "php": ">=7.1"
  2328. },
  2329. "type": "library",
  2330. "extra": {
  2331. "branch-alias": {
  2332. "dev-main": "1.28-dev"
  2333. },
  2334. "thanks": {
  2335. "name": "symfony/polyfill",
  2336. "url": "https://github.com/symfony/polyfill"
  2337. }
  2338. },
  2339. "autoload": {
  2340. "files": [
  2341. "bootstrap.php"
  2342. ],
  2343. "psr-4": {
  2344. "Symfony\\Polyfill\\Php80\\": ""
  2345. },
  2346. "classmap": [
  2347. "Resources/stubs"
  2348. ]
  2349. },
  2350. "notification-url": "https://packagist.org/downloads/",
  2351. "license": [
  2352. "MIT"
  2353. ],
  2354. "authors": [
  2355. {
  2356. "name": "Ion Bazan",
  2357. "email": "ion.bazan@gmail.com"
  2358. },
  2359. {
  2360. "name": "Nicolas Grekas",
  2361. "email": "p@tchwork.com"
  2362. },
  2363. {
  2364. "name": "Symfony Community",
  2365. "homepage": "https://symfony.com/contributors"
  2366. }
  2367. ],
  2368. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2369. "homepage": "https://symfony.com",
  2370. "keywords": [
  2371. "compatibility",
  2372. "polyfill",
  2373. "portable",
  2374. "shim"
  2375. ],
  2376. "support": {
  2377. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  2378. },
  2379. "funding": [
  2380. {
  2381. "url": "https://symfony.com/sponsor",
  2382. "type": "custom"
  2383. },
  2384. {
  2385. "url": "https://github.com/fabpot",
  2386. "type": "github"
  2387. },
  2388. {
  2389. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2390. "type": "tidelift"
  2391. }
  2392. ],
  2393. "time": "2023-01-26T09:26:14+00:00"
  2394. },
  2395. {
  2396. "name": "symfony/psr-http-message-bridge",
  2397. "version": "v2.3.1",
  2398. "source": {
  2399. "type": "git",
  2400. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  2401. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  2402. },
  2403. "dist": {
  2404. "type": "zip",
  2405. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  2406. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  2407. "shasum": ""
  2408. },
  2409. "require": {
  2410. "php": ">=7.2.5",
  2411. "psr/http-message": "^1.0 || ^2.0",
  2412. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  2413. "symfony/http-foundation": "^5.4 || ^6.0"
  2414. },
  2415. "require-dev": {
  2416. "nyholm/psr7": "^1.1",
  2417. "psr/log": "^1.1 || ^2 || ^3",
  2418. "symfony/browser-kit": "^5.4 || ^6.0",
  2419. "symfony/config": "^5.4 || ^6.0",
  2420. "symfony/event-dispatcher": "^5.4 || ^6.0",
  2421. "symfony/framework-bundle": "^5.4 || ^6.0",
  2422. "symfony/http-kernel": "^5.4 || ^6.0",
  2423. "symfony/phpunit-bridge": "^6.2"
  2424. },
  2425. "suggest": {
  2426. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  2427. },
  2428. "type": "symfony-bridge",
  2429. "extra": {
  2430. "branch-alias": {
  2431. "dev-main": "2.3-dev"
  2432. }
  2433. },
  2434. "autoload": {
  2435. "psr-4": {
  2436. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2437. },
  2438. "exclude-from-classmap": [
  2439. "/Tests/"
  2440. ]
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "MIT"
  2445. ],
  2446. "authors": [
  2447. {
  2448. "name": "Fabien Potencier",
  2449. "email": "fabien@symfony.com"
  2450. },
  2451. {
  2452. "name": "Symfony Community",
  2453. "homepage": "http://symfony.com/contributors"
  2454. }
  2455. ],
  2456. "description": "PSR HTTP message bridge",
  2457. "homepage": "http://symfony.com",
  2458. "keywords": [
  2459. "http",
  2460. "http-message",
  2461. "psr-17",
  2462. "psr-7"
  2463. ],
  2464. "support": {
  2465. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  2466. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  2467. },
  2468. "funding": [
  2469. {
  2470. "url": "https://symfony.com/sponsor",
  2471. "type": "custom"
  2472. },
  2473. {
  2474. "url": "https://github.com/fabpot",
  2475. "type": "github"
  2476. },
  2477. {
  2478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2479. "type": "tidelift"
  2480. }
  2481. ],
  2482. "time": "2023-07-26T11:53:26+00:00"
  2483. },
  2484. {
  2485. "name": "symfony/service-contracts",
  2486. "version": "v2.5.2",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/symfony/service-contracts.git",
  2490. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  2495. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  2496. "shasum": ""
  2497. },
  2498. "require": {
  2499. "php": ">=7.2.5",
  2500. "psr/container": "^1.1",
  2501. "symfony/deprecation-contracts": "^2.1|^3"
  2502. },
  2503. "conflict": {
  2504. "ext-psr": "<1.1|>=2"
  2505. },
  2506. "suggest": {
  2507. "symfony/service-implementation": ""
  2508. },
  2509. "type": "library",
  2510. "extra": {
  2511. "branch-alias": {
  2512. "dev-main": "2.5-dev"
  2513. },
  2514. "thanks": {
  2515. "name": "symfony/contracts",
  2516. "url": "https://github.com/symfony/contracts"
  2517. }
  2518. },
  2519. "autoload": {
  2520. "psr-4": {
  2521. "Symfony\\Contracts\\Service\\": ""
  2522. }
  2523. },
  2524. "notification-url": "https://packagist.org/downloads/",
  2525. "license": [
  2526. "MIT"
  2527. ],
  2528. "authors": [
  2529. {
  2530. "name": "Nicolas Grekas",
  2531. "email": "p@tchwork.com"
  2532. },
  2533. {
  2534. "name": "Symfony Community",
  2535. "homepage": "https://symfony.com/contributors"
  2536. }
  2537. ],
  2538. "description": "Generic abstractions related to writing services",
  2539. "homepage": "https://symfony.com",
  2540. "keywords": [
  2541. "abstractions",
  2542. "contracts",
  2543. "decoupling",
  2544. "interfaces",
  2545. "interoperability",
  2546. "standards"
  2547. ],
  2548. "support": {
  2549. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  2550. },
  2551. "funding": [
  2552. {
  2553. "url": "https://symfony.com/sponsor",
  2554. "type": "custom"
  2555. },
  2556. {
  2557. "url": "https://github.com/fabpot",
  2558. "type": "github"
  2559. },
  2560. {
  2561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2562. "type": "tidelift"
  2563. }
  2564. ],
  2565. "time": "2022-05-30T19:17:29+00:00"
  2566. },
  2567. {
  2568. "name": "symfony/var-exporter",
  2569. "version": "v5.4.26",
  2570. "source": {
  2571. "type": "git",
  2572. "url": "https://github.com/symfony/var-exporter.git",
  2573. "reference": "11401fe94f960249b3c63a488c63ba73091c1e4a"
  2574. },
  2575. "dist": {
  2576. "type": "zip",
  2577. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/11401fe94f960249b3c63a488c63ba73091c1e4a",
  2578. "reference": "11401fe94f960249b3c63a488c63ba73091c1e4a",
  2579. "shasum": ""
  2580. },
  2581. "require": {
  2582. "php": ">=7.2.5",
  2583. "symfony/polyfill-php80": "^1.16"
  2584. },
  2585. "require-dev": {
  2586. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  2587. },
  2588. "type": "library",
  2589. "autoload": {
  2590. "psr-4": {
  2591. "Symfony\\Component\\VarExporter\\": ""
  2592. },
  2593. "exclude-from-classmap": [
  2594. "/Tests/"
  2595. ]
  2596. },
  2597. "notification-url": "https://packagist.org/downloads/",
  2598. "license": [
  2599. "MIT"
  2600. ],
  2601. "authors": [
  2602. {
  2603. "name": "Nicolas Grekas",
  2604. "email": "p@tchwork.com"
  2605. },
  2606. {
  2607. "name": "Symfony Community",
  2608. "homepage": "https://symfony.com/contributors"
  2609. }
  2610. ],
  2611. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  2612. "homepage": "https://symfony.com",
  2613. "keywords": [
  2614. "clone",
  2615. "construct",
  2616. "export",
  2617. "hydrate",
  2618. "instantiate",
  2619. "serialize"
  2620. ],
  2621. "support": {
  2622. "source": "https://github.com/symfony/var-exporter/tree/v5.4.26"
  2623. },
  2624. "funding": [
  2625. {
  2626. "url": "https://symfony.com/sponsor",
  2627. "type": "custom"
  2628. },
  2629. {
  2630. "url": "https://github.com/fabpot",
  2631. "type": "github"
  2632. },
  2633. {
  2634. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2635. "type": "tidelift"
  2636. }
  2637. ],
  2638. "time": "2023-07-20T07:21:16+00:00"
  2639. },
  2640. {
  2641. "name": "topthink/framework",
  2642. "version": "v6.1.4",
  2643. "source": {
  2644. "type": "git",
  2645. "url": "https://github.com/top-think/framework.git",
  2646. "reference": "66eb9cf4d627df12911344cd328faf9bb596bf2c"
  2647. },
  2648. "dist": {
  2649. "type": "zip",
  2650. "url": "https://api.github.com/repos/top-think/framework/zipball/66eb9cf4d627df12911344cd328faf9bb596bf2c",
  2651. "reference": "66eb9cf4d627df12911344cd328faf9bb596bf2c",
  2652. "shasum": ""
  2653. },
  2654. "require": {
  2655. "ext-json": "*",
  2656. "ext-mbstring": "*",
  2657. "php": ">=7.2.5",
  2658. "psr/container": "~1.0",
  2659. "psr/http-message": "^1.0",
  2660. "psr/log": "~1.0",
  2661. "psr/simple-cache": "^1.0",
  2662. "topthink/think-helper": "^3.1.1",
  2663. "topthink/think-orm": "^2.0|^3.0"
  2664. },
  2665. "require-dev": {
  2666. "guzzlehttp/psr7": "^2.1.0",
  2667. "mikey179/vfsstream": "^1.6",
  2668. "mockery/mockery": "^1.2",
  2669. "phpunit/phpunit": "^7.0"
  2670. },
  2671. "type": "library",
  2672. "autoload": {
  2673. "files": [],
  2674. "psr-4": {
  2675. "think\\": "src/think/"
  2676. }
  2677. },
  2678. "notification-url": "https://packagist.org/downloads/",
  2679. "license": [
  2680. "Apache-2.0"
  2681. ],
  2682. "authors": [
  2683. {
  2684. "name": "liu21st",
  2685. "email": "liu21st@gmail.com"
  2686. },
  2687. {
  2688. "name": "yunwuxin",
  2689. "email": "448901948@qq.com"
  2690. }
  2691. ],
  2692. "description": "The ThinkPHP Framework.",
  2693. "homepage": "http://thinkphp.cn/",
  2694. "keywords": [
  2695. "framework",
  2696. "orm",
  2697. "thinkphp"
  2698. ],
  2699. "support": {
  2700. "issues": "https://github.com/top-think/framework/issues",
  2701. "source": "https://github.com/top-think/framework/tree/v6.1.4"
  2702. },
  2703. "time": "2023-07-11T15:16:03+00:00"
  2704. },
  2705. {
  2706. "name": "topthink/think-captcha",
  2707. "version": "v3.0.9",
  2708. "source": {
  2709. "type": "git",
  2710. "url": "https://github.com/top-think/think-captcha.git",
  2711. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b"
  2712. },
  2713. "dist": {
  2714. "type": "zip",
  2715. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/b1ef360670578214edeebcf824aaf6ab7ee0528b",
  2716. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b",
  2717. "shasum": ""
  2718. },
  2719. "require": {
  2720. "topthink/framework": "^6.0|^8.0"
  2721. },
  2722. "type": "library",
  2723. "extra": {
  2724. "think": {
  2725. "services": [
  2726. "think\\captcha\\CaptchaService"
  2727. ],
  2728. "config": {
  2729. "captcha": "src/config.php"
  2730. }
  2731. }
  2732. },
  2733. "autoload": {
  2734. "files": [
  2735. "src/helper.php"
  2736. ],
  2737. "psr-4": {
  2738. "think\\captcha\\": "src/"
  2739. }
  2740. },
  2741. "notification-url": "https://packagist.org/downloads/",
  2742. "license": [
  2743. "Apache-2.0"
  2744. ],
  2745. "authors": [
  2746. {
  2747. "name": "yunwuxin",
  2748. "email": "448901948@qq.com"
  2749. }
  2750. ],
  2751. "description": "captcha package for thinkphp",
  2752. "support": {
  2753. "issues": "https://github.com/top-think/think-captcha/issues",
  2754. "source": "https://github.com/top-think/think-captcha/tree/v3.0.9"
  2755. },
  2756. "time": "2023-04-27T07:18:40+00:00"
  2757. },
  2758. {
  2759. "name": "topthink/think-filesystem",
  2760. "version": "v2.0.2",
  2761. "source": {
  2762. "type": "git",
  2763. "url": "https://github.com/top-think/think-filesystem.git",
  2764. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f"
  2765. },
  2766. "dist": {
  2767. "type": "zip",
  2768. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  2769. "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f",
  2770. "shasum": ""
  2771. },
  2772. "require": {
  2773. "league/flysystem": "^2.0",
  2774. "topthink/framework": "^6.1|^8.0"
  2775. },
  2776. "require-dev": {
  2777. "mikey179/vfsstream": "^1.6",
  2778. "mockery/mockery": "^1.2",
  2779. "phpunit/phpunit": "^8.0"
  2780. },
  2781. "type": "library",
  2782. "autoload": {
  2783. "psr-4": {
  2784. "think\\": "src"
  2785. }
  2786. },
  2787. "notification-url": "https://packagist.org/downloads/",
  2788. "license": [
  2789. "Apache-2.0"
  2790. ],
  2791. "authors": [
  2792. {
  2793. "name": "yunwuxin",
  2794. "email": "448901948@qq.com"
  2795. }
  2796. ],
  2797. "description": "The ThinkPHP6.1 Filesystem Package",
  2798. "support": {
  2799. "issues": "https://github.com/top-think/think-filesystem/issues",
  2800. "source": "https://github.com/top-think/think-filesystem/tree/v2.0.2"
  2801. },
  2802. "time": "2023-02-08T01:23:42+00:00"
  2803. },
  2804. {
  2805. "name": "topthink/think-helper",
  2806. "version": "v3.1.6",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/top-think/think-helper.git",
  2810. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/top-think/think-helper/zipball/769acbe50a4274327162f9c68ec2e89a38eb2aff",
  2815. "reference": "769acbe50a4274327162f9c68ec2e89a38eb2aff",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "php": ">=7.1.0"
  2820. },
  2821. "require-dev": {
  2822. "phpunit/phpunit": "^9.5"
  2823. },
  2824. "type": "library",
  2825. "autoload": {
  2826. "files": [
  2827. "src/helper.php"
  2828. ],
  2829. "psr-4": {
  2830. "think\\": "src"
  2831. }
  2832. },
  2833. "notification-url": "https://packagist.org/downloads/",
  2834. "license": [
  2835. "Apache-2.0"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "yunwuxin",
  2840. "email": "448901948@qq.com"
  2841. }
  2842. ],
  2843. "description": "The ThinkPHP6 Helper Package",
  2844. "support": {
  2845. "issues": "https://github.com/top-think/think-helper/issues",
  2846. "source": "https://github.com/top-think/think-helper/tree/v3.1.6"
  2847. },
  2848. "time": "2021-12-15T04:27:55+00:00"
  2849. },
  2850. {
  2851. "name": "topthink/think-image",
  2852. "version": "v1.0.7",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/top-think/think-image.git",
  2856. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  2861. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  2862. "shasum": ""
  2863. },
  2864. "require": {
  2865. "ext-gd": "*"
  2866. },
  2867. "require-dev": {
  2868. "phpunit/phpunit": "4.8.*",
  2869. "topthink/framework": "^5.0"
  2870. },
  2871. "type": "library",
  2872. "autoload": {
  2873. "psr-4": {
  2874. "think\\": "src"
  2875. }
  2876. },
  2877. "notification-url": "https://packagist.org/downloads/",
  2878. "license": [
  2879. "Apache-2.0"
  2880. ],
  2881. "authors": [
  2882. {
  2883. "name": "yunwuxin",
  2884. "email": "448901948@qq.com"
  2885. }
  2886. ],
  2887. "description": "The ThinkPHP5 Image Package",
  2888. "support": {
  2889. "issues": "https://github.com/top-think/think-image/issues",
  2890. "source": "https://github.com/top-think/think-image/tree/master"
  2891. },
  2892. "time": "2016-09-29T06:05:43+00:00"
  2893. },
  2894. {
  2895. "name": "topthink/think-multi-app",
  2896. "version": "v1.0.17",
  2897. "source": {
  2898. "type": "git",
  2899. "url": "https://github.com/top-think/think-multi-app.git",
  2900. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c"
  2901. },
  2902. "dist": {
  2903. "type": "zip",
  2904. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  2905. "reference": "4055a6187296ac16c0bc7bbab4ed5d92f82f791c",
  2906. "shasum": ""
  2907. },
  2908. "require": {
  2909. "php": ">=7.1.0",
  2910. "topthink/framework": "^6.0|^8.0"
  2911. },
  2912. "type": "library",
  2913. "extra": {
  2914. "think": {
  2915. "services": [
  2916. "think\\app\\Service"
  2917. ]
  2918. }
  2919. },
  2920. "autoload": {
  2921. "psr-4": {
  2922. "think\\app\\": "src"
  2923. }
  2924. },
  2925. "notification-url": "https://packagist.org/downloads/",
  2926. "license": [
  2927. "Apache-2.0"
  2928. ],
  2929. "authors": [
  2930. {
  2931. "name": "liu21st",
  2932. "email": "liu21st@gmail.com"
  2933. }
  2934. ],
  2935. "description": "thinkphp multi app support",
  2936. "support": {
  2937. "issues": "https://github.com/top-think/think-multi-app/issues",
  2938. "source": "https://github.com/top-think/think-multi-app/tree/v1.0.17"
  2939. },
  2940. "time": "2023-03-29T02:04:29+00:00"
  2941. },
  2942. {
  2943. "name": "topthink/think-orm",
  2944. "version": "v2.0.61",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://github.com/top-think/think-orm.git",
  2948. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://api.github.com/repos/top-think/think-orm/zipball/10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  2953. "reference": "10528ebf4a5106b19c3bac9c6deae7a67ff49de6",
  2954. "shasum": ""
  2955. },
  2956. "require": {
  2957. "ext-json": "*",
  2958. "ext-pdo": "*",
  2959. "php": ">=7.1.0",
  2960. "psr/log": "^1.0|^2.0",
  2961. "psr/simple-cache": "^1.0|^2.0",
  2962. "topthink/think-helper": "^3.1"
  2963. },
  2964. "require-dev": {
  2965. "phpunit/phpunit": "^7|^8|^9.5"
  2966. },
  2967. "type": "library",
  2968. "autoload": {
  2969. "files": [
  2970. "stubs/load_stubs.php"
  2971. ],
  2972. "psr-4": {
  2973. "think\\": "src"
  2974. }
  2975. },
  2976. "notification-url": "https://packagist.org/downloads/",
  2977. "license": [
  2978. "Apache-2.0"
  2979. ],
  2980. "authors": [
  2981. {
  2982. "name": "liu21st",
  2983. "email": "liu21st@gmail.com"
  2984. }
  2985. ],
  2986. "description": "think orm",
  2987. "keywords": [
  2988. "database",
  2989. "orm"
  2990. ],
  2991. "support": {
  2992. "issues": "https://github.com/top-think/think-orm/issues",
  2993. "source": "https://github.com/top-think/think-orm/tree/v2.0.61"
  2994. },
  2995. "time": "2023-04-20T14:27:51+00:00"
  2996. },
  2997. {
  2998. "name": "topthink/think-template",
  2999. "version": "v2.0.9",
  3000. "source": {
  3001. "type": "git",
  3002. "url": "https://github.com/top-think/think-template.git",
  3003. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c"
  3004. },
  3005. "dist": {
  3006. "type": "zip",
  3007. "url": "https://api.github.com/repos/top-think/think-template/zipball/6d25642ae0e306166742fd7073dc7a159e18073c",
  3008. "reference": "6d25642ae0e306166742fd7073dc7a159e18073c",
  3009. "shasum": ""
  3010. },
  3011. "require": {
  3012. "php": ">=7.1.0",
  3013. "psr/simple-cache": "^1.0"
  3014. },
  3015. "type": "library",
  3016. "autoload": {
  3017. "psr-4": {
  3018. "think\\": "src"
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "Apache-2.0"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "liu21st",
  3028. "email": "liu21st@gmail.com"
  3029. }
  3030. ],
  3031. "description": "the php template engine",
  3032. "support": {
  3033. "issues": "https://github.com/top-think/think-template/issues",
  3034. "source": "https://github.com/top-think/think-template/tree/v2.0.9"
  3035. },
  3036. "time": "2023-02-14T10:50:39+00:00"
  3037. },
  3038. {
  3039. "name": "topthink/think-view",
  3040. "version": "v1.0.14",
  3041. "source": {
  3042. "type": "git",
  3043. "url": "https://github.com/top-think/think-view.git",
  3044. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  3045. },
  3046. "dist": {
  3047. "type": "zip",
  3048. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  3049. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  3050. "shasum": ""
  3051. },
  3052. "require": {
  3053. "php": ">=7.1.0",
  3054. "topthink/think-template": "^2.0"
  3055. },
  3056. "type": "library",
  3057. "autoload": {
  3058. "psr-4": {
  3059. "think\\view\\driver\\": "src"
  3060. }
  3061. },
  3062. "notification-url": "https://packagist.org/downloads/",
  3063. "license": [
  3064. "Apache-2.0"
  3065. ],
  3066. "authors": [
  3067. {
  3068. "name": "liu21st",
  3069. "email": "liu21st@gmail.com"
  3070. }
  3071. ],
  3072. "description": "thinkphp template driver",
  3073. "support": {
  3074. "issues": "https://github.com/top-think/think-view/issues",
  3075. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  3076. },
  3077. "time": "2019-11-06T11:40:13+00:00"
  3078. }
  3079. ],
  3080. "packages-dev": [
  3081. {
  3082. "name": "symfony/polyfill-php72",
  3083. "version": "v1.28.0",
  3084. "source": {
  3085. "type": "git",
  3086. "url": "https://github.com/symfony/polyfill-php72.git",
  3087. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  3088. },
  3089. "dist": {
  3090. "type": "zip",
  3091. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  3092. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  3093. "shasum": ""
  3094. },
  3095. "require": {
  3096. "php": ">=7.1"
  3097. },
  3098. "type": "library",
  3099. "extra": {
  3100. "branch-alias": {
  3101. "dev-main": "1.28-dev"
  3102. },
  3103. "thanks": {
  3104. "name": "symfony/polyfill",
  3105. "url": "https://github.com/symfony/polyfill"
  3106. }
  3107. },
  3108. "autoload": {
  3109. "files": [
  3110. "bootstrap.php"
  3111. ],
  3112. "psr-4": {
  3113. "Symfony\\Polyfill\\Php72\\": ""
  3114. }
  3115. },
  3116. "notification-url": "https://packagist.org/downloads/",
  3117. "license": [
  3118. "MIT"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "Nicolas Grekas",
  3123. "email": "p@tchwork.com"
  3124. },
  3125. {
  3126. "name": "Symfony Community",
  3127. "homepage": "https://symfony.com/contributors"
  3128. }
  3129. ],
  3130. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3131. "homepage": "https://symfony.com",
  3132. "keywords": [
  3133. "compatibility",
  3134. "polyfill",
  3135. "portable",
  3136. "shim"
  3137. ],
  3138. "support": {
  3139. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  3140. },
  3141. "funding": [
  3142. {
  3143. "url": "https://symfony.com/sponsor",
  3144. "type": "custom"
  3145. },
  3146. {
  3147. "url": "https://github.com/fabpot",
  3148. "type": "github"
  3149. },
  3150. {
  3151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3152. "type": "tidelift"
  3153. }
  3154. ],
  3155. "time": "2023-01-26T09:26:14+00:00"
  3156. },
  3157. {
  3158. "name": "symfony/var-dumper",
  3159. "version": "v4.4.47",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://github.com/symfony/var-dumper.git",
  3163. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  3168. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  3169. "shasum": ""
  3170. },
  3171. "require": {
  3172. "php": ">=7.1.3",
  3173. "symfony/polyfill-mbstring": "~1.0",
  3174. "symfony/polyfill-php72": "~1.5",
  3175. "symfony/polyfill-php80": "^1.16"
  3176. },
  3177. "conflict": {
  3178. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3179. "symfony/console": "<3.4"
  3180. },
  3181. "require-dev": {
  3182. "ext-iconv": "*",
  3183. "symfony/console": "^3.4|^4.0|^5.0",
  3184. "symfony/process": "^4.4|^5.0",
  3185. "twig/twig": "^1.43|^2.13|^3.0.4"
  3186. },
  3187. "suggest": {
  3188. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3189. "ext-intl": "To show region name in time zone dump",
  3190. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3191. },
  3192. "bin": [
  3193. "Resources/bin/var-dump-server"
  3194. ],
  3195. "type": "library",
  3196. "autoload": {
  3197. "files": [
  3198. "Resources/functions/dump.php"
  3199. ],
  3200. "psr-4": {
  3201. "Symfony\\Component\\VarDumper\\": ""
  3202. },
  3203. "exclude-from-classmap": [
  3204. "/Tests/"
  3205. ]
  3206. },
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "authors": [
  3212. {
  3213. "name": "Nicolas Grekas",
  3214. "email": "p@tchwork.com"
  3215. },
  3216. {
  3217. "name": "Symfony Community",
  3218. "homepage": "https://symfony.com/contributors"
  3219. }
  3220. ],
  3221. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  3222. "homepage": "https://symfony.com",
  3223. "keywords": [
  3224. "debug",
  3225. "dump"
  3226. ],
  3227. "support": {
  3228. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  3229. },
  3230. "funding": [
  3231. {
  3232. "url": "https://symfony.com/sponsor",
  3233. "type": "custom"
  3234. },
  3235. {
  3236. "url": "https://github.com/fabpot",
  3237. "type": "github"
  3238. },
  3239. {
  3240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3241. "type": "tidelift"
  3242. }
  3243. ],
  3244. "time": "2022-10-03T15:15:11+00:00"
  3245. },
  3246. {
  3247. "name": "topthink/think-trace",
  3248. "version": "v1.6",
  3249. "source": {
  3250. "type": "git",
  3251. "url": "https://github.com/top-think/think-trace.git",
  3252. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  3253. },
  3254. "dist": {
  3255. "type": "zip",
  3256. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  3257. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  3258. "shasum": ""
  3259. },
  3260. "require": {
  3261. "php": ">=7.1.0",
  3262. "topthink/framework": "^6.0|^8.0"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "think": {
  3267. "services": [
  3268. "think\\trace\\Service"
  3269. ],
  3270. "config": {
  3271. "trace": "src/config.php"
  3272. }
  3273. }
  3274. },
  3275. "autoload": {
  3276. "psr-4": {
  3277. "think\\trace\\": "src"
  3278. }
  3279. },
  3280. "notification-url": "https://packagist.org/downloads/",
  3281. "license": [
  3282. "Apache-2.0"
  3283. ],
  3284. "authors": [
  3285. {
  3286. "name": "liu21st",
  3287. "email": "liu21st@gmail.com"
  3288. }
  3289. ],
  3290. "description": "thinkphp debug trace",
  3291. "support": {
  3292. "issues": "https://github.com/top-think/think-trace/issues",
  3293. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  3294. },
  3295. "time": "2023-02-07T08:36:32+00:00"
  3296. }
  3297. ],
  3298. "aliases": [],
  3299. "minimum-stability": "stable",
  3300. "stability-flags": [],
  3301. "prefer-stable": false,
  3302. "prefer-lowest": false,
  3303. "platform": {
  3304. "php": ">=7.4",
  3305. "ext-json": "*"
  3306. },
  3307. "platform-dev": [],
  3308. "platform-overrides": {
  3309. "php": "7.4.3"
  3310. },
  3311. "plugin-api-version": "2.0.0"
  3312. }