installed.json 119 KB

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