composer.lock 114 KB

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