composer.lock 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "bed71397ab97e43c9e46f402687980a2",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.7.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  15. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/ce5d34dae9868237a32248788ea175c7e9da14b1",
  20. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "*",
  28. "phpunit/phpunit": "*"
  29. },
  30. "type": "library",
  31. "autoload": {
  32. "psr-4": {
  33. "OSS\\": "src/OSS"
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Aliyuncs",
  43. "homepage": "http://www.aliyun.com"
  44. }
  45. ],
  46. "description": "Aliyun OSS SDK for PHP",
  47. "homepage": "http://www.aliyun.com/product/oss/",
  48. "support": {
  49. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  50. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.1"
  51. },
  52. "time": "2024-02-28T11:22:18+00:00"
  53. },
  54. {
  55. "name": "cebe/markdown",
  56. "version": "1.2.1",
  57. "source": {
  58. "type": "git",
  59. "url": "https://github.com/cebe/markdown.git",
  60. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  61. },
  62. "dist": {
  63. "type": "zip",
  64. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  65. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  66. "shasum": ""
  67. },
  68. "require": {
  69. "lib-pcre": "*",
  70. "php": ">=5.4.0"
  71. },
  72. "require-dev": {
  73. "cebe/indent": "*",
  74. "facebook/xhprof": "*@dev",
  75. "phpunit/phpunit": "4.1.*"
  76. },
  77. "bin": [
  78. "bin/markdown"
  79. ],
  80. "type": "library",
  81. "extra": {
  82. "branch-alias": {
  83. "dev-master": "1.2.x-dev"
  84. }
  85. },
  86. "autoload": {
  87. "psr-4": {
  88. "cebe\\markdown\\": ""
  89. }
  90. },
  91. "notification-url": "https://packagist.org/downloads/",
  92. "license": [
  93. "MIT"
  94. ],
  95. "authors": [
  96. {
  97. "name": "Carsten Brandt",
  98. "email": "mail@cebe.cc",
  99. "homepage": "http://cebe.cc/",
  100. "role": "Creator"
  101. }
  102. ],
  103. "description": "A super fast, highly extensible markdown parser for PHP",
  104. "homepage": "https://github.com/cebe/markdown#readme",
  105. "keywords": [
  106. "extensible",
  107. "fast",
  108. "gfm",
  109. "markdown",
  110. "markdown-extra"
  111. ],
  112. "support": {
  113. "issues": "https://github.com/cebe/markdown/issues",
  114. "source": "https://github.com/cebe/markdown"
  115. },
  116. "time": "2018-03-26T11:24:36+00:00"
  117. },
  118. {
  119. "name": "doctrine/deprecations",
  120. "version": "1.1.3",
  121. "source": {
  122. "type": "git",
  123. "url": "https://github.com/doctrine/deprecations.git",
  124. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  125. },
  126. "dist": {
  127. "type": "zip",
  128. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  129. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  130. "shasum": ""
  131. },
  132. "require": {
  133. "php": "^7.1 || ^8.0"
  134. },
  135. "require-dev": {
  136. "doctrine/coding-standard": "^9",
  137. "phpstan/phpstan": "1.4.10 || 1.10.15",
  138. "phpstan/phpstan-phpunit": "^1.0",
  139. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  140. "psalm/plugin-phpunit": "0.18.4",
  141. "psr/log": "^1 || ^2 || ^3",
  142. "vimeo/psalm": "4.30.0 || 5.12.0"
  143. },
  144. "suggest": {
  145. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  146. },
  147. "type": "library",
  148. "autoload": {
  149. "psr-4": {
  150. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  151. }
  152. },
  153. "notification-url": "https://packagist.org/downloads/",
  154. "license": [
  155. "MIT"
  156. ],
  157. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  158. "homepage": "https://www.doctrine-project.org/",
  159. "support": {
  160. "issues": "https://github.com/doctrine/deprecations/issues",
  161. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  162. },
  163. "time": "2024-01-30T19:34:25+00:00"
  164. },
  165. {
  166. "name": "doctrine/lexer",
  167. "version": "2.1.1",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/doctrine/lexer.git",
  171. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  176. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "doctrine/deprecations": "^1.0",
  181. "php": "^7.1 || ^8.0"
  182. },
  183. "require-dev": {
  184. "doctrine/coding-standard": "^9 || ^12",
  185. "phpstan/phpstan": "^1.3",
  186. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  187. "psalm/plugin-phpunit": "^0.18.3",
  188. "vimeo/psalm": "^4.11 || ^5.21"
  189. },
  190. "type": "library",
  191. "autoload": {
  192. "psr-4": {
  193. "Doctrine\\Common\\Lexer\\": "src"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "MIT"
  199. ],
  200. "authors": [
  201. {
  202. "name": "Guilherme Blanco",
  203. "email": "guilhermeblanco@gmail.com"
  204. },
  205. {
  206. "name": "Roman Borschel",
  207. "email": "roman@code-factory.org"
  208. },
  209. {
  210. "name": "Johannes Schmitt",
  211. "email": "schmittjoh@gmail.com"
  212. }
  213. ],
  214. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  215. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  216. "keywords": [
  217. "annotations",
  218. "docblock",
  219. "lexer",
  220. "parser",
  221. "php"
  222. ],
  223. "support": {
  224. "issues": "https://github.com/doctrine/lexer/issues",
  225. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  226. },
  227. "funding": [
  228. {
  229. "url": "https://www.doctrine-project.org/sponsorship.html",
  230. "type": "custom"
  231. },
  232. {
  233. "url": "https://www.patreon.com/phpdoctrine",
  234. "type": "patreon"
  235. },
  236. {
  237. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  238. "type": "tidelift"
  239. }
  240. ],
  241. "time": "2024-02-05T11:35:39+00:00"
  242. },
  243. {
  244. "name": "egulias/email-validator",
  245. "version": "3.2.6",
  246. "source": {
  247. "type": "git",
  248. "url": "https://github.com/egulias/EmailValidator.git",
  249. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  250. },
  251. "dist": {
  252. "type": "zip",
  253. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  254. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  255. "shasum": ""
  256. },
  257. "require": {
  258. "doctrine/lexer": "^1.2|^2",
  259. "php": ">=7.2",
  260. "symfony/polyfill-intl-idn": "^1.15"
  261. },
  262. "require-dev": {
  263. "phpunit/phpunit": "^8.5.8|^9.3.3",
  264. "vimeo/psalm": "^4"
  265. },
  266. "suggest": {
  267. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  268. },
  269. "type": "library",
  270. "extra": {
  271. "branch-alias": {
  272. "dev-master": "3.0.x-dev"
  273. }
  274. },
  275. "autoload": {
  276. "psr-4": {
  277. "Egulias\\EmailValidator\\": "src"
  278. }
  279. },
  280. "notification-url": "https://packagist.org/downloads/",
  281. "license": [
  282. "MIT"
  283. ],
  284. "authors": [
  285. {
  286. "name": "Eduardo Gulias Davis"
  287. }
  288. ],
  289. "description": "A library for validating emails against several RFCs",
  290. "homepage": "https://github.com/egulias/EmailValidator",
  291. "keywords": [
  292. "email",
  293. "emailvalidation",
  294. "emailvalidator",
  295. "validation",
  296. "validator"
  297. ],
  298. "support": {
  299. "issues": "https://github.com/egulias/EmailValidator/issues",
  300. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  301. },
  302. "funding": [
  303. {
  304. "url": "https://github.com/egulias",
  305. "type": "github"
  306. }
  307. ],
  308. "time": "2023-06-01T07:04:22+00:00"
  309. },
  310. {
  311. "name": "ezyang/htmlpurifier",
  312. "version": "v4.17.0",
  313. "source": {
  314. "type": "git",
  315. "url": "https://github.com/ezyang/htmlpurifier.git",
  316. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  317. },
  318. "dist": {
  319. "type": "zip",
  320. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  321. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  322. "shasum": ""
  323. },
  324. "require": {
  325. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  326. },
  327. "require-dev": {
  328. "cerdic/css-tidy": "^1.7 || ^2.0",
  329. "simpletest/simpletest": "dev-master"
  330. },
  331. "suggest": {
  332. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  333. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  334. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  335. "ext-tidy": "Used for pretty-printing HTML"
  336. },
  337. "type": "library",
  338. "autoload": {
  339. "files": [
  340. "library/HTMLPurifier.composer.php"
  341. ],
  342. "psr-0": {
  343. "HTMLPurifier": "library/"
  344. },
  345. "exclude-from-classmap": [
  346. "/library/HTMLPurifier/Language/"
  347. ]
  348. },
  349. "notification-url": "https://packagist.org/downloads/",
  350. "license": [
  351. "LGPL-2.1-or-later"
  352. ],
  353. "authors": [
  354. {
  355. "name": "Edward Z. Yang",
  356. "email": "admin@htmlpurifier.org",
  357. "homepage": "http://ezyang.com"
  358. }
  359. ],
  360. "description": "Standards compliant HTML filter written in PHP",
  361. "homepage": "http://htmlpurifier.org/",
  362. "keywords": [
  363. "html"
  364. ],
  365. "support": {
  366. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  367. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  368. },
  369. "time": "2023-11-17T15:01:25+00:00"
  370. },
  371. {
  372. "name": "halaxa/json-machine",
  373. "version": "1.1.4",
  374. "source": {
  375. "type": "git",
  376. "url": "https://github.com/halaxa/json-machine.git",
  377. "reference": "5147f38f74d7ab3e27733e3f3bdabbd2fd28e3fa"
  378. },
  379. "dist": {
  380. "type": "zip",
  381. "url": "https://api.github.com/repos/halaxa/json-machine/zipball/5147f38f74d7ab3e27733e3f3bdabbd2fd28e3fa",
  382. "reference": "5147f38f74d7ab3e27733e3f3bdabbd2fd28e3fa",
  383. "shasum": ""
  384. },
  385. "require": {
  386. "php": "7.0 - 8.3"
  387. },
  388. "require-dev": {
  389. "ext-json": "*",
  390. "friendsofphp/php-cs-fixer": "^3.0",
  391. "phpstan/phpstan": "^1.10",
  392. "phpunit/phpunit": "^8.0"
  393. },
  394. "suggest": {
  395. "ext-json": "To run JSON Machine out of the box without custom decoders.",
  396. "guzzlehttp/guzzle": "To run example with GuzzleHttp"
  397. },
  398. "type": "library",
  399. "autoload": {
  400. "psr-4": {
  401. "JsonMachine\\": "src/"
  402. },
  403. "exclude-from-classmap": [
  404. "src/autoloader.php"
  405. ]
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "Apache-2.0"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Filip Halaxa",
  414. "email": "filip@halaxa.cz"
  415. }
  416. ],
  417. "description": "Efficient, easy-to-use and fast JSON pull parser",
  418. "support": {
  419. "issues": "https://github.com/halaxa/json-machine/issues",
  420. "source": "https://github.com/halaxa/json-machine/tree/1.1.4"
  421. },
  422. "funding": [
  423. {
  424. "url": "https://ko-fi.com/G2G57KTE4",
  425. "type": "other"
  426. }
  427. ],
  428. "time": "2023-11-28T21:12:40+00:00"
  429. },
  430. {
  431. "name": "imagine/imagine",
  432. "version": "1.3.5",
  433. "source": {
  434. "type": "git",
  435. "url": "https://github.com/php-imagine/Imagine.git",
  436. "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f"
  437. },
  438. "dist": {
  439. "type": "zip",
  440. "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/7151d553edec4dc2bbac60419f7a74ff34700e7f",
  441. "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f",
  442. "shasum": ""
  443. },
  444. "require": {
  445. "php": ">=5.5"
  446. },
  447. "require-dev": {
  448. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4 || ^9.3"
  449. },
  450. "suggest": {
  451. "ext-exif": "to read EXIF metadata",
  452. "ext-gd": "to use the GD implementation",
  453. "ext-gmagick": "to use the Gmagick implementation",
  454. "ext-imagick": "to use the Imagick implementation"
  455. },
  456. "type": "library",
  457. "extra": {
  458. "branch-alias": {
  459. "dev-develop": "1.x-dev"
  460. }
  461. },
  462. "autoload": {
  463. "psr-4": {
  464. "Imagine\\": "src/"
  465. }
  466. },
  467. "notification-url": "https://packagist.org/downloads/",
  468. "license": [
  469. "MIT"
  470. ],
  471. "authors": [
  472. {
  473. "name": "Bulat Shakirzyanov",
  474. "email": "mallluhuct@gmail.com",
  475. "homepage": "http://avalanche123.com"
  476. }
  477. ],
  478. "description": "Image processing for PHP 5.3",
  479. "homepage": "http://imagine.readthedocs.org/",
  480. "keywords": [
  481. "drawing",
  482. "graphics",
  483. "image manipulation",
  484. "image processing"
  485. ],
  486. "support": {
  487. "issues": "https://github.com/php-imagine/Imagine/issues",
  488. "source": "https://github.com/php-imagine/Imagine/tree/1.3.5"
  489. },
  490. "time": "2023-06-07T14:49:52+00:00"
  491. },
  492. {
  493. "name": "maennchen/zipstream-php",
  494. "version": "2.4.0",
  495. "source": {
  496. "type": "git",
  497. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  498. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  499. },
  500. "dist": {
  501. "type": "zip",
  502. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  503. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  504. "shasum": ""
  505. },
  506. "require": {
  507. "ext-mbstring": "*",
  508. "myclabs/php-enum": "^1.5",
  509. "php": "^8.0",
  510. "psr/http-message": "^1.0"
  511. },
  512. "require-dev": {
  513. "ext-zip": "*",
  514. "friendsofphp/php-cs-fixer": "^3.9",
  515. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  516. "mikey179/vfsstream": "^1.6",
  517. "php-coveralls/php-coveralls": "^2.4",
  518. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  519. "vimeo/psalm": "^5.0"
  520. },
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "ZipStream\\": "src/"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Paul Duncan",
  534. "email": "pabs@pablotron.org"
  535. },
  536. {
  537. "name": "Jonatan Männchen",
  538. "email": "jonatan@maennchen.ch"
  539. },
  540. {
  541. "name": "Jesse Donat",
  542. "email": "donatj@gmail.com"
  543. },
  544. {
  545. "name": "András Kolesár",
  546. "email": "kolesar@kolesar.hu"
  547. }
  548. ],
  549. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  550. "keywords": [
  551. "stream",
  552. "zip"
  553. ],
  554. "support": {
  555. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  556. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  557. },
  558. "funding": [
  559. {
  560. "url": "https://github.com/maennchen",
  561. "type": "github"
  562. },
  563. {
  564. "url": "https://opencollective.com/zipstream",
  565. "type": "open_collective"
  566. }
  567. ],
  568. "time": "2022-12-08T12:29:14+00:00"
  569. },
  570. {
  571. "name": "markbaker/complex",
  572. "version": "3.0.2",
  573. "source": {
  574. "type": "git",
  575. "url": "https://github.com/MarkBaker/PHPComplex.git",
  576. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  577. },
  578. "dist": {
  579. "type": "zip",
  580. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  581. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  582. "shasum": ""
  583. },
  584. "require": {
  585. "php": "^7.2 || ^8.0"
  586. },
  587. "require-dev": {
  588. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  589. "phpcompatibility/php-compatibility": "^9.3",
  590. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  591. "squizlabs/php_codesniffer": "^3.7"
  592. },
  593. "type": "library",
  594. "autoload": {
  595. "psr-4": {
  596. "Complex\\": "classes/src/"
  597. }
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "MIT"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Mark Baker",
  606. "email": "mark@lange.demon.co.uk"
  607. }
  608. ],
  609. "description": "PHP Class for working with complex numbers",
  610. "homepage": "https://github.com/MarkBaker/PHPComplex",
  611. "keywords": [
  612. "complex",
  613. "mathematics"
  614. ],
  615. "support": {
  616. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  617. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  618. },
  619. "time": "2022-12-06T16:21:08+00:00"
  620. },
  621. {
  622. "name": "markbaker/matrix",
  623. "version": "3.0.1",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  627. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  632. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "php": "^7.1 || ^8.0"
  637. },
  638. "require-dev": {
  639. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  640. "phpcompatibility/php-compatibility": "^9.3",
  641. "phpdocumentor/phpdocumentor": "2.*",
  642. "phploc/phploc": "^4.0",
  643. "phpmd/phpmd": "2.*",
  644. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  645. "sebastian/phpcpd": "^4.0",
  646. "squizlabs/php_codesniffer": "^3.7"
  647. },
  648. "type": "library",
  649. "autoload": {
  650. "psr-4": {
  651. "Matrix\\": "classes/src/"
  652. }
  653. },
  654. "notification-url": "https://packagist.org/downloads/",
  655. "license": [
  656. "MIT"
  657. ],
  658. "authors": [
  659. {
  660. "name": "Mark Baker",
  661. "email": "mark@demon-angel.eu"
  662. }
  663. ],
  664. "description": "PHP Class for working with matrices",
  665. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  666. "keywords": [
  667. "mathematics",
  668. "matrix",
  669. "vector"
  670. ],
  671. "support": {
  672. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  673. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  674. },
  675. "time": "2022-12-02T22:17:43+00:00"
  676. },
  677. {
  678. "name": "myclabs/php-enum",
  679. "version": "1.8.4",
  680. "source": {
  681. "type": "git",
  682. "url": "https://github.com/myclabs/php-enum.git",
  683. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  684. },
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  688. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  689. "shasum": ""
  690. },
  691. "require": {
  692. "ext-json": "*",
  693. "php": "^7.3 || ^8.0"
  694. },
  695. "require-dev": {
  696. "phpunit/phpunit": "^9.5",
  697. "squizlabs/php_codesniffer": "1.*",
  698. "vimeo/psalm": "^4.6.2"
  699. },
  700. "type": "library",
  701. "autoload": {
  702. "psr-4": {
  703. "MyCLabs\\Enum\\": "src/"
  704. },
  705. "classmap": [
  706. "stubs/Stringable.php"
  707. ]
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "MIT"
  712. ],
  713. "authors": [
  714. {
  715. "name": "PHP Enum contributors",
  716. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  717. }
  718. ],
  719. "description": "PHP Enum implementation",
  720. "homepage": "http://github.com/myclabs/php-enum",
  721. "keywords": [
  722. "enum"
  723. ],
  724. "support": {
  725. "issues": "https://github.com/myclabs/php-enum/issues",
  726. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  727. },
  728. "funding": [
  729. {
  730. "url": "https://github.com/mnapoli",
  731. "type": "github"
  732. },
  733. {
  734. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  735. "type": "tidelift"
  736. }
  737. ],
  738. "time": "2022-08-04T09:53:51+00:00"
  739. },
  740. {
  741. "name": "paragonie/random_compat",
  742. "version": "v9.99.100",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/paragonie/random_compat.git",
  746. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  751. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "php": ">= 7"
  756. },
  757. "require-dev": {
  758. "phpunit/phpunit": "4.*|5.*",
  759. "vimeo/psalm": "^1"
  760. },
  761. "suggest": {
  762. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  763. },
  764. "type": "library",
  765. "notification-url": "https://packagist.org/downloads/",
  766. "license": [
  767. "MIT"
  768. ],
  769. "authors": [
  770. {
  771. "name": "Paragon Initiative Enterprises",
  772. "email": "security@paragonie.com",
  773. "homepage": "https://paragonie.com"
  774. }
  775. ],
  776. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  777. "keywords": [
  778. "csprng",
  779. "polyfill",
  780. "pseudorandom",
  781. "random"
  782. ],
  783. "support": {
  784. "email": "info@paragonie.com",
  785. "issues": "https://github.com/paragonie/random_compat/issues",
  786. "source": "https://github.com/paragonie/random_compat"
  787. },
  788. "time": "2020-10-15T08:29:30+00:00"
  789. },
  790. {
  791. "name": "phpoffice/phpspreadsheet",
  792. "version": "1.20.0",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  796. "reference": "44436f270bb134b4a94670f3d020a85dfa0a3c02"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/44436f270bb134b4a94670f3d020a85dfa0a3c02",
  801. "reference": "44436f270bb134b4a94670f3d020a85dfa0a3c02",
  802. "shasum": ""
  803. },
  804. "require": {
  805. "ext-ctype": "*",
  806. "ext-dom": "*",
  807. "ext-fileinfo": "*",
  808. "ext-gd": "*",
  809. "ext-iconv": "*",
  810. "ext-libxml": "*",
  811. "ext-mbstring": "*",
  812. "ext-simplexml": "*",
  813. "ext-xml": "*",
  814. "ext-xmlreader": "*",
  815. "ext-xmlwriter": "*",
  816. "ext-zip": "*",
  817. "ext-zlib": "*",
  818. "ezyang/htmlpurifier": "^4.13",
  819. "maennchen/zipstream-php": "^2.1",
  820. "markbaker/complex": "^3.0",
  821. "markbaker/matrix": "^3.0",
  822. "php": "^7.3 || ^8.0",
  823. "psr/http-client": "^1.0",
  824. "psr/http-factory": "^1.0",
  825. "psr/simple-cache": "^1.0"
  826. },
  827. "require-dev": {
  828. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  829. "dompdf/dompdf": "^1.0",
  830. "friendsofphp/php-cs-fixer": "^3.2",
  831. "jpgraph/jpgraph": "^4.0",
  832. "mpdf/mpdf": "^8.0",
  833. "phpcompatibility/php-compatibility": "^9.3",
  834. "phpstan/phpstan": "^1.1",
  835. "phpstan/phpstan-phpunit": "^1.0",
  836. "phpunit/phpunit": "^8.5 || ^9.0",
  837. "squizlabs/php_codesniffer": "^3.6",
  838. "tecnickcom/tcpdf": "^6.4"
  839. },
  840. "suggest": {
  841. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  842. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  843. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  844. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  845. },
  846. "type": "library",
  847. "autoload": {
  848. "psr-4": {
  849. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Maarten Balliauw",
  859. "homepage": "https://blog.maartenballiauw.be"
  860. },
  861. {
  862. "name": "Mark Baker",
  863. "homepage": "https://markbakeruk.net"
  864. },
  865. {
  866. "name": "Franck Lefevre",
  867. "homepage": "https://rootslabs.net"
  868. },
  869. {
  870. "name": "Erik Tilt"
  871. },
  872. {
  873. "name": "Adrien Crivelli"
  874. }
  875. ],
  876. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  877. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  878. "keywords": [
  879. "OpenXML",
  880. "excel",
  881. "gnumeric",
  882. "ods",
  883. "php",
  884. "spreadsheet",
  885. "xls",
  886. "xlsx"
  887. ],
  888. "support": {
  889. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  890. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.20.0"
  891. },
  892. "time": "2021-11-23T15:23:42+00:00"
  893. },
  894. {
  895. "name": "psr/event-dispatcher",
  896. "version": "1.0.0",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/php-fig/event-dispatcher.git",
  900. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  905. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "php": ">=7.2.0"
  910. },
  911. "type": "library",
  912. "extra": {
  913. "branch-alias": {
  914. "dev-master": "1.0.x-dev"
  915. }
  916. },
  917. "autoload": {
  918. "psr-4": {
  919. "Psr\\EventDispatcher\\": "src/"
  920. }
  921. },
  922. "notification-url": "https://packagist.org/downloads/",
  923. "license": [
  924. "MIT"
  925. ],
  926. "authors": [
  927. {
  928. "name": "PHP-FIG",
  929. "homepage": "http://www.php-fig.org/"
  930. }
  931. ],
  932. "description": "Standard interfaces for event handling.",
  933. "keywords": [
  934. "events",
  935. "psr",
  936. "psr-14"
  937. ],
  938. "support": {
  939. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  940. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  941. },
  942. "time": "2019-01-08T18:20:26+00:00"
  943. },
  944. {
  945. "name": "psr/http-client",
  946. "version": "1.0.3",
  947. "source": {
  948. "type": "git",
  949. "url": "https://github.com/php-fig/http-client.git",
  950. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  951. },
  952. "dist": {
  953. "type": "zip",
  954. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  955. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  956. "shasum": ""
  957. },
  958. "require": {
  959. "php": "^7.0 || ^8.0",
  960. "psr/http-message": "^1.0 || ^2.0"
  961. },
  962. "type": "library",
  963. "extra": {
  964. "branch-alias": {
  965. "dev-master": "1.0.x-dev"
  966. }
  967. },
  968. "autoload": {
  969. "psr-4": {
  970. "Psr\\Http\\Client\\": "src/"
  971. }
  972. },
  973. "notification-url": "https://packagist.org/downloads/",
  974. "license": [
  975. "MIT"
  976. ],
  977. "authors": [
  978. {
  979. "name": "PHP-FIG",
  980. "homepage": "https://www.php-fig.org/"
  981. }
  982. ],
  983. "description": "Common interface for HTTP clients",
  984. "homepage": "https://github.com/php-fig/http-client",
  985. "keywords": [
  986. "http",
  987. "http-client",
  988. "psr",
  989. "psr-18"
  990. ],
  991. "support": {
  992. "source": "https://github.com/php-fig/http-client"
  993. },
  994. "time": "2023-09-23T14:17:50+00:00"
  995. },
  996. {
  997. "name": "psr/http-factory",
  998. "version": "1.1.0",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/php-fig/http-factory.git",
  1002. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1007. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "php": ">=7.1",
  1012. "psr/http-message": "^1.0 || ^2.0"
  1013. },
  1014. "type": "library",
  1015. "extra": {
  1016. "branch-alias": {
  1017. "dev-master": "1.0.x-dev"
  1018. }
  1019. },
  1020. "autoload": {
  1021. "psr-4": {
  1022. "Psr\\Http\\Message\\": "src/"
  1023. }
  1024. },
  1025. "notification-url": "https://packagist.org/downloads/",
  1026. "license": [
  1027. "MIT"
  1028. ],
  1029. "authors": [
  1030. {
  1031. "name": "PHP-FIG",
  1032. "homepage": "https://www.php-fig.org/"
  1033. }
  1034. ],
  1035. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  1036. "keywords": [
  1037. "factory",
  1038. "http",
  1039. "message",
  1040. "psr",
  1041. "psr-17",
  1042. "psr-7",
  1043. "request",
  1044. "response"
  1045. ],
  1046. "support": {
  1047. "source": "https://github.com/php-fig/http-factory"
  1048. },
  1049. "time": "2024-04-15T12:06:14+00:00"
  1050. },
  1051. {
  1052. "name": "psr/http-message",
  1053. "version": "1.1",
  1054. "source": {
  1055. "type": "git",
  1056. "url": "https://github.com/php-fig/http-message.git",
  1057. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1058. },
  1059. "dist": {
  1060. "type": "zip",
  1061. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1062. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1063. "shasum": ""
  1064. },
  1065. "require": {
  1066. "php": "^7.2 || ^8.0"
  1067. },
  1068. "type": "library",
  1069. "extra": {
  1070. "branch-alias": {
  1071. "dev-master": "1.1.x-dev"
  1072. }
  1073. },
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Psr\\Http\\Message\\": "src/"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "PHP-FIG",
  1086. "homepage": "http://www.php-fig.org/"
  1087. }
  1088. ],
  1089. "description": "Common interface for HTTP messages",
  1090. "homepage": "https://github.com/php-fig/http-message",
  1091. "keywords": [
  1092. "http",
  1093. "http-message",
  1094. "psr",
  1095. "psr-7",
  1096. "request",
  1097. "response"
  1098. ],
  1099. "support": {
  1100. "source": "https://github.com/php-fig/http-message/tree/1.1"
  1101. },
  1102. "time": "2023-04-04T09:50:52+00:00"
  1103. },
  1104. {
  1105. "name": "psr/simple-cache",
  1106. "version": "1.0.1",
  1107. "source": {
  1108. "type": "git",
  1109. "url": "https://github.com/php-fig/simple-cache.git",
  1110. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1111. },
  1112. "dist": {
  1113. "type": "zip",
  1114. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1115. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1116. "shasum": ""
  1117. },
  1118. "require": {
  1119. "php": ">=5.3.0"
  1120. },
  1121. "type": "library",
  1122. "extra": {
  1123. "branch-alias": {
  1124. "dev-master": "1.0.x-dev"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Psr\\SimpleCache\\": "src/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "PHP-FIG",
  1139. "homepage": "http://www.php-fig.org/"
  1140. }
  1141. ],
  1142. "description": "Common interfaces for simple caching",
  1143. "keywords": [
  1144. "cache",
  1145. "caching",
  1146. "psr",
  1147. "psr-16",
  1148. "simple-cache"
  1149. ],
  1150. "support": {
  1151. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1152. },
  1153. "time": "2017-10-23T01:57:42+00:00"
  1154. },
  1155. {
  1156. "name": "solarium/solarium",
  1157. "version": "6.3.5",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/solariumphp/solarium.git",
  1161. "reference": "ae4ea592dc92d2be4dfd0a329f1ffbe3cbd01cf3"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/solariumphp/solarium/zipball/ae4ea592dc92d2be4dfd0a329f1ffbe3cbd01cf3",
  1166. "reference": "ae4ea592dc92d2be4dfd0a329f1ffbe3cbd01cf3",
  1167. "shasum": ""
  1168. },
  1169. "require": {
  1170. "composer-runtime-api": ">=2.0",
  1171. "ext-json": "*",
  1172. "halaxa/json-machine": "^1.1",
  1173. "php": "^8.0",
  1174. "psr/event-dispatcher": "^1.0",
  1175. "psr/http-client": "^1.0",
  1176. "psr/http-factory": "^1.0",
  1177. "symfony/event-dispatcher-contracts": "^2.0 || ^3.0"
  1178. },
  1179. "require-dev": {
  1180. "escapestudios/symfony2-coding-standard": "^3.11",
  1181. "ext-curl": "*",
  1182. "ext-iconv": "*",
  1183. "nyholm/psr7": "^1.8",
  1184. "php-http/guzzle7-adapter": "^1.0",
  1185. "phpstan/extension-installer": "^1.0",
  1186. "phpstan/phpstan": "^1.0",
  1187. "phpstan/phpstan-deprecation-rules": "^1.0",
  1188. "phpstan/phpstan-phpunit": "^1.0",
  1189. "phpunit/phpunit": "^9.6",
  1190. "rawr/phpunit-data-provider": "^3.3",
  1191. "roave/security-advisories": "dev-master",
  1192. "symfony/event-dispatcher": "^5.0 || ^6.0"
  1193. },
  1194. "type": "library",
  1195. "autoload": {
  1196. "psr-4": {
  1197. "Solarium\\": "src/"
  1198. }
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "BSD-3-Clause"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "See GitHub contributors",
  1207. "homepage": "https://github.com/solariumphp/solarium/contributors"
  1208. }
  1209. ],
  1210. "description": "PHP Solr client",
  1211. "homepage": "http://www.solarium-project.org",
  1212. "keywords": [
  1213. "php",
  1214. "search",
  1215. "solr"
  1216. ],
  1217. "support": {
  1218. "issues": "https://github.com/solariumphp/solarium/issues",
  1219. "source": "https://github.com/solariumphp/solarium/tree/6.3.5"
  1220. },
  1221. "time": "2024-01-10T08:36:53+00:00"
  1222. },
  1223. {
  1224. "name": "swiftmailer/swiftmailer",
  1225. "version": "v6.3.0",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/swiftmailer/swiftmailer.git",
  1229. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  1234. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "egulias/email-validator": "^2.0|^3.1",
  1239. "php": ">=7.0.0",
  1240. "symfony/polyfill-iconv": "^1.0",
  1241. "symfony/polyfill-intl-idn": "^1.10",
  1242. "symfony/polyfill-mbstring": "^1.0"
  1243. },
  1244. "require-dev": {
  1245. "mockery/mockery": "^1.0",
  1246. "symfony/phpunit-bridge": "^4.4|^5.4"
  1247. },
  1248. "suggest": {
  1249. "ext-intl": "Needed to support internationalized email addresses"
  1250. },
  1251. "type": "library",
  1252. "extra": {
  1253. "branch-alias": {
  1254. "dev-master": "6.2-dev"
  1255. }
  1256. },
  1257. "autoload": {
  1258. "files": [
  1259. "lib/swift_required.php"
  1260. ]
  1261. },
  1262. "notification-url": "https://packagist.org/downloads/",
  1263. "license": [
  1264. "MIT"
  1265. ],
  1266. "authors": [
  1267. {
  1268. "name": "Chris Corbyn"
  1269. },
  1270. {
  1271. "name": "Fabien Potencier",
  1272. "email": "fabien@symfony.com"
  1273. }
  1274. ],
  1275. "description": "Swiftmailer, free feature-rich PHP mailer",
  1276. "homepage": "https://swiftmailer.symfony.com",
  1277. "keywords": [
  1278. "email",
  1279. "mail",
  1280. "mailer"
  1281. ],
  1282. "support": {
  1283. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  1284. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  1285. },
  1286. "funding": [
  1287. {
  1288. "url": "https://github.com/fabpot",
  1289. "type": "github"
  1290. },
  1291. {
  1292. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  1293. "type": "tidelift"
  1294. }
  1295. ],
  1296. "abandoned": "symfony/mailer",
  1297. "time": "2021-10-18T15:26:12+00:00"
  1298. },
  1299. {
  1300. "name": "symfony/event-dispatcher-contracts",
  1301. "version": "v3.5.0",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  1305. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  1310. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "php": ">=8.1",
  1315. "psr/event-dispatcher": "^1"
  1316. },
  1317. "type": "library",
  1318. "extra": {
  1319. "branch-alias": {
  1320. "dev-main": "3.5-dev"
  1321. },
  1322. "thanks": {
  1323. "name": "symfony/contracts",
  1324. "url": "https://github.com/symfony/contracts"
  1325. }
  1326. },
  1327. "autoload": {
  1328. "psr-4": {
  1329. "Symfony\\Contracts\\EventDispatcher\\": ""
  1330. }
  1331. },
  1332. "notification-url": "https://packagist.org/downloads/",
  1333. "license": [
  1334. "MIT"
  1335. ],
  1336. "authors": [
  1337. {
  1338. "name": "Nicolas Grekas",
  1339. "email": "p@tchwork.com"
  1340. },
  1341. {
  1342. "name": "Symfony Community",
  1343. "homepage": "https://symfony.com/contributors"
  1344. }
  1345. ],
  1346. "description": "Generic abstractions related to dispatching event",
  1347. "homepage": "https://symfony.com",
  1348. "keywords": [
  1349. "abstractions",
  1350. "contracts",
  1351. "decoupling",
  1352. "interfaces",
  1353. "interoperability",
  1354. "standards"
  1355. ],
  1356. "support": {
  1357. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  1358. },
  1359. "funding": [
  1360. {
  1361. "url": "https://symfony.com/sponsor",
  1362. "type": "custom"
  1363. },
  1364. {
  1365. "url": "https://github.com/fabpot",
  1366. "type": "github"
  1367. },
  1368. {
  1369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1370. "type": "tidelift"
  1371. }
  1372. ],
  1373. "time": "2024-04-18T09:32:20+00:00"
  1374. },
  1375. {
  1376. "name": "symfony/polyfill-iconv",
  1377. "version": "v1.31.0",
  1378. "source": {
  1379. "type": "git",
  1380. "url": "https://github.com/symfony/polyfill-iconv.git",
  1381. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  1382. },
  1383. "dist": {
  1384. "type": "zip",
  1385. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  1386. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  1387. "shasum": ""
  1388. },
  1389. "require": {
  1390. "php": ">=7.2"
  1391. },
  1392. "provide": {
  1393. "ext-iconv": "*"
  1394. },
  1395. "suggest": {
  1396. "ext-iconv": "For best performance"
  1397. },
  1398. "type": "library",
  1399. "extra": {
  1400. "thanks": {
  1401. "name": "symfony/polyfill",
  1402. "url": "https://github.com/symfony/polyfill"
  1403. }
  1404. },
  1405. "autoload": {
  1406. "files": [
  1407. "bootstrap.php"
  1408. ],
  1409. "psr-4": {
  1410. "Symfony\\Polyfill\\Iconv\\": ""
  1411. }
  1412. },
  1413. "notification-url": "https://packagist.org/downloads/",
  1414. "license": [
  1415. "MIT"
  1416. ],
  1417. "authors": [
  1418. {
  1419. "name": "Nicolas Grekas",
  1420. "email": "p@tchwork.com"
  1421. },
  1422. {
  1423. "name": "Symfony Community",
  1424. "homepage": "https://symfony.com/contributors"
  1425. }
  1426. ],
  1427. "description": "Symfony polyfill for the Iconv extension",
  1428. "homepage": "https://symfony.com",
  1429. "keywords": [
  1430. "compatibility",
  1431. "iconv",
  1432. "polyfill",
  1433. "portable",
  1434. "shim"
  1435. ],
  1436. "support": {
  1437. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  1438. },
  1439. "funding": [
  1440. {
  1441. "url": "https://symfony.com/sponsor",
  1442. "type": "custom"
  1443. },
  1444. {
  1445. "url": "https://github.com/fabpot",
  1446. "type": "github"
  1447. },
  1448. {
  1449. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1450. "type": "tidelift"
  1451. }
  1452. ],
  1453. "time": "2024-09-09T11:45:10+00:00"
  1454. },
  1455. {
  1456. "name": "symfony/polyfill-intl-idn",
  1457. "version": "v1.31.0",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  1461. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  1466. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  1467. "shasum": ""
  1468. },
  1469. "require": {
  1470. "php": ">=7.2",
  1471. "symfony/polyfill-intl-normalizer": "^1.10"
  1472. },
  1473. "suggest": {
  1474. "ext-intl": "For best performance"
  1475. },
  1476. "type": "library",
  1477. "extra": {
  1478. "thanks": {
  1479. "name": "symfony/polyfill",
  1480. "url": "https://github.com/symfony/polyfill"
  1481. }
  1482. },
  1483. "autoload": {
  1484. "files": [
  1485. "bootstrap.php"
  1486. ],
  1487. "psr-4": {
  1488. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  1489. }
  1490. },
  1491. "notification-url": "https://packagist.org/downloads/",
  1492. "license": [
  1493. "MIT"
  1494. ],
  1495. "authors": [
  1496. {
  1497. "name": "Laurent Bassin",
  1498. "email": "laurent@bassin.info"
  1499. },
  1500. {
  1501. "name": "Trevor Rowbotham",
  1502. "email": "trevor.rowbotham@pm.me"
  1503. },
  1504. {
  1505. "name": "Symfony Community",
  1506. "homepage": "https://symfony.com/contributors"
  1507. }
  1508. ],
  1509. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  1510. "homepage": "https://symfony.com",
  1511. "keywords": [
  1512. "compatibility",
  1513. "idn",
  1514. "intl",
  1515. "polyfill",
  1516. "portable",
  1517. "shim"
  1518. ],
  1519. "support": {
  1520. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  1521. },
  1522. "funding": [
  1523. {
  1524. "url": "https://symfony.com/sponsor",
  1525. "type": "custom"
  1526. },
  1527. {
  1528. "url": "https://github.com/fabpot",
  1529. "type": "github"
  1530. },
  1531. {
  1532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1533. "type": "tidelift"
  1534. }
  1535. ],
  1536. "time": "2024-09-09T11:45:10+00:00"
  1537. },
  1538. {
  1539. "name": "symfony/polyfill-intl-normalizer",
  1540. "version": "v1.31.0",
  1541. "source": {
  1542. "type": "git",
  1543. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  1544. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  1545. },
  1546. "dist": {
  1547. "type": "zip",
  1548. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  1549. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  1550. "shasum": ""
  1551. },
  1552. "require": {
  1553. "php": ">=7.2"
  1554. },
  1555. "suggest": {
  1556. "ext-intl": "For best performance"
  1557. },
  1558. "type": "library",
  1559. "extra": {
  1560. "thanks": {
  1561. "name": "symfony/polyfill",
  1562. "url": "https://github.com/symfony/polyfill"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "files": [
  1567. "bootstrap.php"
  1568. ],
  1569. "psr-4": {
  1570. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  1571. },
  1572. "classmap": [
  1573. "Resources/stubs"
  1574. ]
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "MIT"
  1579. ],
  1580. "authors": [
  1581. {
  1582. "name": "Nicolas Grekas",
  1583. "email": "p@tchwork.com"
  1584. },
  1585. {
  1586. "name": "Symfony Community",
  1587. "homepage": "https://symfony.com/contributors"
  1588. }
  1589. ],
  1590. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  1591. "homepage": "https://symfony.com",
  1592. "keywords": [
  1593. "compatibility",
  1594. "intl",
  1595. "normalizer",
  1596. "polyfill",
  1597. "portable",
  1598. "shim"
  1599. ],
  1600. "support": {
  1601. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  1602. },
  1603. "funding": [
  1604. {
  1605. "url": "https://symfony.com/sponsor",
  1606. "type": "custom"
  1607. },
  1608. {
  1609. "url": "https://github.com/fabpot",
  1610. "type": "github"
  1611. },
  1612. {
  1613. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1614. "type": "tidelift"
  1615. }
  1616. ],
  1617. "time": "2024-09-09T11:45:10+00:00"
  1618. },
  1619. {
  1620. "name": "symfony/polyfill-mbstring",
  1621. "version": "v1.31.0",
  1622. "source": {
  1623. "type": "git",
  1624. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1625. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  1626. },
  1627. "dist": {
  1628. "type": "zip",
  1629. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  1630. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  1631. "shasum": ""
  1632. },
  1633. "require": {
  1634. "php": ">=7.2"
  1635. },
  1636. "provide": {
  1637. "ext-mbstring": "*"
  1638. },
  1639. "suggest": {
  1640. "ext-mbstring": "For best performance"
  1641. },
  1642. "type": "library",
  1643. "extra": {
  1644. "thanks": {
  1645. "name": "symfony/polyfill",
  1646. "url": "https://github.com/symfony/polyfill"
  1647. }
  1648. },
  1649. "autoload": {
  1650. "files": [
  1651. "bootstrap.php"
  1652. ],
  1653. "psr-4": {
  1654. "Symfony\\Polyfill\\Mbstring\\": ""
  1655. }
  1656. },
  1657. "notification-url": "https://packagist.org/downloads/",
  1658. "license": [
  1659. "MIT"
  1660. ],
  1661. "authors": [
  1662. {
  1663. "name": "Nicolas Grekas",
  1664. "email": "p@tchwork.com"
  1665. },
  1666. {
  1667. "name": "Symfony Community",
  1668. "homepage": "https://symfony.com/contributors"
  1669. }
  1670. ],
  1671. "description": "Symfony polyfill for the Mbstring extension",
  1672. "homepage": "https://symfony.com",
  1673. "keywords": [
  1674. "compatibility",
  1675. "mbstring",
  1676. "polyfill",
  1677. "portable",
  1678. "shim"
  1679. ],
  1680. "support": {
  1681. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://symfony.com/sponsor",
  1686. "type": "custom"
  1687. },
  1688. {
  1689. "url": "https://github.com/fabpot",
  1690. "type": "github"
  1691. },
  1692. {
  1693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1694. "type": "tidelift"
  1695. }
  1696. ],
  1697. "time": "2024-09-09T11:45:10+00:00"
  1698. },
  1699. {
  1700. "name": "tecnickcom/tcpdf",
  1701. "version": "6.7.6",
  1702. "source": {
  1703. "type": "git",
  1704. "url": "https://github.com/tecnickcom/TCPDF.git",
  1705. "reference": "4cf1ab192e87e6916d20f93077b2bdfa96a2f848"
  1706. },
  1707. "dist": {
  1708. "type": "zip",
  1709. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/4cf1ab192e87e6916d20f93077b2bdfa96a2f848",
  1710. "reference": "4cf1ab192e87e6916d20f93077b2bdfa96a2f848",
  1711. "shasum": ""
  1712. },
  1713. "require": {
  1714. "php": ">=5.5.0"
  1715. },
  1716. "type": "library",
  1717. "autoload": {
  1718. "classmap": [
  1719. "config",
  1720. "include",
  1721. "tcpdf.php",
  1722. "tcpdf_parser.php",
  1723. "tcpdf_import.php",
  1724. "tcpdf_barcodes_1d.php",
  1725. "tcpdf_barcodes_2d.php",
  1726. "include/tcpdf_colors.php",
  1727. "include/tcpdf_filters.php",
  1728. "include/tcpdf_font_data.php",
  1729. "include/tcpdf_fonts.php",
  1730. "include/tcpdf_images.php",
  1731. "include/tcpdf_static.php",
  1732. "include/barcodes/datamatrix.php",
  1733. "include/barcodes/pdf417.php",
  1734. "include/barcodes/qrcode.php"
  1735. ]
  1736. },
  1737. "notification-url": "https://packagist.org/downloads/",
  1738. "license": [
  1739. "LGPL-3.0-or-later"
  1740. ],
  1741. "authors": [
  1742. {
  1743. "name": "Nicola Asuni",
  1744. "email": "info@tecnick.com",
  1745. "role": "lead"
  1746. }
  1747. ],
  1748. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  1749. "homepage": "http://www.tcpdf.org/",
  1750. "keywords": [
  1751. "PDFD32000-2008",
  1752. "TCPDF",
  1753. "barcodes",
  1754. "datamatrix",
  1755. "pdf",
  1756. "pdf417",
  1757. "qrcode"
  1758. ],
  1759. "support": {
  1760. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  1761. "source": "https://github.com/tecnickcom/TCPDF/tree/6.7.6"
  1762. },
  1763. "funding": [
  1764. {
  1765. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&currency_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project",
  1766. "type": "custom"
  1767. }
  1768. ],
  1769. "time": "2024-10-06T10:54:28+00:00"
  1770. },
  1771. {
  1772. "name": "yiisoft/yii2",
  1773. "version": "2.0.51",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/yiisoft/yii2-framework.git",
  1777. "reference": "ea1f112f4dc9a9824e77b788019e2d53325d823c"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/ea1f112f4dc9a9824e77b788019e2d53325d823c",
  1782. "reference": "ea1f112f4dc9a9824e77b788019e2d53325d823c",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "bower-asset/inputmask": "^5.0.8 ",
  1787. "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  1788. "bower-asset/punycode": "^2.2",
  1789. "bower-asset/yii2-pjax": "~2.0.1",
  1790. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  1791. "ext-ctype": "*",
  1792. "ext-mbstring": "*",
  1793. "ezyang/htmlpurifier": "^4.17",
  1794. "lib-pcre": "*",
  1795. "paragonie/random_compat": ">=1",
  1796. "php": ">=7.3.0",
  1797. "yiisoft/yii2-composer": "~2.0.4"
  1798. },
  1799. "bin": [
  1800. "yii"
  1801. ],
  1802. "type": "library",
  1803. "extra": {
  1804. "branch-alias": {
  1805. "dev-master": "2.0.x-dev"
  1806. }
  1807. },
  1808. "autoload": {
  1809. "psr-4": {
  1810. "yii\\": ""
  1811. }
  1812. },
  1813. "notification-url": "https://packagist.org/downloads/",
  1814. "license": [
  1815. "BSD-3-Clause"
  1816. ],
  1817. "authors": [
  1818. {
  1819. "name": "Qiang Xue",
  1820. "email": "qiang.xue@gmail.com",
  1821. "homepage": "https://www.yiiframework.com/",
  1822. "role": "Founder and project lead"
  1823. },
  1824. {
  1825. "name": "Alexander Makarov",
  1826. "email": "sam@rmcreative.ru",
  1827. "homepage": "https://rmcreative.ru/",
  1828. "role": "Core framework development"
  1829. },
  1830. {
  1831. "name": "Maurizio Domba",
  1832. "homepage": "http://mdomba.info/",
  1833. "role": "Core framework development"
  1834. },
  1835. {
  1836. "name": "Carsten Brandt",
  1837. "email": "mail@cebe.cc",
  1838. "homepage": "https://www.cebe.cc/",
  1839. "role": "Core framework development"
  1840. },
  1841. {
  1842. "name": "Timur Ruziev",
  1843. "email": "resurtm@gmail.com",
  1844. "homepage": "http://resurtm.com/",
  1845. "role": "Core framework development"
  1846. },
  1847. {
  1848. "name": "Paul Klimov",
  1849. "email": "klimov.paul@gmail.com",
  1850. "role": "Core framework development"
  1851. },
  1852. {
  1853. "name": "Dmitry Naumenko",
  1854. "email": "d.naumenko.a@gmail.com",
  1855. "role": "Core framework development"
  1856. },
  1857. {
  1858. "name": "Boudewijn Vahrmeijer",
  1859. "email": "info@dynasource.eu",
  1860. "homepage": "http://dynasource.eu",
  1861. "role": "Core framework development"
  1862. }
  1863. ],
  1864. "description": "Yii PHP Framework Version 2",
  1865. "homepage": "https://www.yiiframework.com/",
  1866. "keywords": [
  1867. "framework",
  1868. "yii2"
  1869. ],
  1870. "support": {
  1871. "forum": "https://forum.yiiframework.com/",
  1872. "irc": "ircs://irc.libera.chat:6697/yii",
  1873. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  1874. "source": "https://github.com/yiisoft/yii2",
  1875. "wiki": "https://www.yiiframework.com/wiki"
  1876. },
  1877. "funding": [
  1878. {
  1879. "url": "https://github.com/yiisoft",
  1880. "type": "github"
  1881. },
  1882. {
  1883. "url": "https://opencollective.com/yiisoft",
  1884. "type": "open_collective"
  1885. },
  1886. {
  1887. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  1888. "type": "tidelift"
  1889. }
  1890. ],
  1891. "time": "2024-07-18T19:50:00+00:00"
  1892. },
  1893. {
  1894. "name": "yiisoft/yii2-composer",
  1895. "version": "2.0.10",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/yiisoft/yii2-composer.git",
  1899. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/94bb3f66e779e2774f8776d6e1bdeab402940510",
  1904. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510",
  1905. "shasum": ""
  1906. },
  1907. "require": {
  1908. "composer-plugin-api": "^1.0 | ^2.0"
  1909. },
  1910. "require-dev": {
  1911. "composer/composer": "^1.0 | ^2.0@dev",
  1912. "phpunit/phpunit": "<7"
  1913. },
  1914. "type": "composer-plugin",
  1915. "extra": {
  1916. "class": "yii\\composer\\Plugin",
  1917. "branch-alias": {
  1918. "dev-master": "2.0.x-dev"
  1919. }
  1920. },
  1921. "autoload": {
  1922. "psr-4": {
  1923. "yii\\composer\\": ""
  1924. }
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "BSD-3-Clause"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "Qiang Xue",
  1933. "email": "qiang.xue@gmail.com"
  1934. },
  1935. {
  1936. "name": "Carsten Brandt",
  1937. "email": "mail@cebe.cc"
  1938. }
  1939. ],
  1940. "description": "The composer plugin for Yii extension installer",
  1941. "keywords": [
  1942. "composer",
  1943. "extension installer",
  1944. "yii2"
  1945. ],
  1946. "support": {
  1947. "forum": "http://www.yiiframework.com/forum/",
  1948. "irc": "irc://irc.freenode.net/yii",
  1949. "issues": "https://github.com/yiisoft/yii2-composer/issues",
  1950. "source": "https://github.com/yiisoft/yii2-composer",
  1951. "wiki": "http://www.yiiframework.com/wiki/"
  1952. },
  1953. "funding": [
  1954. {
  1955. "url": "https://github.com/yiisoft",
  1956. "type": "github"
  1957. },
  1958. {
  1959. "url": "https://opencollective.com/yiisoft",
  1960. "type": "open_collective"
  1961. },
  1962. {
  1963. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  1964. "type": "tidelift"
  1965. }
  1966. ],
  1967. "time": "2020-06-24T00:04:01+00:00"
  1968. },
  1969. {
  1970. "name": "yiisoft/yii2-imagine",
  1971. "version": "2.3.1",
  1972. "source": {
  1973. "type": "git",
  1974. "url": "https://github.com/yiisoft/yii2-imagine.git",
  1975. "reference": "7ec4332dc25893aec5a7cf084722b162b3a4d55d"
  1976. },
  1977. "dist": {
  1978. "type": "zip",
  1979. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/7ec4332dc25893aec5a7cf084722b162b3a4d55d",
  1980. "reference": "7ec4332dc25893aec5a7cf084722b162b3a4d55d",
  1981. "shasum": ""
  1982. },
  1983. "require": {
  1984. "imagine/imagine": "^1.0",
  1985. "yiisoft/yii2": "~2.0.0"
  1986. },
  1987. "require-dev": {
  1988. "cweagans/composer-patches": "^1.7",
  1989. "phpunit/phpunit": "4.8.34"
  1990. },
  1991. "type": "yii2-extension",
  1992. "extra": {
  1993. "branch-alias": {
  1994. "dev-master": "2.0.x-dev"
  1995. },
  1996. "composer-exit-on-patch-failure": true,
  1997. "patches": {
  1998. "phpunit/phpunit-mock-objects": {
  1999. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2000. },
  2001. "phpunit/phpunit": {
  2002. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2003. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2004. }
  2005. }
  2006. },
  2007. "autoload": {
  2008. "psr-4": {
  2009. "yii\\imagine\\": "src"
  2010. }
  2011. },
  2012. "notification-url": "https://packagist.org/downloads/",
  2013. "license": [
  2014. "BSD-3-Clause"
  2015. ],
  2016. "authors": [
  2017. {
  2018. "name": "Antonio Ramirez",
  2019. "email": "amigo.cobos@gmail.com"
  2020. }
  2021. ],
  2022. "description": "The Imagine integration for the Yii framework",
  2023. "keywords": [
  2024. "helper",
  2025. "image",
  2026. "imagine",
  2027. "yii2"
  2028. ],
  2029. "support": {
  2030. "forum": "http://www.yiiframework.com/forum/",
  2031. "irc": "irc://irc.freenode.net/yii",
  2032. "issues": "https://github.com/yiisoft/yii2-imagine/issues",
  2033. "source": "https://github.com/yiisoft/yii2-imagine",
  2034. "wiki": "http://www.yiiframework.com/wiki/"
  2035. },
  2036. "funding": [
  2037. {
  2038. "url": "https://github.com/yiisoft",
  2039. "type": "github"
  2040. },
  2041. {
  2042. "url": "https://opencollective.com/yiisoft",
  2043. "type": "open_collective"
  2044. },
  2045. {
  2046. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-imagine",
  2047. "type": "tidelift"
  2048. }
  2049. ],
  2050. "time": "2022-09-04T10:06:40+00:00"
  2051. },
  2052. {
  2053. "name": "yiisoft/yii2-mongodb",
  2054. "version": "2.1.12",
  2055. "source": {
  2056. "type": "git",
  2057. "url": "https://github.com/yiisoft/yii2-mongodb.git",
  2058. "reference": "4a74369a2b233f2def02579766e1eceadb8964be"
  2059. },
  2060. "dist": {
  2061. "type": "zip",
  2062. "url": "https://api.github.com/repos/yiisoft/yii2-mongodb/zipball/4a74369a2b233f2def02579766e1eceadb8964be",
  2063. "reference": "4a74369a2b233f2def02579766e1eceadb8964be",
  2064. "shasum": ""
  2065. },
  2066. "require": {
  2067. "ext-mongodb": ">=1.0.0",
  2068. "paragonie/random_compat": ">=1",
  2069. "yiisoft/yii2": "~2.0.39"
  2070. },
  2071. "require-dev": {
  2072. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  2073. },
  2074. "type": "yii2-extension",
  2075. "extra": {
  2076. "branch-alias": {
  2077. "dev-master": "2.1.x-dev"
  2078. }
  2079. },
  2080. "autoload": {
  2081. "psr-4": {
  2082. "yii\\mongodb\\": "src"
  2083. }
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "BSD-3-Clause"
  2088. ],
  2089. "authors": [
  2090. {
  2091. "name": "Paul Klimov",
  2092. "email": "klimov.paul@gmail.com"
  2093. }
  2094. ],
  2095. "description": "MongoDB extension for the Yii framework",
  2096. "keywords": [
  2097. "GridFS",
  2098. "active-record",
  2099. "mongo",
  2100. "mongodb",
  2101. "yii2"
  2102. ],
  2103. "support": {
  2104. "forum": "http://www.yiiframework.com/forum/",
  2105. "irc": "irc://irc.freenode.net/yii",
  2106. "issues": "https://github.com/yiisoft/yii2-mongodb/issues",
  2107. "source": "https://github.com/yiisoft/yii2-mongodb",
  2108. "wiki": "http://www.yiiframework.com/wiki/"
  2109. },
  2110. "funding": [
  2111. {
  2112. "url": "https://github.com/yiisoft",
  2113. "type": "github"
  2114. },
  2115. {
  2116. "url": "https://opencollective.com/yiisoft",
  2117. "type": "open_collective"
  2118. },
  2119. {
  2120. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-mongodb",
  2121. "type": "tidelift"
  2122. }
  2123. ],
  2124. "time": "2021-08-09T21:15:42+00:00"
  2125. },
  2126. {
  2127. "name": "yiisoft/yii2-redis",
  2128. "version": "2.0.18",
  2129. "source": {
  2130. "type": "git",
  2131. "url": "https://github.com/yiisoft/yii2-redis.git",
  2132. "reference": "08aecdf44e091c5fae3411e719ac0fdb803ef594"
  2133. },
  2134. "dist": {
  2135. "type": "zip",
  2136. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/08aecdf44e091c5fae3411e719ac0fdb803ef594",
  2137. "reference": "08aecdf44e091c5fae3411e719ac0fdb803ef594",
  2138. "shasum": ""
  2139. },
  2140. "require": {
  2141. "ext-openssl": "*",
  2142. "yiisoft/yii2": "~2.0.39"
  2143. },
  2144. "require-dev": {
  2145. "phpunit/phpunit": "<7",
  2146. "yiisoft/yii2-dev": "~2.0.39"
  2147. },
  2148. "type": "yii2-extension",
  2149. "extra": {
  2150. "branch-alias": {
  2151. "dev-master": "2.0.x-dev"
  2152. }
  2153. },
  2154. "autoload": {
  2155. "psr-4": {
  2156. "yii\\redis\\": "src"
  2157. }
  2158. },
  2159. "notification-url": "https://packagist.org/downloads/",
  2160. "license": [
  2161. "BSD-3-Clause"
  2162. ],
  2163. "authors": [
  2164. {
  2165. "name": "Carsten Brandt",
  2166. "email": "mail@cebe.cc"
  2167. }
  2168. ],
  2169. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  2170. "keywords": [
  2171. "active-record",
  2172. "cache",
  2173. "redis",
  2174. "session",
  2175. "yii2"
  2176. ],
  2177. "support": {
  2178. "forum": "http://www.yiiframework.com/forum/",
  2179. "irc": "irc://irc.freenode.net/yii",
  2180. "issues": "https://github.com/yiisoft/yii2-redis/issues",
  2181. "source": "https://github.com/yiisoft/yii2-redis",
  2182. "wiki": "http://www.yiiframework.com/wiki/"
  2183. },
  2184. "funding": [
  2185. {
  2186. "url": "https://github.com/yiisoft",
  2187. "type": "github"
  2188. },
  2189. {
  2190. "url": "https://opencollective.com/yiisoft",
  2191. "type": "open_collective"
  2192. },
  2193. {
  2194. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-redis",
  2195. "type": "tidelift"
  2196. }
  2197. ],
  2198. "time": "2022-09-04T10:34:42+00:00"
  2199. },
  2200. {
  2201. "name": "yiisoft/yii2-swiftmailer",
  2202. "version": "2.1.3",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  2206. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  2211. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  2212. "shasum": ""
  2213. },
  2214. "require": {
  2215. "swiftmailer/swiftmailer": "~6.0",
  2216. "yiisoft/yii2": ">=2.0.4"
  2217. },
  2218. "require-dev": {
  2219. "cweagans/composer-patches": "^1.7",
  2220. "phpunit/phpunit": "4.8.34"
  2221. },
  2222. "type": "yii2-extension",
  2223. "extra": {
  2224. "branch-alias": {
  2225. "dev-master": "2.1.x-dev"
  2226. },
  2227. "composer-exit-on-patch-failure": true,
  2228. "patches": {
  2229. "phpunit/phpunit-mock-objects": {
  2230. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  2231. },
  2232. "phpunit/phpunit": {
  2233. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  2234. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  2235. }
  2236. }
  2237. },
  2238. "autoload": {
  2239. "psr-4": {
  2240. "yii\\swiftmailer\\": "src"
  2241. }
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "BSD-3-Clause"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "Paul Klimov",
  2250. "email": "klimov.paul@gmail.com"
  2251. }
  2252. ],
  2253. "description": "The SwiftMailer integration for the Yii framework",
  2254. "keywords": [
  2255. "email",
  2256. "mail",
  2257. "mailer",
  2258. "swift",
  2259. "swiftmailer",
  2260. "yii2"
  2261. ],
  2262. "support": {
  2263. "forum": "http://www.yiiframework.com/forum/",
  2264. "irc": "irc://irc.freenode.net/yii",
  2265. "issues": "https://github.com/yiisoft/yii2-swiftmailer/issues",
  2266. "source": "https://github.com/yiisoft/yii2-swiftmailer",
  2267. "wiki": "http://www.yiiframework.com/wiki/"
  2268. },
  2269. "funding": [
  2270. {
  2271. "url": "https://github.com/yiisoft",
  2272. "type": "github"
  2273. },
  2274. {
  2275. "url": "https://opencollective.com/yiisoft",
  2276. "type": "open_collective"
  2277. },
  2278. {
  2279. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-swiftmailer",
  2280. "type": "tidelift"
  2281. }
  2282. ],
  2283. "time": "2021-12-30T08:48:48+00:00"
  2284. }
  2285. ],
  2286. "packages-dev": [],
  2287. "aliases": [],
  2288. "minimum-stability": "stable",
  2289. "stability-flags": {},
  2290. "prefer-stable": false,
  2291. "prefer-lowest": false,
  2292. "platform": {
  2293. "php": "^7.4.0||^8.3.0",
  2294. "ext-imagick": "*",
  2295. "ext-mongodb": "*",
  2296. "ext-mongo": "*",
  2297. "ext-mbstring": "*",
  2298. "ext-openssl": "*",
  2299. "ext-bcmath": "*",
  2300. "ext-json": "*"
  2301. },
  2302. "platform-dev": {},
  2303. "plugin-api-version": "2.6.0"
  2304. }