installed.json 116 KB

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