installed.json 120 KB

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