composer.lock 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  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": "139c1e5dec323144cd778ce80fd1847e",
  8. "packages": [
  9. {
  10. "name": "bshaffer/oauth2-server-php",
  11. "version": "v1.11.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/bshaffer/oauth2-server-php.git",
  15. "reference": "5a0c8000d4763b276919e2106f54eddda6bc50fa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/bshaffer/oauth2-server-php/zipball/5a0c8000d4763b276919e2106f54eddda6bc50fa",
  20. "reference": "5a0c8000d4763b276919e2106f54eddda6bc50fa",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.3.9"
  25. },
  26. "require-dev": {
  27. "aws/aws-sdk-php": "~2.8",
  28. "firebase/php-jwt": "~2.2",
  29. "mongodb/mongodb": "^1.1",
  30. "phpunit/phpunit": "^4.0",
  31. "predis/predis": "dev-master",
  32. "thobbs/phpcassa": "dev-master"
  33. },
  34. "suggest": {
  35. "aws/aws-sdk-php": "~2.8 is required to use DynamoDB storage",
  36. "firebase/php-jwt": "~2.2 is required to use JWT features",
  37. "mongodb/mongodb": "^1.1 is required to use MongoDB storage",
  38. "predis/predis": "Required to use Redis storage",
  39. "thobbs/phpcassa": "Required to use Cassandra storage"
  40. },
  41. "type": "library",
  42. "autoload": {
  43. "psr-0": {
  44. "OAuth2": "src/"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Brent Shaffer",
  54. "email": "bshafs@gmail.com",
  55. "homepage": "http://brentertainment.com"
  56. }
  57. ],
  58. "description": "OAuth2 Server for PHP",
  59. "homepage": "http://github.com/bshaffer/oauth2-server-php",
  60. "keywords": [
  61. "auth",
  62. "oauth",
  63. "oauth2"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/bshaffer/oauth2-server-php/issues",
  67. "source": "https://github.com/bshaffer/oauth2-server-php/tree/master"
  68. },
  69. "time": "2018-12-04T00:29:32+00:00"
  70. },
  71. {
  72. "name": "ddeboer/imap",
  73. "version": "1.13.1",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/ddeboer/imap.git",
  77. "reference": "8b772d04b1deadb5df13782fb78c4b648f77496e"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/ddeboer/imap/zipball/8b772d04b1deadb5df13782fb78c4b648f77496e",
  82. "reference": "8b772d04b1deadb5df13782fb78c4b648f77496e",
  83. "shasum": ""
  84. },
  85. "require": {
  86. "ext-iconv": "*",
  87. "ext-imap": "*",
  88. "ext-mbstring": "*",
  89. "php": "^8.0.1"
  90. },
  91. "require-dev": {
  92. "friendsofphp/php-cs-fixer": "^v3.4.0",
  93. "laminas/laminas-mail": "^2.15.1",
  94. "malukenho/mcbumpface": "^1.1.5",
  95. "phpstan/phpstan": "^1.3.3",
  96. "phpstan/phpstan-phpunit": "^1.0.0",
  97. "phpstan/phpstan-strict-rules": "^1.1.0",
  98. "phpunit/phpunit": "^9.5.11"
  99. },
  100. "type": "library",
  101. "autoload": {
  102. "psr-4": {
  103. "Ddeboer\\Imap\\": "src/"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "MIT"
  109. ],
  110. "authors": [
  111. {
  112. "name": "David de Boer",
  113. "email": "david@ddeboer.nl"
  114. },
  115. {
  116. "name": "Filippo Tessarotto",
  117. "email": "zoeslam@gmail.com"
  118. },
  119. {
  120. "name": "Community contributors",
  121. "homepage": "https://github.com/ddeboer/imap/graphs/contributors"
  122. }
  123. ],
  124. "description": "Object-oriented IMAP for PHP",
  125. "keywords": [
  126. "email",
  127. "imap",
  128. "mail"
  129. ],
  130. "support": {
  131. "issues": "https://github.com/ddeboer/imap/issues",
  132. "source": "https://github.com/ddeboer/imap/tree/1.13.1"
  133. },
  134. "funding": [
  135. {
  136. "url": "https://github.com/Slamdunk",
  137. "type": "github"
  138. },
  139. {
  140. "url": "https://github.com/ddeboer",
  141. "type": "github"
  142. }
  143. ],
  144. "time": "2022-01-10T10:53:05+00:00"
  145. },
  146. {
  147. "name": "directorytree/ldaprecord",
  148. "version": "v2.10.1",
  149. "source": {
  150. "type": "git",
  151. "url": "https://github.com/DirectoryTree/LdapRecord.git",
  152. "reference": "bf512d9af7a7b0e2ed7a666ab29cefdd027bee88"
  153. },
  154. "dist": {
  155. "type": "zip",
  156. "url": "https://api.github.com/repos/DirectoryTree/LdapRecord/zipball/bf512d9af7a7b0e2ed7a666ab29cefdd027bee88",
  157. "reference": "bf512d9af7a7b0e2ed7a666ab29cefdd027bee88",
  158. "shasum": ""
  159. },
  160. "require": {
  161. "ext-json": "*",
  162. "ext-ldap": "*",
  163. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  164. "nesbot/carbon": "^1.0|^2.0",
  165. "php": ">=7.3",
  166. "psr/log": "*",
  167. "psr/simple-cache": "^1.0|^2.0",
  168. "tightenco/collect": "^5.6|^6.0|^7.0|^8.0"
  169. },
  170. "require-dev": {
  171. "mockery/mockery": "^1.0",
  172. "phpunit/phpunit": "^9.0",
  173. "spatie/ray": "^1.24"
  174. },
  175. "type": "library",
  176. "autoload": {
  177. "psr-4": {
  178. "LdapRecord\\": "src/"
  179. }
  180. },
  181. "notification-url": "https://packagist.org/downloads/",
  182. "license": [
  183. "MIT"
  184. ],
  185. "authors": [
  186. {
  187. "name": "Steve Bauman",
  188. "email": "steven_bauman@outlook.com",
  189. "role": "Developer"
  190. }
  191. ],
  192. "description": "A fully-featured LDAP ORM.",
  193. "homepage": "https://www.ldaprecord.com",
  194. "keywords": [
  195. "active directory",
  196. "ad",
  197. "adLDAP",
  198. "adldap2",
  199. "directory",
  200. "ldap",
  201. "ldaprecord",
  202. "orm",
  203. "windows"
  204. ],
  205. "support": {
  206. "docs": "https://ldaprecord.com",
  207. "email": "steven_bauman@outlook.com",
  208. "issues": "https://github.com/DirectoryTree/LdapRecord/issues",
  209. "source": "https://github.com/DirectoryTree/LdapRecord"
  210. },
  211. "funding": [
  212. {
  213. "url": "https://github.com/stevebauman",
  214. "type": "github"
  215. }
  216. ],
  217. "time": "2022-02-25T16:00:51+00:00"
  218. },
  219. {
  220. "name": "illuminate/contracts",
  221. "version": "v9.3.0",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/illuminate/contracts.git",
  225. "reference": "bf4b3c254c49d28157645d01e4883b5951b1e1d0"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/illuminate/contracts/zipball/bf4b3c254c49d28157645d01e4883b5951b1e1d0",
  230. "reference": "bf4b3c254c49d28157645d01e4883b5951b1e1d0",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "php": "^8.0.2",
  235. "psr/container": "^1.1.1|^2.0.1",
  236. "psr/simple-cache": "^1.0|^2.0|^3.0"
  237. },
  238. "type": "library",
  239. "extra": {
  240. "branch-alias": {
  241. "dev-master": "9.x-dev"
  242. }
  243. },
  244. "autoload": {
  245. "psr-4": {
  246. "Illuminate\\Contracts\\": ""
  247. }
  248. },
  249. "notification-url": "https://packagist.org/downloads/",
  250. "license": [
  251. "MIT"
  252. ],
  253. "authors": [
  254. {
  255. "name": "Taylor Otwell",
  256. "email": "taylor@laravel.com"
  257. }
  258. ],
  259. "description": "The Illuminate Contracts package.",
  260. "homepage": "https://laravel.com",
  261. "support": {
  262. "issues": "https://github.com/laravel/framework/issues",
  263. "source": "https://github.com/laravel/framework"
  264. },
  265. "time": "2022-02-22T14:45:39+00:00"
  266. },
  267. {
  268. "name": "matthiasmullie/minify",
  269. "version": "1.3.66",
  270. "source": {
  271. "type": "git",
  272. "url": "https://github.com/matthiasmullie/minify.git",
  273. "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6"
  274. },
  275. "dist": {
  276. "type": "zip",
  277. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/45fd3b0f1dfa2c965857c6d4a470bea52adc31a6",
  278. "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6",
  279. "shasum": ""
  280. },
  281. "require": {
  282. "ext-pcre": "*",
  283. "matthiasmullie/path-converter": "~1.1",
  284. "php": ">=5.3.0"
  285. },
  286. "require-dev": {
  287. "friendsofphp/php-cs-fixer": "~2.0",
  288. "matthiasmullie/scrapbook": "dev-master",
  289. "phpunit/phpunit": ">=4.8"
  290. },
  291. "suggest": {
  292. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  293. },
  294. "bin": [
  295. "bin/minifycss",
  296. "bin/minifyjs"
  297. ],
  298. "type": "library",
  299. "autoload": {
  300. "psr-4": {
  301. "MatthiasMullie\\Minify\\": "src/"
  302. }
  303. },
  304. "notification-url": "https://packagist.org/downloads/",
  305. "license": [
  306. "MIT"
  307. ],
  308. "authors": [
  309. {
  310. "name": "Matthias Mullie",
  311. "email": "minify@mullie.eu",
  312. "homepage": "http://www.mullie.eu",
  313. "role": "Developer"
  314. }
  315. ],
  316. "description": "CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.",
  317. "homepage": "http://www.minifier.org",
  318. "keywords": [
  319. "JS",
  320. "css",
  321. "javascript",
  322. "minifier",
  323. "minify"
  324. ],
  325. "support": {
  326. "issues": "https://github.com/matthiasmullie/minify/issues",
  327. "source": "https://github.com/matthiasmullie/minify/tree/1.3.66"
  328. },
  329. "funding": [
  330. {
  331. "url": "https://github.com/[user1",
  332. "type": "github"
  333. },
  334. {
  335. "url": "https://github.com/matthiasmullie] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g.",
  336. "type": "github"
  337. },
  338. {
  339. "url": "https://github.com/user2",
  340. "type": "github"
  341. }
  342. ],
  343. "time": "2021-01-06T15:18:10+00:00"
  344. },
  345. {
  346. "name": "matthiasmullie/path-converter",
  347. "version": "1.1.3",
  348. "source": {
  349. "type": "git",
  350. "url": "https://github.com/matthiasmullie/path-converter.git",
  351. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9"
  352. },
  353. "dist": {
  354. "type": "zip",
  355. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  356. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  357. "shasum": ""
  358. },
  359. "require": {
  360. "ext-pcre": "*",
  361. "php": ">=5.3.0"
  362. },
  363. "require-dev": {
  364. "phpunit/phpunit": "~4.8"
  365. },
  366. "type": "library",
  367. "autoload": {
  368. "psr-4": {
  369. "MatthiasMullie\\PathConverter\\": "src/"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Matthias Mullie",
  379. "email": "pathconverter@mullie.eu",
  380. "homepage": "http://www.mullie.eu",
  381. "role": "Developer"
  382. }
  383. ],
  384. "description": "Relative path converter",
  385. "homepage": "http://github.com/matthiasmullie/path-converter",
  386. "keywords": [
  387. "converter",
  388. "path",
  389. "paths",
  390. "relative"
  391. ],
  392. "support": {
  393. "issues": "https://github.com/matthiasmullie/path-converter/issues",
  394. "source": "https://github.com/matthiasmullie/path-converter/tree/1.1.3"
  395. },
  396. "time": "2019-02-05T23:41:09+00:00"
  397. },
  398. {
  399. "name": "mustangostang/spyc",
  400. "version": "0.6.3",
  401. "source": {
  402. "type": "git",
  403. "url": "git@github.com:mustangostang/spyc.git",
  404. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  405. },
  406. "dist": {
  407. "type": "zip",
  408. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  409. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  410. "shasum": ""
  411. },
  412. "require": {
  413. "php": ">=5.3.1"
  414. },
  415. "require-dev": {
  416. "phpunit/phpunit": "4.3.*@dev"
  417. },
  418. "type": "library",
  419. "extra": {
  420. "branch-alias": {
  421. "dev-master": "0.5.x-dev"
  422. }
  423. },
  424. "autoload": {
  425. "files": [
  426. "Spyc.php"
  427. ]
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "MIT"
  432. ],
  433. "authors": [
  434. {
  435. "name": "mustangostang",
  436. "email": "vlad.andersen@gmail.com"
  437. }
  438. ],
  439. "description": "A simple YAML loader/dumper class for PHP",
  440. "homepage": "https://github.com/mustangostang/spyc/",
  441. "keywords": [
  442. "spyc",
  443. "yaml",
  444. "yml"
  445. ],
  446. "time": "2019-09-10T13:16:29+00:00"
  447. },
  448. {
  449. "name": "nesbot/carbon",
  450. "version": "2.57.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/briannesbitt/Carbon.git",
  454. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78",
  459. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "ext-json": "*",
  464. "php": "^7.1.8 || ^8.0",
  465. "symfony/polyfill-mbstring": "^1.0",
  466. "symfony/polyfill-php80": "^1.16",
  467. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  468. },
  469. "require-dev": {
  470. "doctrine/dbal": "^2.0 || ^3.0",
  471. "doctrine/orm": "^2.7",
  472. "friendsofphp/php-cs-fixer": "^3.0",
  473. "kylekatarnls/multi-tester": "^2.0",
  474. "phpmd/phpmd": "^2.9",
  475. "phpstan/extension-installer": "^1.0",
  476. "phpstan/phpstan": "^0.12.54 || ^1.0",
  477. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  478. "squizlabs/php_codesniffer": "^3.4"
  479. },
  480. "bin": [
  481. "bin/carbon"
  482. ],
  483. "type": "library",
  484. "extra": {
  485. "branch-alias": {
  486. "dev-3.x": "3.x-dev",
  487. "dev-master": "2.x-dev"
  488. },
  489. "laravel": {
  490. "providers": [
  491. "Carbon\\Laravel\\ServiceProvider"
  492. ]
  493. },
  494. "phpstan": {
  495. "includes": [
  496. "extension.neon"
  497. ]
  498. }
  499. },
  500. "autoload": {
  501. "psr-4": {
  502. "Carbon\\": "src/Carbon/"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "MIT"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Brian Nesbitt",
  512. "email": "brian@nesbot.com",
  513. "homepage": "https://markido.com"
  514. },
  515. {
  516. "name": "kylekatarnls",
  517. "homepage": "https://github.com/kylekatarnls"
  518. }
  519. ],
  520. "description": "An API extension for DateTime that supports 281 different languages.",
  521. "homepage": "https://carbon.nesbot.com",
  522. "keywords": [
  523. "date",
  524. "datetime",
  525. "time"
  526. ],
  527. "support": {
  528. "docs": "https://carbon.nesbot.com/docs",
  529. "issues": "https://github.com/briannesbitt/Carbon/issues",
  530. "source": "https://github.com/briannesbitt/Carbon"
  531. },
  532. "funding": [
  533. {
  534. "url": "https://opencollective.com/Carbon",
  535. "type": "open_collective"
  536. },
  537. {
  538. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  539. "type": "tidelift"
  540. }
  541. ],
  542. "time": "2022-02-13T18:13:33+00:00"
  543. },
  544. {
  545. "name": "paragonie/random_compat",
  546. "version": "v9.99.100",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/paragonie/random_compat.git",
  550. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  555. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "php": ">= 7"
  560. },
  561. "require-dev": {
  562. "phpunit/phpunit": "4.*|5.*",
  563. "vimeo/psalm": "^1"
  564. },
  565. "suggest": {
  566. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  567. },
  568. "type": "library",
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "MIT"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Paragon Initiative Enterprises",
  576. "email": "security@paragonie.com",
  577. "homepage": "https://paragonie.com"
  578. }
  579. ],
  580. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  581. "keywords": [
  582. "csprng",
  583. "polyfill",
  584. "pseudorandom",
  585. "random"
  586. ],
  587. "support": {
  588. "email": "info@paragonie.com",
  589. "issues": "https://github.com/paragonie/random_compat/issues",
  590. "source": "https://github.com/paragonie/random_compat"
  591. },
  592. "time": "2020-10-15T08:29:30+00:00"
  593. },
  594. {
  595. "name": "php-mime-mail-parser/php-mime-mail-parser",
  596. "version": "7.0.0",
  597. "source": {
  598. "type": "git",
  599. "url": "https://github.com/php-mime-mail-parser/php-mime-mail-parser.git",
  600. "reference": "9d09a017f3f103fec8456211a4a538b80e0eca0d"
  601. },
  602. "dist": {
  603. "type": "zip",
  604. "url": "https://api.github.com/repos/php-mime-mail-parser/php-mime-mail-parser/zipball/9d09a017f3f103fec8456211a4a538b80e0eca0d",
  605. "reference": "9d09a017f3f103fec8456211a4a538b80e0eca0d",
  606. "shasum": ""
  607. },
  608. "require": {
  609. "ext-mailparse": "*",
  610. "php": "^7.2|^8.0"
  611. },
  612. "replace": {
  613. "exorus/php-mime-mail-parser": "*",
  614. "messaged/php-mime-mail-parser": "*"
  615. },
  616. "require-dev": {
  617. "php-coveralls/php-coveralls": "^2.2",
  618. "phpunit/phpunit": "^8.0",
  619. "squizlabs/php_codesniffer": "^3.5"
  620. },
  621. "type": "library",
  622. "autoload": {
  623. "psr-4": {
  624. "PhpMimeMailParser\\": "src/"
  625. }
  626. },
  627. "notification-url": "https://packagist.org/downloads/",
  628. "license": [
  629. "MIT"
  630. ],
  631. "authors": [
  632. {
  633. "name": "eXorus",
  634. "email": "exorus.spam@gmail.com",
  635. "homepage": "https://github.com/eXorus/",
  636. "role": "Developer"
  637. },
  638. {
  639. "name": "M.Valinskis",
  640. "email": "M.Valins@gmail.com",
  641. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  642. "role": "Developer"
  643. },
  644. {
  645. "name": "eugene.emmett.wood",
  646. "email": "gene_w@cementhorizon.com",
  647. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  648. "role": "Developer"
  649. },
  650. {
  651. "name": "alknetso",
  652. "email": "alkne@gmail.com",
  653. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  654. "role": "Developer"
  655. },
  656. {
  657. "name": "bucabay",
  658. "email": "gabe@fijiwebdesign.com",
  659. "homepage": "http://www.fijiwebdesign.com",
  660. "role": "Developer"
  661. }
  662. ],
  663. "description": "A fully tested email parser for PHP 7.2+ (mailparse extension wrapper).",
  664. "homepage": "https://github.com/php-mime-mail-parser/php-mime-mail-parser",
  665. "keywords": [
  666. "MimeMailParser",
  667. "mail",
  668. "mailparse",
  669. "mime",
  670. "parser",
  671. "php"
  672. ],
  673. "support": {
  674. "issues": "https://github.com/php-mime-mail-parser/php-mime-mail-parser/issues",
  675. "source": "https://github.com/php-mime-mail-parser/php-mime-mail-parser/tree/7.0.0"
  676. },
  677. "funding": [
  678. {
  679. "url": "https://github.com/eXorus",
  680. "type": "github"
  681. }
  682. ],
  683. "time": "2021-02-25T17:21:57+00:00"
  684. },
  685. {
  686. "name": "phpmailer/phpmailer",
  687. "version": "v6.6.0",
  688. "source": {
  689. "type": "git",
  690. "url": "https://github.com/PHPMailer/PHPMailer.git",
  691. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1"
  692. },
  693. "dist": {
  694. "type": "zip",
  695. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  696. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  697. "shasum": ""
  698. },
  699. "require": {
  700. "ext-ctype": "*",
  701. "ext-filter": "*",
  702. "ext-hash": "*",
  703. "php": ">=5.5.0"
  704. },
  705. "require-dev": {
  706. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  707. "doctrine/annotations": "^1.2",
  708. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  709. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  710. "phpcompatibility/php-compatibility": "^9.3.5",
  711. "roave/security-advisories": "dev-latest",
  712. "squizlabs/php_codesniffer": "^3.6.2",
  713. "yoast/phpunit-polyfills": "^1.0.0"
  714. },
  715. "suggest": {
  716. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  717. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  718. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  719. "psr/log": "For optional PSR-3 debug logging",
  720. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  721. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  722. },
  723. "type": "library",
  724. "autoload": {
  725. "psr-4": {
  726. "PHPMailer\\PHPMailer\\": "src/"
  727. }
  728. },
  729. "notification-url": "https://packagist.org/downloads/",
  730. "license": [
  731. "LGPL-2.1-only"
  732. ],
  733. "authors": [
  734. {
  735. "name": "Marcus Bointon",
  736. "email": "phpmailer@synchromedia.co.uk"
  737. },
  738. {
  739. "name": "Jim Jagielski",
  740. "email": "jimjag@gmail.com"
  741. },
  742. {
  743. "name": "Andy Prevost",
  744. "email": "codeworxtech@users.sourceforge.net"
  745. },
  746. {
  747. "name": "Brent R. Matzelle"
  748. }
  749. ],
  750. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  751. "support": {
  752. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  753. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.6.0"
  754. },
  755. "funding": [
  756. {
  757. "url": "https://github.com/Synchro",
  758. "type": "github"
  759. }
  760. ],
  761. "time": "2022-02-28T15:31:21+00:00"
  762. },
  763. {
  764. "name": "psr/container",
  765. "version": "2.0.2",
  766. "source": {
  767. "type": "git",
  768. "url": "https://github.com/php-fig/container.git",
  769. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  770. },
  771. "dist": {
  772. "type": "zip",
  773. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  774. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  775. "shasum": ""
  776. },
  777. "require": {
  778. "php": ">=7.4.0"
  779. },
  780. "type": "library",
  781. "extra": {
  782. "branch-alias": {
  783. "dev-master": "2.0.x-dev"
  784. }
  785. },
  786. "autoload": {
  787. "psr-4": {
  788. "Psr\\Container\\": "src/"
  789. }
  790. },
  791. "notification-url": "https://packagist.org/downloads/",
  792. "license": [
  793. "MIT"
  794. ],
  795. "authors": [
  796. {
  797. "name": "PHP-FIG",
  798. "homepage": "https://www.php-fig.org/"
  799. }
  800. ],
  801. "description": "Common Container Interface (PHP FIG PSR-11)",
  802. "homepage": "https://github.com/php-fig/container",
  803. "keywords": [
  804. "PSR-11",
  805. "container",
  806. "container-interface",
  807. "container-interop",
  808. "psr"
  809. ],
  810. "support": {
  811. "issues": "https://github.com/php-fig/container/issues",
  812. "source": "https://github.com/php-fig/container/tree/2.0.2"
  813. },
  814. "time": "2021-11-05T16:47:00+00:00"
  815. },
  816. {
  817. "name": "psr/log",
  818. "version": "3.0.0",
  819. "source": {
  820. "type": "git",
  821. "url": "https://github.com/php-fig/log.git",
  822. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  823. },
  824. "dist": {
  825. "type": "zip",
  826. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  827. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  828. "shasum": ""
  829. },
  830. "require": {
  831. "php": ">=8.0.0"
  832. },
  833. "type": "library",
  834. "extra": {
  835. "branch-alias": {
  836. "dev-master": "3.x-dev"
  837. }
  838. },
  839. "autoload": {
  840. "psr-4": {
  841. "Psr\\Log\\": "src"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "MIT"
  847. ],
  848. "authors": [
  849. {
  850. "name": "PHP-FIG",
  851. "homepage": "https://www.php-fig.org/"
  852. }
  853. ],
  854. "description": "Common interface for logging libraries",
  855. "homepage": "https://github.com/php-fig/log",
  856. "keywords": [
  857. "log",
  858. "psr",
  859. "psr-3"
  860. ],
  861. "support": {
  862. "source": "https://github.com/php-fig/log/tree/3.0.0"
  863. },
  864. "time": "2021-07-14T16:46:02+00:00"
  865. },
  866. {
  867. "name": "psr/simple-cache",
  868. "version": "2.0.0",
  869. "source": {
  870. "type": "git",
  871. "url": "https://github.com/php-fig/simple-cache.git",
  872. "reference": "8707bf3cea6f710bf6ef05491234e3ab06f6432a"
  873. },
  874. "dist": {
  875. "type": "zip",
  876. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/8707bf3cea6f710bf6ef05491234e3ab06f6432a",
  877. "reference": "8707bf3cea6f710bf6ef05491234e3ab06f6432a",
  878. "shasum": ""
  879. },
  880. "require": {
  881. "php": ">=8.0.0"
  882. },
  883. "type": "library",
  884. "extra": {
  885. "branch-alias": {
  886. "dev-master": "2.0.x-dev"
  887. }
  888. },
  889. "autoload": {
  890. "psr-4": {
  891. "Psr\\SimpleCache\\": "src/"
  892. }
  893. },
  894. "notification-url": "https://packagist.org/downloads/",
  895. "license": [
  896. "MIT"
  897. ],
  898. "authors": [
  899. {
  900. "name": "PHP-FIG",
  901. "homepage": "https://www.php-fig.org/"
  902. }
  903. ],
  904. "description": "Common interfaces for simple caching",
  905. "keywords": [
  906. "cache",
  907. "caching",
  908. "psr",
  909. "psr-16",
  910. "simple-cache"
  911. ],
  912. "support": {
  913. "source": "https://github.com/php-fig/simple-cache/tree/2.0.0"
  914. },
  915. "time": "2021-10-29T13:22:09+00:00"
  916. },
  917. {
  918. "name": "robthree/twofactorauth",
  919. "version": "1.8.1",
  920. "source": {
  921. "type": "git",
  922. "url": "https://github.com/RobThree/TwoFactorAuth.git",
  923. "reference": "5afcb45282f1c75562a48d479ecd1732c9bdb11b"
  924. },
  925. "dist": {
  926. "type": "zip",
  927. "url": "https://api.github.com/repos/RobThree/TwoFactorAuth/zipball/5afcb45282f1c75562a48d479ecd1732c9bdb11b",
  928. "reference": "5afcb45282f1c75562a48d479ecd1732c9bdb11b",
  929. "shasum": ""
  930. },
  931. "require": {
  932. "php": ">=5.6.0"
  933. },
  934. "require-dev": {
  935. "php-parallel-lint/php-parallel-lint": "^1.2",
  936. "phpunit/phpunit": "@stable"
  937. },
  938. "suggest": {
  939. "bacon/bacon-qr-code": "Needed for BaconQrCodeProvider provider",
  940. "endroid/qr-code": "Needed for EndroidQrCodeProvider"
  941. },
  942. "type": "library",
  943. "autoload": {
  944. "psr-4": {
  945. "RobThree\\Auth\\": "lib"
  946. }
  947. },
  948. "notification-url": "https://packagist.org/downloads/",
  949. "license": [
  950. "MIT"
  951. ],
  952. "authors": [
  953. {
  954. "name": "Rob Janssen",
  955. "homepage": "http://robiii.me",
  956. "role": "Developer"
  957. }
  958. ],
  959. "description": "Two Factor Authentication",
  960. "homepage": "https://github.com/RobThree/TwoFactorAuth",
  961. "keywords": [
  962. "Authentication",
  963. "MFA",
  964. "Multi Factor Authentication",
  965. "Two Factor Authentication",
  966. "authenticator",
  967. "authy",
  968. "php",
  969. "tfa"
  970. ],
  971. "support": {
  972. "issues": "https://github.com/RobThree/TwoFactorAuth/issues",
  973. "source": "https://github.com/RobThree/TwoFactorAuth"
  974. },
  975. "funding": [
  976. {
  977. "url": "https://paypal.me/robiii",
  978. "type": "custom"
  979. },
  980. {
  981. "url": "https://github.com/RobThree",
  982. "type": "github"
  983. }
  984. ],
  985. "time": "2021-10-20T12:19:55+00:00"
  986. },
  987. {
  988. "name": "soundasleep/html2text",
  989. "version": "0.5.0",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/soundasleep/html2text.git",
  993. "reference": "cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/soundasleep/html2text/zipball/cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad",
  998. "reference": "cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad",
  999. "shasum": ""
  1000. },
  1001. "require": {
  1002. "ext-dom": "*",
  1003. "ext-libxml": "*",
  1004. "php": ">=5.3.2"
  1005. },
  1006. "require-dev": {
  1007. "phpunit/phpunit": ">=4.0",
  1008. "soundasleep/component-tests": "dev-master"
  1009. },
  1010. "type": "library",
  1011. "autoload": {
  1012. "psr-4": {
  1013. "Html2Text\\": "src"
  1014. }
  1015. },
  1016. "notification-url": "https://packagist.org/downloads/",
  1017. "license": [
  1018. "EPL-1.0"
  1019. ],
  1020. "authors": [
  1021. {
  1022. "name": "Jevon Wright",
  1023. "homepage": "https://jevon.org",
  1024. "role": "Developer"
  1025. }
  1026. ],
  1027. "description": "A PHP script to convert HTML into a plain text format",
  1028. "homepage": "https://github.com/soundasleep/html2text",
  1029. "keywords": [
  1030. "email",
  1031. "html",
  1032. "php",
  1033. "text"
  1034. ],
  1035. "support": {
  1036. "email": "support@jevon.org",
  1037. "issues": "https://github.com/soundasleep/html2text/issues",
  1038. "source": "https://github.com/soundasleep/html2text/tree/master"
  1039. },
  1040. "time": "2017-04-19T22:01:50+00:00"
  1041. },
  1042. {
  1043. "name": "symfony/deprecation-contracts",
  1044. "version": "v3.5.0",
  1045. "source": {
  1046. "type": "git",
  1047. "url": "https://github.com/symfony/deprecation-contracts.git",
  1048. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  1049. },
  1050. "dist": {
  1051. "type": "zip",
  1052. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  1053. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  1054. "shasum": ""
  1055. },
  1056. "require": {
  1057. "php": ">=8.1"
  1058. },
  1059. "type": "library",
  1060. "extra": {
  1061. "branch-alias": {
  1062. "dev-main": "3.5-dev"
  1063. },
  1064. "thanks": {
  1065. "name": "symfony/contracts",
  1066. "url": "https://github.com/symfony/contracts"
  1067. }
  1068. },
  1069. "autoload": {
  1070. "files": [
  1071. "function.php"
  1072. ]
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "Nicolas Grekas",
  1081. "email": "p@tchwork.com"
  1082. },
  1083. {
  1084. "name": "Symfony Community",
  1085. "homepage": "https://symfony.com/contributors"
  1086. }
  1087. ],
  1088. "description": "A generic function and convention to trigger deprecation notices",
  1089. "homepage": "https://symfony.com",
  1090. "support": {
  1091. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://symfony.com/sponsor",
  1096. "type": "custom"
  1097. },
  1098. {
  1099. "url": "https://github.com/fabpot",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2024-04-18T09:32:20+00:00"
  1108. },
  1109. {
  1110. "name": "symfony/polyfill-ctype",
  1111. "version": "v1.24.0",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/symfony/polyfill-ctype.git",
  1115. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  1120. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "php": ">=7.1"
  1125. },
  1126. "provide": {
  1127. "ext-ctype": "*"
  1128. },
  1129. "suggest": {
  1130. "ext-ctype": "For best performance"
  1131. },
  1132. "type": "library",
  1133. "extra": {
  1134. "branch-alias": {
  1135. "dev-main": "1.23-dev"
  1136. },
  1137. "thanks": {
  1138. "name": "symfony/polyfill",
  1139. "url": "https://github.com/symfony/polyfill"
  1140. }
  1141. },
  1142. "autoload": {
  1143. "files": [
  1144. "bootstrap.php"
  1145. ],
  1146. "psr-4": {
  1147. "Symfony\\Polyfill\\Ctype\\": ""
  1148. }
  1149. },
  1150. "notification-url": "https://packagist.org/downloads/",
  1151. "license": [
  1152. "MIT"
  1153. ],
  1154. "authors": [
  1155. {
  1156. "name": "Gert de Pagter",
  1157. "email": "BackEndTea@gmail.com"
  1158. },
  1159. {
  1160. "name": "Symfony Community",
  1161. "homepage": "https://symfony.com/contributors"
  1162. }
  1163. ],
  1164. "description": "Symfony polyfill for ctype functions",
  1165. "homepage": "https://symfony.com",
  1166. "keywords": [
  1167. "compatibility",
  1168. "ctype",
  1169. "polyfill",
  1170. "portable"
  1171. ],
  1172. "support": {
  1173. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  1174. },
  1175. "funding": [
  1176. {
  1177. "url": "https://symfony.com/sponsor",
  1178. "type": "custom"
  1179. },
  1180. {
  1181. "url": "https://github.com/fabpot",
  1182. "type": "github"
  1183. },
  1184. {
  1185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1186. "type": "tidelift"
  1187. }
  1188. ],
  1189. "time": "2021-10-20T20:35:02+00:00"
  1190. },
  1191. {
  1192. "name": "symfony/polyfill-mbstring",
  1193. "version": "v1.24.0",
  1194. "source": {
  1195. "type": "git",
  1196. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1197. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  1198. },
  1199. "dist": {
  1200. "type": "zip",
  1201. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  1202. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  1203. "shasum": ""
  1204. },
  1205. "require": {
  1206. "php": ">=7.1"
  1207. },
  1208. "provide": {
  1209. "ext-mbstring": "*"
  1210. },
  1211. "suggest": {
  1212. "ext-mbstring": "For best performance"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-main": "1.23-dev"
  1218. },
  1219. "thanks": {
  1220. "name": "symfony/polyfill",
  1221. "url": "https://github.com/symfony/polyfill"
  1222. }
  1223. },
  1224. "autoload": {
  1225. "files": [
  1226. "bootstrap.php"
  1227. ],
  1228. "psr-4": {
  1229. "Symfony\\Polyfill\\Mbstring\\": ""
  1230. }
  1231. },
  1232. "notification-url": "https://packagist.org/downloads/",
  1233. "license": [
  1234. "MIT"
  1235. ],
  1236. "authors": [
  1237. {
  1238. "name": "Nicolas Grekas",
  1239. "email": "p@tchwork.com"
  1240. },
  1241. {
  1242. "name": "Symfony Community",
  1243. "homepage": "https://symfony.com/contributors"
  1244. }
  1245. ],
  1246. "description": "Symfony polyfill for the Mbstring extension",
  1247. "homepage": "https://symfony.com",
  1248. "keywords": [
  1249. "compatibility",
  1250. "mbstring",
  1251. "polyfill",
  1252. "portable",
  1253. "shim"
  1254. ],
  1255. "support": {
  1256. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0"
  1257. },
  1258. "funding": [
  1259. {
  1260. "url": "https://symfony.com/sponsor",
  1261. "type": "custom"
  1262. },
  1263. {
  1264. "url": "https://github.com/fabpot",
  1265. "type": "github"
  1266. },
  1267. {
  1268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1269. "type": "tidelift"
  1270. }
  1271. ],
  1272. "time": "2021-11-30T18:21:41+00:00"
  1273. },
  1274. {
  1275. "name": "symfony/polyfill-php80",
  1276. "version": "v1.24.0",
  1277. "source": {
  1278. "type": "git",
  1279. "url": "https://github.com/symfony/polyfill-php80.git",
  1280. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9"
  1281. },
  1282. "dist": {
  1283. "type": "zip",
  1284. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9",
  1285. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9",
  1286. "shasum": ""
  1287. },
  1288. "require": {
  1289. "php": ">=7.1"
  1290. },
  1291. "type": "library",
  1292. "extra": {
  1293. "branch-alias": {
  1294. "dev-main": "1.23-dev"
  1295. },
  1296. "thanks": {
  1297. "name": "symfony/polyfill",
  1298. "url": "https://github.com/symfony/polyfill"
  1299. }
  1300. },
  1301. "autoload": {
  1302. "files": [
  1303. "bootstrap.php"
  1304. ],
  1305. "psr-4": {
  1306. "Symfony\\Polyfill\\Php80\\": ""
  1307. },
  1308. "classmap": [
  1309. "Resources/stubs"
  1310. ]
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "authors": [
  1317. {
  1318. "name": "Ion Bazan",
  1319. "email": "ion.bazan@gmail.com"
  1320. },
  1321. {
  1322. "name": "Nicolas Grekas",
  1323. "email": "p@tchwork.com"
  1324. },
  1325. {
  1326. "name": "Symfony Community",
  1327. "homepage": "https://symfony.com/contributors"
  1328. }
  1329. ],
  1330. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  1331. "homepage": "https://symfony.com",
  1332. "keywords": [
  1333. "compatibility",
  1334. "polyfill",
  1335. "portable",
  1336. "shim"
  1337. ],
  1338. "support": {
  1339. "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0"
  1340. },
  1341. "funding": [
  1342. {
  1343. "url": "https://symfony.com/sponsor",
  1344. "type": "custom"
  1345. },
  1346. {
  1347. "url": "https://github.com/fabpot",
  1348. "type": "github"
  1349. },
  1350. {
  1351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1352. "type": "tidelift"
  1353. }
  1354. ],
  1355. "time": "2021-09-13T13:58:33+00:00"
  1356. },
  1357. {
  1358. "name": "symfony/polyfill-php81",
  1359. "version": "v1.31.0",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/symfony/polyfill-php81.git",
  1363. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  1368. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  1369. "shasum": ""
  1370. },
  1371. "require": {
  1372. "php": ">=7.2"
  1373. },
  1374. "type": "library",
  1375. "extra": {
  1376. "thanks": {
  1377. "name": "symfony/polyfill",
  1378. "url": "https://github.com/symfony/polyfill"
  1379. }
  1380. },
  1381. "autoload": {
  1382. "files": [
  1383. "bootstrap.php"
  1384. ],
  1385. "psr-4": {
  1386. "Symfony\\Polyfill\\Php81\\": ""
  1387. },
  1388. "classmap": [
  1389. "Resources/stubs"
  1390. ]
  1391. },
  1392. "notification-url": "https://packagist.org/downloads/",
  1393. "license": [
  1394. "MIT"
  1395. ],
  1396. "authors": [
  1397. {
  1398. "name": "Nicolas Grekas",
  1399. "email": "p@tchwork.com"
  1400. },
  1401. {
  1402. "name": "Symfony Community",
  1403. "homepage": "https://symfony.com/contributors"
  1404. }
  1405. ],
  1406. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  1407. "homepage": "https://symfony.com",
  1408. "keywords": [
  1409. "compatibility",
  1410. "polyfill",
  1411. "portable",
  1412. "shim"
  1413. ],
  1414. "support": {
  1415. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  1416. },
  1417. "funding": [
  1418. {
  1419. "url": "https://symfony.com/sponsor",
  1420. "type": "custom"
  1421. },
  1422. {
  1423. "url": "https://github.com/fabpot",
  1424. "type": "github"
  1425. },
  1426. {
  1427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1428. "type": "tidelift"
  1429. }
  1430. ],
  1431. "time": "2024-09-09T11:45:10+00:00"
  1432. },
  1433. {
  1434. "name": "symfony/translation",
  1435. "version": "v6.0.5",
  1436. "source": {
  1437. "type": "git",
  1438. "url": "https://github.com/symfony/translation.git",
  1439. "reference": "e69501c71107cc3146b32aaa45f4edd0c3427875"
  1440. },
  1441. "dist": {
  1442. "type": "zip",
  1443. "url": "https://api.github.com/repos/symfony/translation/zipball/e69501c71107cc3146b32aaa45f4edd0c3427875",
  1444. "reference": "e69501c71107cc3146b32aaa45f4edd0c3427875",
  1445. "shasum": ""
  1446. },
  1447. "require": {
  1448. "php": ">=8.0.2",
  1449. "symfony/polyfill-mbstring": "~1.0",
  1450. "symfony/translation-contracts": "^2.3|^3.0"
  1451. },
  1452. "conflict": {
  1453. "symfony/config": "<5.4",
  1454. "symfony/console": "<5.4",
  1455. "symfony/dependency-injection": "<5.4",
  1456. "symfony/http-kernel": "<5.4",
  1457. "symfony/twig-bundle": "<5.4",
  1458. "symfony/yaml": "<5.4"
  1459. },
  1460. "provide": {
  1461. "symfony/translation-implementation": "2.3|3.0"
  1462. },
  1463. "require-dev": {
  1464. "psr/log": "^1|^2|^3",
  1465. "symfony/config": "^5.4|^6.0",
  1466. "symfony/console": "^5.4|^6.0",
  1467. "symfony/dependency-injection": "^5.4|^6.0",
  1468. "symfony/finder": "^5.4|^6.0",
  1469. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  1470. "symfony/http-kernel": "^5.4|^6.0",
  1471. "symfony/intl": "^5.4|^6.0",
  1472. "symfony/polyfill-intl-icu": "^1.21",
  1473. "symfony/service-contracts": "^1.1.2|^2|^3",
  1474. "symfony/yaml": "^5.4|^6.0"
  1475. },
  1476. "suggest": {
  1477. "psr/log-implementation": "To use logging capability in translator",
  1478. "symfony/config": "",
  1479. "symfony/yaml": ""
  1480. },
  1481. "type": "library",
  1482. "autoload": {
  1483. "files": [
  1484. "Resources/functions.php"
  1485. ],
  1486. "psr-4": {
  1487. "Symfony\\Component\\Translation\\": ""
  1488. },
  1489. "exclude-from-classmap": [
  1490. "/Tests/"
  1491. ]
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "MIT"
  1496. ],
  1497. "authors": [
  1498. {
  1499. "name": "Fabien Potencier",
  1500. "email": "fabien@symfony.com"
  1501. },
  1502. {
  1503. "name": "Symfony Community",
  1504. "homepage": "https://symfony.com/contributors"
  1505. }
  1506. ],
  1507. "description": "Provides tools to internationalize your application",
  1508. "homepage": "https://symfony.com",
  1509. "support": {
  1510. "source": "https://github.com/symfony/translation/tree/v6.0.5"
  1511. },
  1512. "funding": [
  1513. {
  1514. "url": "https://symfony.com/sponsor",
  1515. "type": "custom"
  1516. },
  1517. {
  1518. "url": "https://github.com/fabpot",
  1519. "type": "github"
  1520. },
  1521. {
  1522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1523. "type": "tidelift"
  1524. }
  1525. ],
  1526. "time": "2022-02-09T15:52:48+00:00"
  1527. },
  1528. {
  1529. "name": "symfony/translation-contracts",
  1530. "version": "v3.0.0",
  1531. "source": {
  1532. "type": "git",
  1533. "url": "https://github.com/symfony/translation-contracts.git",
  1534. "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77"
  1535. },
  1536. "dist": {
  1537. "type": "zip",
  1538. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
  1539. "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
  1540. "shasum": ""
  1541. },
  1542. "require": {
  1543. "php": ">=8.0.2"
  1544. },
  1545. "suggest": {
  1546. "symfony/translation-implementation": ""
  1547. },
  1548. "type": "library",
  1549. "extra": {
  1550. "branch-alias": {
  1551. "dev-main": "3.0-dev"
  1552. },
  1553. "thanks": {
  1554. "name": "symfony/contracts",
  1555. "url": "https://github.com/symfony/contracts"
  1556. }
  1557. },
  1558. "autoload": {
  1559. "psr-4": {
  1560. "Symfony\\Contracts\\Translation\\": ""
  1561. }
  1562. },
  1563. "notification-url": "https://packagist.org/downloads/",
  1564. "license": [
  1565. "MIT"
  1566. ],
  1567. "authors": [
  1568. {
  1569. "name": "Nicolas Grekas",
  1570. "email": "p@tchwork.com"
  1571. },
  1572. {
  1573. "name": "Symfony Community",
  1574. "homepage": "https://symfony.com/contributors"
  1575. }
  1576. ],
  1577. "description": "Generic abstractions related to translation",
  1578. "homepage": "https://symfony.com",
  1579. "keywords": [
  1580. "abstractions",
  1581. "contracts",
  1582. "decoupling",
  1583. "interfaces",
  1584. "interoperability",
  1585. "standards"
  1586. ],
  1587. "support": {
  1588. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.0"
  1589. },
  1590. "funding": [
  1591. {
  1592. "url": "https://symfony.com/sponsor",
  1593. "type": "custom"
  1594. },
  1595. {
  1596. "url": "https://github.com/fabpot",
  1597. "type": "github"
  1598. },
  1599. {
  1600. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1601. "type": "tidelift"
  1602. }
  1603. ],
  1604. "time": "2021-09-07T12:43:40+00:00"
  1605. },
  1606. {
  1607. "name": "symfony/var-dumper",
  1608. "version": "v6.0.5",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/symfony/var-dumper.git",
  1612. "reference": "60d6a756d5f485df5e6e40b337334848f79f61ce"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/60d6a756d5f485df5e6e40b337334848f79f61ce",
  1617. "reference": "60d6a756d5f485df5e6e40b337334848f79f61ce",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "php": ">=8.0.2",
  1622. "symfony/polyfill-mbstring": "~1.0"
  1623. },
  1624. "conflict": {
  1625. "phpunit/phpunit": "<5.4.3",
  1626. "symfony/console": "<5.4"
  1627. },
  1628. "require-dev": {
  1629. "ext-iconv": "*",
  1630. "symfony/console": "^5.4|^6.0",
  1631. "symfony/process": "^5.4|^6.0",
  1632. "symfony/uid": "^5.4|^6.0",
  1633. "twig/twig": "^2.13|^3.0.4"
  1634. },
  1635. "suggest": {
  1636. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1637. "ext-intl": "To show region name in time zone dump",
  1638. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  1639. },
  1640. "bin": [
  1641. "Resources/bin/var-dump-server"
  1642. ],
  1643. "type": "library",
  1644. "autoload": {
  1645. "files": [
  1646. "Resources/functions/dump.php"
  1647. ],
  1648. "psr-4": {
  1649. "Symfony\\Component\\VarDumper\\": ""
  1650. },
  1651. "exclude-from-classmap": [
  1652. "/Tests/"
  1653. ]
  1654. },
  1655. "notification-url": "https://packagist.org/downloads/",
  1656. "license": [
  1657. "MIT"
  1658. ],
  1659. "authors": [
  1660. {
  1661. "name": "Nicolas Grekas",
  1662. "email": "p@tchwork.com"
  1663. },
  1664. {
  1665. "name": "Symfony Community",
  1666. "homepage": "https://symfony.com/contributors"
  1667. }
  1668. ],
  1669. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  1670. "homepage": "https://symfony.com",
  1671. "keywords": [
  1672. "debug",
  1673. "dump"
  1674. ],
  1675. "support": {
  1676. "source": "https://github.com/symfony/var-dumper/tree/v6.0.5"
  1677. },
  1678. "funding": [
  1679. {
  1680. "url": "https://symfony.com/sponsor",
  1681. "type": "custom"
  1682. },
  1683. {
  1684. "url": "https://github.com/fabpot",
  1685. "type": "github"
  1686. },
  1687. {
  1688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1689. "type": "tidelift"
  1690. }
  1691. ],
  1692. "time": "2022-02-21T17:15:17+00:00"
  1693. },
  1694. {
  1695. "name": "tightenco/collect",
  1696. "version": "v8.83.2",
  1697. "source": {
  1698. "type": "git",
  1699. "url": "https://github.com/tighten/collect.git",
  1700. "reference": "d9c66d586ec2d216d8a31283d73f8df1400cc722"
  1701. },
  1702. "dist": {
  1703. "type": "zip",
  1704. "url": "https://api.github.com/repos/tighten/collect/zipball/d9c66d586ec2d216d8a31283d73f8df1400cc722",
  1705. "reference": "d9c66d586ec2d216d8a31283d73f8df1400cc722",
  1706. "shasum": ""
  1707. },
  1708. "require": {
  1709. "php": "^7.3|^8.0",
  1710. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1711. },
  1712. "require-dev": {
  1713. "mockery/mockery": "^1.0",
  1714. "nesbot/carbon": "^2.23.0",
  1715. "phpunit/phpunit": "^8.3"
  1716. },
  1717. "type": "library",
  1718. "autoload": {
  1719. "files": [
  1720. "src/Collect/Support/helpers.php",
  1721. "src/Collect/Support/alias.php"
  1722. ],
  1723. "psr-4": {
  1724. "Tightenco\\Collect\\": "src/Collect"
  1725. }
  1726. },
  1727. "notification-url": "https://packagist.org/downloads/",
  1728. "license": [
  1729. "MIT"
  1730. ],
  1731. "authors": [
  1732. {
  1733. "name": "Taylor Otwell",
  1734. "email": "taylorotwell@gmail.com"
  1735. }
  1736. ],
  1737. "description": "Collect - Illuminate Collections as a separate package.",
  1738. "keywords": [
  1739. "collection",
  1740. "laravel"
  1741. ],
  1742. "support": {
  1743. "issues": "https://github.com/tighten/collect/issues",
  1744. "source": "https://github.com/tighten/collect/tree/v8.83.2"
  1745. },
  1746. "time": "2022-02-16T16:15:54+00:00"
  1747. },
  1748. {
  1749. "name": "twig/twig",
  1750. "version": "v3.14.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/twigphp/Twig.git",
  1754. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/twigphp/Twig/zipball/126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  1759. "reference": "126b2c97818dbff0cdf3fbfc881aedb3d40aae72",
  1760. "shasum": ""
  1761. },
  1762. "require": {
  1763. "php": ">=8.0.2",
  1764. "symfony/deprecation-contracts": "^2.5|^3",
  1765. "symfony/polyfill-ctype": "^1.8",
  1766. "symfony/polyfill-mbstring": "^1.3",
  1767. "symfony/polyfill-php81": "^1.29"
  1768. },
  1769. "require-dev": {
  1770. "psr/container": "^1.0|^2.0",
  1771. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  1772. },
  1773. "type": "library",
  1774. "autoload": {
  1775. "files": [
  1776. "src/Resources/core.php",
  1777. "src/Resources/debug.php",
  1778. "src/Resources/escaper.php",
  1779. "src/Resources/string_loader.php"
  1780. ],
  1781. "psr-4": {
  1782. "Twig\\": "src/"
  1783. }
  1784. },
  1785. "notification-url": "https://packagist.org/downloads/",
  1786. "license": [
  1787. "BSD-3-Clause"
  1788. ],
  1789. "authors": [
  1790. {
  1791. "name": "Fabien Potencier",
  1792. "email": "fabien@symfony.com",
  1793. "homepage": "http://fabien.potencier.org",
  1794. "role": "Lead Developer"
  1795. },
  1796. {
  1797. "name": "Twig Team",
  1798. "role": "Contributors"
  1799. },
  1800. {
  1801. "name": "Armin Ronacher",
  1802. "email": "armin.ronacher@active-4.com",
  1803. "role": "Project Founder"
  1804. }
  1805. ],
  1806. "description": "Twig, the flexible, fast, and secure template language for PHP",
  1807. "homepage": "https://twig.symfony.com",
  1808. "keywords": [
  1809. "templating"
  1810. ],
  1811. "support": {
  1812. "issues": "https://github.com/twigphp/Twig/issues",
  1813. "source": "https://github.com/twigphp/Twig/tree/v3.14.0"
  1814. },
  1815. "funding": [
  1816. {
  1817. "url": "https://github.com/fabpot",
  1818. "type": "github"
  1819. },
  1820. {
  1821. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  1822. "type": "tidelift"
  1823. }
  1824. ],
  1825. "time": "2024-09-09T17:55:12+00:00"
  1826. },
  1827. {
  1828. "name": "yubico/u2flib-server",
  1829. "version": "1.0.2",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/Yubico/php-u2flib-server.git",
  1833. "reference": "55d813acf68212ad2cadecde07551600d6971939"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/Yubico/php-u2flib-server/zipball/55d813acf68212ad2cadecde07551600d6971939",
  1838. "reference": "55d813acf68212ad2cadecde07551600d6971939",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "ext-openssl": "*",
  1843. "paragonie/random_compat": ">= 1",
  1844. "php": ">=5.6"
  1845. },
  1846. "require-dev": {
  1847. "phpunit/phpunit": "~5.7",
  1848. "vimeo/psalm": "^0|^1|^2"
  1849. },
  1850. "type": "library",
  1851. "autoload": {
  1852. "classmap": [
  1853. "src/"
  1854. ]
  1855. },
  1856. "notification-url": "https://packagist.org/downloads/",
  1857. "license": [
  1858. "BSD-2-Clause"
  1859. ],
  1860. "description": "Library for U2F implementation",
  1861. "homepage": "https://developers.yubico.com/php-u2flib-server",
  1862. "support": {
  1863. "issues": "https://github.com/Yubico/php-u2flib-server/issues",
  1864. "source": "https://github.com/Yubico/php-u2flib-server/tree/1.0.2"
  1865. },
  1866. "time": "2018-09-07T08:16:44+00:00"
  1867. }
  1868. ],
  1869. "packages-dev": [],
  1870. "aliases": [],
  1871. "minimum-stability": "stable",
  1872. "stability-flags": [],
  1873. "prefer-stable": false,
  1874. "prefer-lowest": false,
  1875. "platform": [],
  1876. "platform-dev": [],
  1877. "plugin-api-version": "2.6.0"
  1878. }