composer.lock 119 KB

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