composer.lock 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155
  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": "5e701c768afe8ce8feabe1b539fa7234",
  8. "packages": [
  9. {
  10. "name": "ezyang/htmlpurifier",
  11. "version": "v4.16.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/ezyang/htmlpurifier.git",
  15. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  20. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "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"
  25. },
  26. "require-dev": {
  27. "cerdic/css-tidy": "^1.7 || ^2.0",
  28. "simpletest/simpletest": "dev-master"
  29. },
  30. "suggest": {
  31. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  32. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  33. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  34. "ext-tidy": "Used for pretty-printing HTML"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "files": [
  39. "library/HTMLPurifier.composer.php"
  40. ],
  41. "psr-0": {
  42. "HTMLPurifier": "library/"
  43. },
  44. "exclude-from-classmap": [
  45. "/library/HTMLPurifier/Language/"
  46. ]
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "LGPL-2.1-or-later"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Edward Z. Yang",
  55. "email": "admin@htmlpurifier.org",
  56. "homepage": "http://ezyang.com"
  57. }
  58. ],
  59. "description": "Standards compliant HTML filter written in PHP",
  60. "homepage": "http://htmlpurifier.org/",
  61. "keywords": [
  62. "html"
  63. ],
  64. "support": {
  65. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  66. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  67. },
  68. "time": "2022-09-18T07:06:19+00:00"
  69. },
  70. {
  71. "name": "graham-campbell/result-type",
  72. "version": "v1.1.0",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  76. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  81. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": "^7.2.5 || ^8.0",
  86. "phpoption/phpoption": "^1.9"
  87. },
  88. "require-dev": {
  89. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  90. },
  91. "type": "library",
  92. "autoload": {
  93. "psr-4": {
  94. "GrahamCampbell\\ResultType\\": "src/"
  95. }
  96. },
  97. "notification-url": "https://packagist.org/downloads/",
  98. "license": [
  99. "MIT"
  100. ],
  101. "authors": [
  102. {
  103. "name": "Graham Campbell",
  104. "email": "hello@gjcampbell.co.uk",
  105. "homepage": "https://github.com/GrahamCampbell"
  106. }
  107. ],
  108. "description": "An Implementation Of The Result Type",
  109. "keywords": [
  110. "Graham Campbell",
  111. "GrahamCampbell",
  112. "Result Type",
  113. "Result-Type",
  114. "result"
  115. ],
  116. "support": {
  117. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  118. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  119. },
  120. "funding": [
  121. {
  122. "url": "https://github.com/GrahamCampbell",
  123. "type": "github"
  124. },
  125. {
  126. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  127. "type": "tidelift"
  128. }
  129. ],
  130. "time": "2022-07-30T15:56:11+00:00"
  131. },
  132. {
  133. "name": "maennchen/zipstream-php",
  134. "version": "2.2.1",
  135. "source": {
  136. "type": "git",
  137. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  138. "reference": "211e9ba1530ea5260b45d90c9ea252f56ec52729"
  139. },
  140. "dist": {
  141. "type": "zip",
  142. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/211e9ba1530ea5260b45d90c9ea252f56ec52729",
  143. "reference": "211e9ba1530ea5260b45d90c9ea252f56ec52729",
  144. "shasum": ""
  145. },
  146. "require": {
  147. "myclabs/php-enum": "^1.5",
  148. "php": "^7.4 || ^8.0",
  149. "psr/http-message": "^1.0",
  150. "symfony/polyfill-mbstring": "^1.0"
  151. },
  152. "require-dev": {
  153. "ext-zip": "*",
  154. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  155. "mikey179/vfsstream": "^1.6",
  156. "php-coveralls/php-coveralls": "^2.4",
  157. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  158. "vimeo/psalm": "^4.1"
  159. },
  160. "type": "library",
  161. "autoload": {
  162. "psr-4": {
  163. "ZipStream\\": "src/"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Paul Duncan",
  173. "email": "pabs@pablotron.org"
  174. },
  175. {
  176. "name": "Jonatan Männchen",
  177. "email": "jonatan@maennchen.ch"
  178. },
  179. {
  180. "name": "Jesse Donat",
  181. "email": "donatj@gmail.com"
  182. },
  183. {
  184. "name": "András Kolesár",
  185. "email": "kolesar@kolesar.hu"
  186. }
  187. ],
  188. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  189. "keywords": [
  190. "stream",
  191. "zip"
  192. ],
  193. "support": {
  194. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  195. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.1"
  196. },
  197. "funding": [
  198. {
  199. "url": "https://opencollective.com/zipstream",
  200. "type": "open_collective"
  201. }
  202. ],
  203. "time": "2022-05-18T15:52:06+00:00"
  204. },
  205. {
  206. "name": "markbaker/complex",
  207. "version": "3.0.1",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/MarkBaker/PHPComplex.git",
  211. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  216. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  217. "shasum": ""
  218. },
  219. "require": {
  220. "php": "^7.2 || ^8.0"
  221. },
  222. "require-dev": {
  223. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  224. "phpcompatibility/php-compatibility": "^9.0",
  225. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  226. "squizlabs/php_codesniffer": "^3.4"
  227. },
  228. "type": "library",
  229. "autoload": {
  230. "psr-4": {
  231. "Complex\\": "classes/src/"
  232. }
  233. },
  234. "notification-url": "https://packagist.org/downloads/",
  235. "license": [
  236. "MIT"
  237. ],
  238. "authors": [
  239. {
  240. "name": "Mark Baker",
  241. "email": "mark@lange.demon.co.uk"
  242. }
  243. ],
  244. "description": "PHP Class for working with complex numbers",
  245. "homepage": "https://github.com/MarkBaker/PHPComplex",
  246. "keywords": [
  247. "complex",
  248. "mathematics"
  249. ],
  250. "support": {
  251. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  252. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  253. },
  254. "time": "2021-06-29T15:32:53+00:00"
  255. },
  256. {
  257. "name": "markbaker/matrix",
  258. "version": "3.0.0",
  259. "source": {
  260. "type": "git",
  261. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  262. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  267. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  268. "shasum": ""
  269. },
  270. "require": {
  271. "php": "^7.1 || ^8.0"
  272. },
  273. "require-dev": {
  274. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  275. "phpcompatibility/php-compatibility": "^9.0",
  276. "phpdocumentor/phpdocumentor": "2.*",
  277. "phploc/phploc": "^4.0",
  278. "phpmd/phpmd": "2.*",
  279. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  280. "sebastian/phpcpd": "^4.0",
  281. "squizlabs/php_codesniffer": "^3.4"
  282. },
  283. "type": "library",
  284. "autoload": {
  285. "psr-4": {
  286. "Matrix\\": "classes/src/"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "MIT"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Mark Baker",
  296. "email": "mark@demon-angel.eu"
  297. }
  298. ],
  299. "description": "PHP Class for working with matrices",
  300. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  301. "keywords": [
  302. "mathematics",
  303. "matrix",
  304. "vector"
  305. ],
  306. "support": {
  307. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  308. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  309. },
  310. "time": "2021-07-01T19:01:15+00:00"
  311. },
  312. {
  313. "name": "myclabs/php-enum",
  314. "version": "1.8.4",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/myclabs/php-enum.git",
  318. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  323. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "ext-json": "*",
  328. "php": "^7.3 || ^8.0"
  329. },
  330. "require-dev": {
  331. "phpunit/phpunit": "^9.5",
  332. "squizlabs/php_codesniffer": "1.*",
  333. "vimeo/psalm": "^4.6.2"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "MyCLabs\\Enum\\": "src/"
  339. },
  340. "classmap": [
  341. "stubs/Stringable.php"
  342. ]
  343. },
  344. "notification-url": "https://packagist.org/downloads/",
  345. "license": [
  346. "MIT"
  347. ],
  348. "authors": [
  349. {
  350. "name": "PHP Enum contributors",
  351. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  352. }
  353. ],
  354. "description": "PHP Enum implementation",
  355. "homepage": "http://github.com/myclabs/php-enum",
  356. "keywords": [
  357. "enum"
  358. ],
  359. "support": {
  360. "issues": "https://github.com/myclabs/php-enum/issues",
  361. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  362. },
  363. "funding": [
  364. {
  365. "url": "https://github.com/mnapoli",
  366. "type": "github"
  367. },
  368. {
  369. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  370. "type": "tidelift"
  371. }
  372. ],
  373. "time": "2022-08-04T09:53:51+00:00"
  374. },
  375. {
  376. "name": "phpoffice/phpspreadsheet",
  377. "version": "1.25.2",
  378. "source": {
  379. "type": "git",
  380. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  381. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  382. },
  383. "dist": {
  384. "type": "zip",
  385. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  386. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  387. "shasum": ""
  388. },
  389. "require": {
  390. "ext-ctype": "*",
  391. "ext-dom": "*",
  392. "ext-fileinfo": "*",
  393. "ext-gd": "*",
  394. "ext-iconv": "*",
  395. "ext-libxml": "*",
  396. "ext-mbstring": "*",
  397. "ext-simplexml": "*",
  398. "ext-xml": "*",
  399. "ext-xmlreader": "*",
  400. "ext-xmlwriter": "*",
  401. "ext-zip": "*",
  402. "ext-zlib": "*",
  403. "ezyang/htmlpurifier": "^4.15",
  404. "maennchen/zipstream-php": "^2.1",
  405. "markbaker/complex": "^3.0",
  406. "markbaker/matrix": "^3.0",
  407. "php": "^7.3 || ^8.0",
  408. "psr/http-client": "^1.0",
  409. "psr/http-factory": "^1.0",
  410. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  411. },
  412. "require-dev": {
  413. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  414. "dompdf/dompdf": "^1.0 || ^2.0",
  415. "friendsofphp/php-cs-fixer": "^3.2",
  416. "mitoteam/jpgraph": "10.2.4",
  417. "mpdf/mpdf": "8.1.1",
  418. "phpcompatibility/php-compatibility": "^9.3",
  419. "phpstan/phpstan": "^1.1",
  420. "phpstan/phpstan-phpunit": "^1.0",
  421. "phpunit/phpunit": "^8.5 || ^9.0",
  422. "squizlabs/php_codesniffer": "^3.7",
  423. "tecnickcom/tcpdf": "6.5"
  424. },
  425. "suggest": {
  426. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  427. "ext-intl": "PHP Internationalization Functions",
  428. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  429. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  430. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  431. },
  432. "type": "library",
  433. "autoload": {
  434. "psr-4": {
  435. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  436. }
  437. },
  438. "notification-url": "https://packagist.org/downloads/",
  439. "license": [
  440. "MIT"
  441. ],
  442. "authors": [
  443. {
  444. "name": "Maarten Balliauw",
  445. "homepage": "https://blog.maartenballiauw.be"
  446. },
  447. {
  448. "name": "Mark Baker",
  449. "homepage": "https://markbakeruk.net"
  450. },
  451. {
  452. "name": "Franck Lefevre",
  453. "homepage": "https://rootslabs.net"
  454. },
  455. {
  456. "name": "Erik Tilt"
  457. },
  458. {
  459. "name": "Adrien Crivelli"
  460. }
  461. ],
  462. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  463. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  464. "keywords": [
  465. "OpenXML",
  466. "excel",
  467. "gnumeric",
  468. "ods",
  469. "php",
  470. "spreadsheet",
  471. "xls",
  472. "xlsx"
  473. ],
  474. "support": {
  475. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  476. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  477. },
  478. "time": "2022-09-25T17:21:01+00:00"
  479. },
  480. {
  481. "name": "phpoption/phpoption",
  482. "version": "1.9.0",
  483. "source": {
  484. "type": "git",
  485. "url": "https://github.com/schmittjoh/php-option.git",
  486. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab"
  487. },
  488. "dist": {
  489. "type": "zip",
  490. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  491. "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
  492. "shasum": ""
  493. },
  494. "require": {
  495. "php": "^7.2.5 || ^8.0"
  496. },
  497. "require-dev": {
  498. "bamarni/composer-bin-plugin": "^1.8",
  499. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  500. },
  501. "type": "library",
  502. "extra": {
  503. "bamarni-bin": {
  504. "bin-links": true,
  505. "forward-command": true
  506. },
  507. "branch-alias": {
  508. "dev-master": "1.9-dev"
  509. }
  510. },
  511. "autoload": {
  512. "psr-4": {
  513. "PhpOption\\": "src/PhpOption/"
  514. }
  515. },
  516. "notification-url": "https://packagist.org/downloads/",
  517. "license": [
  518. "Apache-2.0"
  519. ],
  520. "authors": [
  521. {
  522. "name": "Johannes M. Schmitt",
  523. "email": "schmittjoh@gmail.com",
  524. "homepage": "https://github.com/schmittjoh"
  525. },
  526. {
  527. "name": "Graham Campbell",
  528. "email": "hello@gjcampbell.co.uk",
  529. "homepage": "https://github.com/GrahamCampbell"
  530. }
  531. ],
  532. "description": "Option Type for PHP",
  533. "keywords": [
  534. "language",
  535. "option",
  536. "php",
  537. "type"
  538. ],
  539. "support": {
  540. "issues": "https://github.com/schmittjoh/php-option/issues",
  541. "source": "https://github.com/schmittjoh/php-option/tree/1.9.0"
  542. },
  543. "funding": [
  544. {
  545. "url": "https://github.com/GrahamCampbell",
  546. "type": "github"
  547. },
  548. {
  549. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  550. "type": "tidelift"
  551. }
  552. ],
  553. "time": "2022-07-30T15:51:26+00:00"
  554. },
  555. {
  556. "name": "psr/http-client",
  557. "version": "1.0.1",
  558. "source": {
  559. "type": "git",
  560. "url": "https://github.com/php-fig/http-client.git",
  561. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  562. },
  563. "dist": {
  564. "type": "zip",
  565. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  566. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  567. "shasum": ""
  568. },
  569. "require": {
  570. "php": "^7.0 || ^8.0",
  571. "psr/http-message": "^1.0"
  572. },
  573. "type": "library",
  574. "extra": {
  575. "branch-alias": {
  576. "dev-master": "1.0.x-dev"
  577. }
  578. },
  579. "autoload": {
  580. "psr-4": {
  581. "Psr\\Http\\Client\\": "src/"
  582. }
  583. },
  584. "notification-url": "https://packagist.org/downloads/",
  585. "license": [
  586. "MIT"
  587. ],
  588. "authors": [
  589. {
  590. "name": "PHP-FIG",
  591. "homepage": "http://www.php-fig.org/"
  592. }
  593. ],
  594. "description": "Common interface for HTTP clients",
  595. "homepage": "https://github.com/php-fig/http-client",
  596. "keywords": [
  597. "http",
  598. "http-client",
  599. "psr",
  600. "psr-18"
  601. ],
  602. "support": {
  603. "source": "https://github.com/php-fig/http-client/tree/master"
  604. },
  605. "time": "2020-06-29T06:28:15+00:00"
  606. },
  607. {
  608. "name": "psr/http-factory",
  609. "version": "1.0.1",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/php-fig/http-factory.git",
  613. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  618. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "php": ">=7.0.0",
  623. "psr/http-message": "^1.0"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-master": "1.0.x-dev"
  629. }
  630. },
  631. "autoload": {
  632. "psr-4": {
  633. "Psr\\Http\\Message\\": "src/"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "PHP-FIG",
  643. "homepage": "http://www.php-fig.org/"
  644. }
  645. ],
  646. "description": "Common interfaces for PSR-7 HTTP message factories",
  647. "keywords": [
  648. "factory",
  649. "http",
  650. "message",
  651. "psr",
  652. "psr-17",
  653. "psr-7",
  654. "request",
  655. "response"
  656. ],
  657. "support": {
  658. "source": "https://github.com/php-fig/http-factory/tree/master"
  659. },
  660. "time": "2019-04-30T12:38:16+00:00"
  661. },
  662. {
  663. "name": "psr/http-message",
  664. "version": "1.0.1",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/php-fig/http-message.git",
  668. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  673. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "php": ">=5.3.0"
  678. },
  679. "type": "library",
  680. "extra": {
  681. "branch-alias": {
  682. "dev-master": "1.0.x-dev"
  683. }
  684. },
  685. "autoload": {
  686. "psr-4": {
  687. "Psr\\Http\\Message\\": "src/"
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "PHP-FIG",
  697. "homepage": "http://www.php-fig.org/"
  698. }
  699. ],
  700. "description": "Common interface for HTTP messages",
  701. "homepage": "https://github.com/php-fig/http-message",
  702. "keywords": [
  703. "http",
  704. "http-message",
  705. "psr",
  706. "psr-7",
  707. "request",
  708. "response"
  709. ],
  710. "support": {
  711. "source": "https://github.com/php-fig/http-message/tree/master"
  712. },
  713. "time": "2016-08-06T14:39:51+00:00"
  714. },
  715. {
  716. "name": "psr/simple-cache",
  717. "version": "3.0.0",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/php-fig/simple-cache.git",
  721. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  726. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": ">=8.0.0"
  731. },
  732. "type": "library",
  733. "extra": {
  734. "branch-alias": {
  735. "dev-master": "3.0.x-dev"
  736. }
  737. },
  738. "autoload": {
  739. "psr-4": {
  740. "Psr\\SimpleCache\\": "src/"
  741. }
  742. },
  743. "notification-url": "https://packagist.org/downloads/",
  744. "license": [
  745. "MIT"
  746. ],
  747. "authors": [
  748. {
  749. "name": "PHP-FIG",
  750. "homepage": "https://www.php-fig.org/"
  751. }
  752. ],
  753. "description": "Common interfaces for simple caching",
  754. "keywords": [
  755. "cache",
  756. "caching",
  757. "psr",
  758. "psr-16",
  759. "simple-cache"
  760. ],
  761. "support": {
  762. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  763. },
  764. "time": "2021-10-29T13:26:27+00:00"
  765. },
  766. {
  767. "name": "seinopsys/postgresql-database-class",
  768. "version": "v3.1.1",
  769. "source": {
  770. "type": "git",
  771. "url": "https://github.com/SeinopSys/PHP-PostgreSQL-Database-Class.git",
  772. "reference": "47a648fdb67c2fc27e8ff35091c8e36cd95596e9"
  773. },
  774. "dist": {
  775. "type": "zip",
  776. "url": "https://api.github.com/repos/SeinopSys/PHP-PostgreSQL-Database-Class/zipball/47a648fdb67c2fc27e8ff35091c8e36cd95596e9",
  777. "reference": "47a648fdb67c2fc27e8ff35091c8e36cd95596e9",
  778. "shasum": ""
  779. },
  780. "require": {
  781. "ext-pdo": "*",
  782. "ext-pdo_pgsql": "*",
  783. "php": ">=5.4"
  784. },
  785. "require-dev": {
  786. "squizlabs/php_codesniffer": "3.*"
  787. },
  788. "type": "library",
  789. "autoload": {
  790. "psr-4": {
  791. "SeinopSys\\": "src/"
  792. }
  793. },
  794. "notification-url": "https://packagist.org/downloads/",
  795. "license": [
  796. "GPL-3.0-or-later"
  797. ],
  798. "authors": [
  799. {
  800. "name": "SeinopSys",
  801. "email": "seinopsys@gmail.com",
  802. "homepage": "https://github.com/SeinopSys",
  803. "role": "Developer"
  804. }
  805. ],
  806. "description": "PHP wrapper class for PDO-based interaction with PostgreSQL databases, heavily based on ThingEngineer's MysqliDb class",
  807. "support": {
  808. "issues": "https://github.com/SeinopSys/PHP-PostgreSQL-Database-Class/issues",
  809. "source": "https://github.com/SeinopSys/PHP-PostgreSQL-Database-Class/tree/master"
  810. },
  811. "time": "2019-05-26T17:41:40+00:00"
  812. },
  813. {
  814. "name": "symfony/polyfill-ctype",
  815. "version": "v1.27.0",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/symfony/polyfill-ctype.git",
  819. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  824. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "php": ">=7.1"
  829. },
  830. "provide": {
  831. "ext-ctype": "*"
  832. },
  833. "suggest": {
  834. "ext-ctype": "For best performance"
  835. },
  836. "type": "library",
  837. "extra": {
  838. "branch-alias": {
  839. "dev-main": "1.27-dev"
  840. },
  841. "thanks": {
  842. "name": "symfony/polyfill",
  843. "url": "https://github.com/symfony/polyfill"
  844. }
  845. },
  846. "autoload": {
  847. "files": [
  848. "bootstrap.php"
  849. ],
  850. "psr-4": {
  851. "Symfony\\Polyfill\\Ctype\\": ""
  852. }
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "MIT"
  857. ],
  858. "authors": [
  859. {
  860. "name": "Gert de Pagter",
  861. "email": "BackEndTea@gmail.com"
  862. },
  863. {
  864. "name": "Symfony Community",
  865. "homepage": "https://symfony.com/contributors"
  866. }
  867. ],
  868. "description": "Symfony polyfill for ctype functions",
  869. "homepage": "https://symfony.com",
  870. "keywords": [
  871. "compatibility",
  872. "ctype",
  873. "polyfill",
  874. "portable"
  875. ],
  876. "support": {
  877. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  878. },
  879. "funding": [
  880. {
  881. "url": "https://symfony.com/sponsor",
  882. "type": "custom"
  883. },
  884. {
  885. "url": "https://github.com/fabpot",
  886. "type": "github"
  887. },
  888. {
  889. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  890. "type": "tidelift"
  891. }
  892. ],
  893. "time": "2022-11-03T14:55:06+00:00"
  894. },
  895. {
  896. "name": "symfony/polyfill-mbstring",
  897. "version": "v1.27.0",
  898. "source": {
  899. "type": "git",
  900. "url": "https://github.com/symfony/polyfill-mbstring.git",
  901. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  902. },
  903. "dist": {
  904. "type": "zip",
  905. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  906. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  907. "shasum": ""
  908. },
  909. "require": {
  910. "php": ">=7.1"
  911. },
  912. "provide": {
  913. "ext-mbstring": "*"
  914. },
  915. "suggest": {
  916. "ext-mbstring": "For best performance"
  917. },
  918. "type": "library",
  919. "extra": {
  920. "branch-alias": {
  921. "dev-main": "1.27-dev"
  922. },
  923. "thanks": {
  924. "name": "symfony/polyfill",
  925. "url": "https://github.com/symfony/polyfill"
  926. }
  927. },
  928. "autoload": {
  929. "files": [
  930. "bootstrap.php"
  931. ],
  932. "psr-4": {
  933. "Symfony\\Polyfill\\Mbstring\\": ""
  934. }
  935. },
  936. "notification-url": "https://packagist.org/downloads/",
  937. "license": [
  938. "MIT"
  939. ],
  940. "authors": [
  941. {
  942. "name": "Nicolas Grekas",
  943. "email": "p@tchwork.com"
  944. },
  945. {
  946. "name": "Symfony Community",
  947. "homepage": "https://symfony.com/contributors"
  948. }
  949. ],
  950. "description": "Symfony polyfill for the Mbstring extension",
  951. "homepage": "https://symfony.com",
  952. "keywords": [
  953. "compatibility",
  954. "mbstring",
  955. "polyfill",
  956. "portable",
  957. "shim"
  958. ],
  959. "support": {
  960. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  961. },
  962. "funding": [
  963. {
  964. "url": "https://symfony.com/sponsor",
  965. "type": "custom"
  966. },
  967. {
  968. "url": "https://github.com/fabpot",
  969. "type": "github"
  970. },
  971. {
  972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  973. "type": "tidelift"
  974. }
  975. ],
  976. "time": "2022-11-03T14:55:06+00:00"
  977. },
  978. {
  979. "name": "symfony/polyfill-php80",
  980. "version": "v1.27.0",
  981. "source": {
  982. "type": "git",
  983. "url": "https://github.com/symfony/polyfill-php80.git",
  984. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  985. },
  986. "dist": {
  987. "type": "zip",
  988. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  989. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  990. "shasum": ""
  991. },
  992. "require": {
  993. "php": ">=7.1"
  994. },
  995. "type": "library",
  996. "extra": {
  997. "branch-alias": {
  998. "dev-main": "1.27-dev"
  999. },
  1000. "thanks": {
  1001. "name": "symfony/polyfill",
  1002. "url": "https://github.com/symfony/polyfill"
  1003. }
  1004. },
  1005. "autoload": {
  1006. "files": [
  1007. "bootstrap.php"
  1008. ],
  1009. "psr-4": {
  1010. "Symfony\\Polyfill\\Php80\\": ""
  1011. },
  1012. "classmap": [
  1013. "Resources/stubs"
  1014. ]
  1015. },
  1016. "notification-url": "https://packagist.org/downloads/",
  1017. "license": [
  1018. "MIT"
  1019. ],
  1020. "authors": [
  1021. {
  1022. "name": "Ion Bazan",
  1023. "email": "ion.bazan@gmail.com"
  1024. },
  1025. {
  1026. "name": "Nicolas Grekas",
  1027. "email": "p@tchwork.com"
  1028. },
  1029. {
  1030. "name": "Symfony Community",
  1031. "homepage": "https://symfony.com/contributors"
  1032. }
  1033. ],
  1034. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1035. "homepage": "https://symfony.com",
  1036. "keywords": [
  1037. "compatibility",
  1038. "polyfill",
  1039. "portable",
  1040. "shim"
  1041. ],
  1042. "support": {
  1043. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  1044. },
  1045. "funding": [
  1046. {
  1047. "url": "https://symfony.com/sponsor",
  1048. "type": "custom"
  1049. },
  1050. {
  1051. "url": "https://github.com/fabpot",
  1052. "type": "github"
  1053. },
  1054. {
  1055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1056. "type": "tidelift"
  1057. }
  1058. ],
  1059. "time": "2022-11-03T14:55:06+00:00"
  1060. },
  1061. {
  1062. "name": "vlucas/phpdotenv",
  1063. "version": "v5.5.0",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/vlucas/phpdotenv.git",
  1067. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  1072. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  1073. "shasum": ""
  1074. },
  1075. "require": {
  1076. "ext-pcre": "*",
  1077. "graham-campbell/result-type": "^1.0.2",
  1078. "php": "^7.1.3 || ^8.0",
  1079. "phpoption/phpoption": "^1.8",
  1080. "symfony/polyfill-ctype": "^1.23",
  1081. "symfony/polyfill-mbstring": "^1.23.1",
  1082. "symfony/polyfill-php80": "^1.23.1"
  1083. },
  1084. "require-dev": {
  1085. "bamarni/composer-bin-plugin": "^1.4.1",
  1086. "ext-filter": "*",
  1087. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  1088. },
  1089. "suggest": {
  1090. "ext-filter": "Required to use the boolean validator."
  1091. },
  1092. "type": "library",
  1093. "extra": {
  1094. "bamarni-bin": {
  1095. "bin-links": true,
  1096. "forward-command": true
  1097. },
  1098. "branch-alias": {
  1099. "dev-master": "5.5-dev"
  1100. }
  1101. },
  1102. "autoload": {
  1103. "psr-4": {
  1104. "Dotenv\\": "src/"
  1105. }
  1106. },
  1107. "notification-url": "https://packagist.org/downloads/",
  1108. "license": [
  1109. "BSD-3-Clause"
  1110. ],
  1111. "authors": [
  1112. {
  1113. "name": "Graham Campbell",
  1114. "email": "hello@gjcampbell.co.uk",
  1115. "homepage": "https://github.com/GrahamCampbell"
  1116. },
  1117. {
  1118. "name": "Vance Lucas",
  1119. "email": "vance@vancelucas.com",
  1120. "homepage": "https://github.com/vlucas"
  1121. }
  1122. ],
  1123. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  1124. "keywords": [
  1125. "dotenv",
  1126. "env",
  1127. "environment"
  1128. ],
  1129. "support": {
  1130. "issues": "https://github.com/vlucas/phpdotenv/issues",
  1131. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  1132. },
  1133. "funding": [
  1134. {
  1135. "url": "https://github.com/GrahamCampbell",
  1136. "type": "github"
  1137. },
  1138. {
  1139. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  1140. "type": "tidelift"
  1141. }
  1142. ],
  1143. "time": "2022-10-16T01:01:54+00:00"
  1144. }
  1145. ],
  1146. "packages-dev": [],
  1147. "aliases": [],
  1148. "minimum-stability": "stable",
  1149. "stability-flags": [],
  1150. "prefer-stable": false,
  1151. "prefer-lowest": false,
  1152. "platform": [],
  1153. "platform-dev": [],
  1154. "plugin-api-version": "2.2.0"
  1155. }