installed.json 115 KB

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