installed.json 121 KB

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