installed.json 130 KB

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