composer.lock 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487
  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": "8f5a147cdb147b935a158b86f47a4747",
  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": "firebase/php-jwt",
  221. "version": "v6.5.0",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/firebase/php-jwt.git",
  225. "reference": "e94e7353302b0c11ec3cfff7180cd0b1743975d2"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/e94e7353302b0c11ec3cfff7180cd0b1743975d2",
  230. "reference": "e94e7353302b0c11ec3cfff7180cd0b1743975d2",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "php": "^7.4||^8.0"
  235. },
  236. "require-dev": {
  237. "guzzlehttp/guzzle": "^6.5||^7.4",
  238. "phpspec/prophecy-phpunit": "^2.0",
  239. "phpunit/phpunit": "^9.5",
  240. "psr/cache": "^1.0||^2.0",
  241. "psr/http-client": "^1.0",
  242. "psr/http-factory": "^1.0"
  243. },
  244. "suggest": {
  245. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  246. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  247. },
  248. "type": "library",
  249. "autoload": {
  250. "psr-4": {
  251. "Firebase\\JWT\\": "src"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "BSD-3-Clause"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Neuman Vong",
  261. "email": "neuman+pear@twilio.com",
  262. "role": "Developer"
  263. },
  264. {
  265. "name": "Anant Narayanan",
  266. "email": "anant@php.net",
  267. "role": "Developer"
  268. }
  269. ],
  270. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  271. "homepage": "https://github.com/firebase/php-jwt",
  272. "keywords": [
  273. "jwt",
  274. "php"
  275. ],
  276. "support": {
  277. "issues": "https://github.com/firebase/php-jwt/issues",
  278. "source": "https://github.com/firebase/php-jwt/tree/v6.5.0"
  279. },
  280. "time": "2023-05-12T15:47:07+00:00"
  281. },
  282. {
  283. "name": "guzzlehttp/guzzle",
  284. "version": "7.5.0",
  285. "source": {
  286. "type": "git",
  287. "url": "https://github.com/guzzle/guzzle.git",
  288. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba"
  289. },
  290. "dist": {
  291. "type": "zip",
  292. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  293. "reference": "b50a2a1251152e43f6a37f0fa053e730a67d25ba",
  294. "shasum": ""
  295. },
  296. "require": {
  297. "ext-json": "*",
  298. "guzzlehttp/promises": "^1.5",
  299. "guzzlehttp/psr7": "^1.9 || ^2.4",
  300. "php": "^7.2.5 || ^8.0",
  301. "psr/http-client": "^1.0",
  302. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  303. },
  304. "provide": {
  305. "psr/http-client-implementation": "1.0"
  306. },
  307. "require-dev": {
  308. "bamarni/composer-bin-plugin": "^1.8.1",
  309. "ext-curl": "*",
  310. "php-http/client-integration-tests": "^3.0",
  311. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  312. "psr/log": "^1.1 || ^2.0 || ^3.0"
  313. },
  314. "suggest": {
  315. "ext-curl": "Required for CURL handler support",
  316. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  317. "psr/log": "Required for using the Log middleware"
  318. },
  319. "type": "library",
  320. "extra": {
  321. "bamarni-bin": {
  322. "bin-links": true,
  323. "forward-command": false
  324. },
  325. "branch-alias": {
  326. "dev-master": "7.5-dev"
  327. }
  328. },
  329. "autoload": {
  330. "files": [
  331. "src/functions_include.php"
  332. ],
  333. "psr-4": {
  334. "GuzzleHttp\\": "src/"
  335. }
  336. },
  337. "notification-url": "https://packagist.org/downloads/",
  338. "license": [
  339. "MIT"
  340. ],
  341. "authors": [
  342. {
  343. "name": "Graham Campbell",
  344. "email": "hello@gjcampbell.co.uk",
  345. "homepage": "https://github.com/GrahamCampbell"
  346. },
  347. {
  348. "name": "Michael Dowling",
  349. "email": "mtdowling@gmail.com",
  350. "homepage": "https://github.com/mtdowling"
  351. },
  352. {
  353. "name": "Jeremy Lindblom",
  354. "email": "jeremeamia@gmail.com",
  355. "homepage": "https://github.com/jeremeamia"
  356. },
  357. {
  358. "name": "George Mponos",
  359. "email": "gmponos@gmail.com",
  360. "homepage": "https://github.com/gmponos"
  361. },
  362. {
  363. "name": "Tobias Nyholm",
  364. "email": "tobias.nyholm@gmail.com",
  365. "homepage": "https://github.com/Nyholm"
  366. },
  367. {
  368. "name": "Márk Sági-Kazár",
  369. "email": "mark.sagikazar@gmail.com",
  370. "homepage": "https://github.com/sagikazarmark"
  371. },
  372. {
  373. "name": "Tobias Schultze",
  374. "email": "webmaster@tubo-world.de",
  375. "homepage": "https://github.com/Tobion"
  376. }
  377. ],
  378. "description": "Guzzle is a PHP HTTP client library",
  379. "keywords": [
  380. "client",
  381. "curl",
  382. "framework",
  383. "http",
  384. "http client",
  385. "psr-18",
  386. "psr-7",
  387. "rest",
  388. "web service"
  389. ],
  390. "support": {
  391. "issues": "https://github.com/guzzle/guzzle/issues",
  392. "source": "https://github.com/guzzle/guzzle/tree/7.5.0"
  393. },
  394. "funding": [
  395. {
  396. "url": "https://github.com/GrahamCampbell",
  397. "type": "github"
  398. },
  399. {
  400. "url": "https://github.com/Nyholm",
  401. "type": "github"
  402. },
  403. {
  404. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  405. "type": "tidelift"
  406. }
  407. ],
  408. "time": "2022-08-28T15:39:27+00:00"
  409. },
  410. {
  411. "name": "guzzlehttp/promises",
  412. "version": "1.5.2",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/guzzle/promises.git",
  416. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  421. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  422. "shasum": ""
  423. },
  424. "require": {
  425. "php": ">=5.5"
  426. },
  427. "require-dev": {
  428. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  429. },
  430. "type": "library",
  431. "extra": {
  432. "branch-alias": {
  433. "dev-master": "1.5-dev"
  434. }
  435. },
  436. "autoload": {
  437. "files": [
  438. "src/functions_include.php"
  439. ],
  440. "psr-4": {
  441. "GuzzleHttp\\Promise\\": "src/"
  442. }
  443. },
  444. "notification-url": "https://packagist.org/downloads/",
  445. "license": [
  446. "MIT"
  447. ],
  448. "authors": [
  449. {
  450. "name": "Graham Campbell",
  451. "email": "hello@gjcampbell.co.uk",
  452. "homepage": "https://github.com/GrahamCampbell"
  453. },
  454. {
  455. "name": "Michael Dowling",
  456. "email": "mtdowling@gmail.com",
  457. "homepage": "https://github.com/mtdowling"
  458. },
  459. {
  460. "name": "Tobias Nyholm",
  461. "email": "tobias.nyholm@gmail.com",
  462. "homepage": "https://github.com/Nyholm"
  463. },
  464. {
  465. "name": "Tobias Schultze",
  466. "email": "webmaster@tubo-world.de",
  467. "homepage": "https://github.com/Tobion"
  468. }
  469. ],
  470. "description": "Guzzle promises library",
  471. "keywords": [
  472. "promise"
  473. ],
  474. "support": {
  475. "issues": "https://github.com/guzzle/promises/issues",
  476. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  477. },
  478. "funding": [
  479. {
  480. "url": "https://github.com/GrahamCampbell",
  481. "type": "github"
  482. },
  483. {
  484. "url": "https://github.com/Nyholm",
  485. "type": "github"
  486. },
  487. {
  488. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  489. "type": "tidelift"
  490. }
  491. ],
  492. "time": "2022-08-28T14:55:35+00:00"
  493. },
  494. {
  495. "name": "guzzlehttp/psr7",
  496. "version": "2.4.4",
  497. "source": {
  498. "type": "git",
  499. "url": "https://github.com/guzzle/psr7.git",
  500. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf"
  501. },
  502. "dist": {
  503. "type": "zip",
  504. "url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  505. "reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
  506. "shasum": ""
  507. },
  508. "require": {
  509. "php": "^7.2.5 || ^8.0",
  510. "psr/http-factory": "^1.0",
  511. "psr/http-message": "^1.0",
  512. "ralouphie/getallheaders": "^3.0"
  513. },
  514. "provide": {
  515. "psr/http-factory-implementation": "1.0",
  516. "psr/http-message-implementation": "1.0"
  517. },
  518. "require-dev": {
  519. "bamarni/composer-bin-plugin": "^1.8.1",
  520. "http-interop/http-factory-tests": "^0.9",
  521. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  522. },
  523. "suggest": {
  524. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  525. },
  526. "type": "library",
  527. "extra": {
  528. "bamarni-bin": {
  529. "bin-links": true,
  530. "forward-command": false
  531. },
  532. "branch-alias": {
  533. "dev-master": "2.4-dev"
  534. }
  535. },
  536. "autoload": {
  537. "psr-4": {
  538. "GuzzleHttp\\Psr7\\": "src/"
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Graham Campbell",
  548. "email": "hello@gjcampbell.co.uk",
  549. "homepage": "https://github.com/GrahamCampbell"
  550. },
  551. {
  552. "name": "Michael Dowling",
  553. "email": "mtdowling@gmail.com",
  554. "homepage": "https://github.com/mtdowling"
  555. },
  556. {
  557. "name": "George Mponos",
  558. "email": "gmponos@gmail.com",
  559. "homepage": "https://github.com/gmponos"
  560. },
  561. {
  562. "name": "Tobias Nyholm",
  563. "email": "tobias.nyholm@gmail.com",
  564. "homepage": "https://github.com/Nyholm"
  565. },
  566. {
  567. "name": "Márk Sági-Kazár",
  568. "email": "mark.sagikazar@gmail.com",
  569. "homepage": "https://github.com/sagikazarmark"
  570. },
  571. {
  572. "name": "Tobias Schultze",
  573. "email": "webmaster@tubo-world.de",
  574. "homepage": "https://github.com/Tobion"
  575. },
  576. {
  577. "name": "Márk Sági-Kazár",
  578. "email": "mark.sagikazar@gmail.com",
  579. "homepage": "https://sagikazarmark.hu"
  580. }
  581. ],
  582. "description": "PSR-7 message implementation that also provides common utility methods",
  583. "keywords": [
  584. "http",
  585. "message",
  586. "psr-7",
  587. "request",
  588. "response",
  589. "stream",
  590. "uri",
  591. "url"
  592. ],
  593. "support": {
  594. "issues": "https://github.com/guzzle/psr7/issues",
  595. "source": "https://github.com/guzzle/psr7/tree/2.4.4"
  596. },
  597. "funding": [
  598. {
  599. "url": "https://github.com/GrahamCampbell",
  600. "type": "github"
  601. },
  602. {
  603. "url": "https://github.com/Nyholm",
  604. "type": "github"
  605. },
  606. {
  607. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  608. "type": "tidelift"
  609. }
  610. ],
  611. "time": "2023-03-09T13:19:02+00:00"
  612. },
  613. {
  614. "name": "illuminate/contracts",
  615. "version": "v9.3.0",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/illuminate/contracts.git",
  619. "reference": "bf4b3c254c49d28157645d01e4883b5951b1e1d0"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/illuminate/contracts/zipball/bf4b3c254c49d28157645d01e4883b5951b1e1d0",
  624. "reference": "bf4b3c254c49d28157645d01e4883b5951b1e1d0",
  625. "shasum": ""
  626. },
  627. "require": {
  628. "php": "^8.0.2",
  629. "psr/container": "^1.1.1|^2.0.1",
  630. "psr/simple-cache": "^1.0|^2.0|^3.0"
  631. },
  632. "type": "library",
  633. "extra": {
  634. "branch-alias": {
  635. "dev-master": "9.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Illuminate\\Contracts\\": ""
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Taylor Otwell",
  650. "email": "taylor@laravel.com"
  651. }
  652. ],
  653. "description": "The Illuminate Contracts package.",
  654. "homepage": "https://laravel.com",
  655. "support": {
  656. "issues": "https://github.com/laravel/framework/issues",
  657. "source": "https://github.com/laravel/framework"
  658. },
  659. "time": "2022-02-22T14:45:39+00:00"
  660. },
  661. {
  662. "name": "league/oauth2-client",
  663. "version": "2.7.0",
  664. "source": {
  665. "type": "git",
  666. "url": "https://github.com/thephpleague/oauth2-client.git",
  667. "reference": "160d6274b03562ebeb55ed18399281d8118b76c8"
  668. },
  669. "dist": {
  670. "type": "zip",
  671. "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/160d6274b03562ebeb55ed18399281d8118b76c8",
  672. "reference": "160d6274b03562ebeb55ed18399281d8118b76c8",
  673. "shasum": ""
  674. },
  675. "require": {
  676. "guzzlehttp/guzzle": "^6.0 || ^7.0",
  677. "paragonie/random_compat": "^1 || ^2 || ^9.99",
  678. "php": "^5.6 || ^7.0 || ^8.0"
  679. },
  680. "require-dev": {
  681. "mockery/mockery": "^1.3.5",
  682. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  683. "phpunit/phpunit": "^5.7 || ^6.0 || ^9.5",
  684. "squizlabs/php_codesniffer": "^2.3 || ^3.0"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-2.x": "2.0.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "League\\OAuth2\\Client\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "Alex Bilbie",
  704. "email": "hello@alexbilbie.com",
  705. "homepage": "http://www.alexbilbie.com",
  706. "role": "Developer"
  707. },
  708. {
  709. "name": "Woody Gilk",
  710. "homepage": "https://github.com/shadowhand",
  711. "role": "Contributor"
  712. }
  713. ],
  714. "description": "OAuth 2.0 Client Library",
  715. "keywords": [
  716. "Authentication",
  717. "SSO",
  718. "authorization",
  719. "identity",
  720. "idp",
  721. "oauth",
  722. "oauth2",
  723. "single sign on"
  724. ],
  725. "support": {
  726. "issues": "https://github.com/thephpleague/oauth2-client/issues",
  727. "source": "https://github.com/thephpleague/oauth2-client/tree/2.7.0"
  728. },
  729. "time": "2023-04-16T18:19:15+00:00"
  730. },
  731. {
  732. "name": "matthiasmullie/minify",
  733. "version": "1.3.66",
  734. "source": {
  735. "type": "git",
  736. "url": "https://github.com/matthiasmullie/minify.git",
  737. "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6"
  738. },
  739. "dist": {
  740. "type": "zip",
  741. "url": "https://api.github.com/repos/matthiasmullie/minify/zipball/45fd3b0f1dfa2c965857c6d4a470bea52adc31a6",
  742. "reference": "45fd3b0f1dfa2c965857c6d4a470bea52adc31a6",
  743. "shasum": ""
  744. },
  745. "require": {
  746. "ext-pcre": "*",
  747. "matthiasmullie/path-converter": "~1.1",
  748. "php": ">=5.3.0"
  749. },
  750. "require-dev": {
  751. "friendsofphp/php-cs-fixer": "~2.0",
  752. "matthiasmullie/scrapbook": "dev-master",
  753. "phpunit/phpunit": ">=4.8"
  754. },
  755. "suggest": {
  756. "psr/cache-implementation": "Cache implementation to use with Minify::cache"
  757. },
  758. "bin": [
  759. "bin/minifycss",
  760. "bin/minifyjs"
  761. ],
  762. "type": "library",
  763. "autoload": {
  764. "psr-4": {
  765. "MatthiasMullie\\Minify\\": "src/"
  766. }
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "MIT"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Matthias Mullie",
  775. "email": "minify@mullie.eu",
  776. "homepage": "http://www.mullie.eu",
  777. "role": "Developer"
  778. }
  779. ],
  780. "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.",
  781. "homepage": "http://www.minifier.org",
  782. "keywords": [
  783. "JS",
  784. "css",
  785. "javascript",
  786. "minifier",
  787. "minify"
  788. ],
  789. "support": {
  790. "issues": "https://github.com/matthiasmullie/minify/issues",
  791. "source": "https://github.com/matthiasmullie/minify/tree/1.3.66"
  792. },
  793. "funding": [
  794. {
  795. "url": "https://github.com/[user1",
  796. "type": "github"
  797. },
  798. {
  799. "url": "https://github.com/matthiasmullie] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g.",
  800. "type": "github"
  801. },
  802. {
  803. "url": "https://github.com/user2",
  804. "type": "github"
  805. }
  806. ],
  807. "time": "2021-01-06T15:18:10+00:00"
  808. },
  809. {
  810. "name": "matthiasmullie/path-converter",
  811. "version": "1.1.3",
  812. "source": {
  813. "type": "git",
  814. "url": "https://github.com/matthiasmullie/path-converter.git",
  815. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9"
  816. },
  817. "dist": {
  818. "type": "zip",
  819. "url": "https://api.github.com/repos/matthiasmullie/path-converter/zipball/e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  820. "reference": "e7d13b2c7e2f2268e1424aaed02085518afa02d9",
  821. "shasum": ""
  822. },
  823. "require": {
  824. "ext-pcre": "*",
  825. "php": ">=5.3.0"
  826. },
  827. "require-dev": {
  828. "phpunit/phpunit": "~4.8"
  829. },
  830. "type": "library",
  831. "autoload": {
  832. "psr-4": {
  833. "MatthiasMullie\\PathConverter\\": "src/"
  834. }
  835. },
  836. "notification-url": "https://packagist.org/downloads/",
  837. "license": [
  838. "MIT"
  839. ],
  840. "authors": [
  841. {
  842. "name": "Matthias Mullie",
  843. "email": "pathconverter@mullie.eu",
  844. "homepage": "http://www.mullie.eu",
  845. "role": "Developer"
  846. }
  847. ],
  848. "description": "Relative path converter",
  849. "homepage": "http://github.com/matthiasmullie/path-converter",
  850. "keywords": [
  851. "converter",
  852. "path",
  853. "paths",
  854. "relative"
  855. ],
  856. "support": {
  857. "issues": "https://github.com/matthiasmullie/path-converter/issues",
  858. "source": "https://github.com/matthiasmullie/path-converter/tree/1.1.3"
  859. },
  860. "time": "2019-02-05T23:41:09+00:00"
  861. },
  862. {
  863. "name": "mustangostang/spyc",
  864. "version": "0.6.3",
  865. "source": {
  866. "type": "git",
  867. "url": "git@github.com:mustangostang/spyc.git",
  868. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  873. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "php": ">=5.3.1"
  878. },
  879. "require-dev": {
  880. "phpunit/phpunit": "4.3.*@dev"
  881. },
  882. "type": "library",
  883. "extra": {
  884. "branch-alias": {
  885. "dev-master": "0.5.x-dev"
  886. }
  887. },
  888. "autoload": {
  889. "files": [
  890. "Spyc.php"
  891. ]
  892. },
  893. "notification-url": "https://packagist.org/downloads/",
  894. "license": [
  895. "MIT"
  896. ],
  897. "authors": [
  898. {
  899. "name": "mustangostang",
  900. "email": "vlad.andersen@gmail.com"
  901. }
  902. ],
  903. "description": "A simple YAML loader/dumper class for PHP",
  904. "homepage": "https://github.com/mustangostang/spyc/",
  905. "keywords": [
  906. "spyc",
  907. "yaml",
  908. "yml"
  909. ],
  910. "time": "2019-09-10T13:16:29+00:00"
  911. },
  912. {
  913. "name": "nesbot/carbon",
  914. "version": "2.57.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/briannesbitt/Carbon.git",
  918. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a54375c21eea4811dbd1149fe6b246517554e78",
  923. "reference": "4a54375c21eea4811dbd1149fe6b246517554e78",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "ext-json": "*",
  928. "php": "^7.1.8 || ^8.0",
  929. "symfony/polyfill-mbstring": "^1.0",
  930. "symfony/polyfill-php80": "^1.16",
  931. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  932. },
  933. "require-dev": {
  934. "doctrine/dbal": "^2.0 || ^3.0",
  935. "doctrine/orm": "^2.7",
  936. "friendsofphp/php-cs-fixer": "^3.0",
  937. "kylekatarnls/multi-tester": "^2.0",
  938. "phpmd/phpmd": "^2.9",
  939. "phpstan/extension-installer": "^1.0",
  940. "phpstan/phpstan": "^0.12.54 || ^1.0",
  941. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  942. "squizlabs/php_codesniffer": "^3.4"
  943. },
  944. "bin": [
  945. "bin/carbon"
  946. ],
  947. "type": "library",
  948. "extra": {
  949. "branch-alias": {
  950. "dev-3.x": "3.x-dev",
  951. "dev-master": "2.x-dev"
  952. },
  953. "laravel": {
  954. "providers": [
  955. "Carbon\\Laravel\\ServiceProvider"
  956. ]
  957. },
  958. "phpstan": {
  959. "includes": [
  960. "extension.neon"
  961. ]
  962. }
  963. },
  964. "autoload": {
  965. "psr-4": {
  966. "Carbon\\": "src/Carbon/"
  967. }
  968. },
  969. "notification-url": "https://packagist.org/downloads/",
  970. "license": [
  971. "MIT"
  972. ],
  973. "authors": [
  974. {
  975. "name": "Brian Nesbitt",
  976. "email": "brian@nesbot.com",
  977. "homepage": "https://markido.com"
  978. },
  979. {
  980. "name": "kylekatarnls",
  981. "homepage": "https://github.com/kylekatarnls"
  982. }
  983. ],
  984. "description": "An API extension for DateTime that supports 281 different languages.",
  985. "homepage": "https://carbon.nesbot.com",
  986. "keywords": [
  987. "date",
  988. "datetime",
  989. "time"
  990. ],
  991. "support": {
  992. "docs": "https://carbon.nesbot.com/docs",
  993. "issues": "https://github.com/briannesbitt/Carbon/issues",
  994. "source": "https://github.com/briannesbitt/Carbon"
  995. },
  996. "funding": [
  997. {
  998. "url": "https://opencollective.com/Carbon",
  999. "type": "open_collective"
  1000. },
  1001. {
  1002. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1003. "type": "tidelift"
  1004. }
  1005. ],
  1006. "time": "2022-02-13T18:13:33+00:00"
  1007. },
  1008. {
  1009. "name": "paragonie/random_compat",
  1010. "version": "v9.99.100",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/paragonie/random_compat.git",
  1014. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1019. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1020. "shasum": ""
  1021. },
  1022. "require": {
  1023. "php": ">= 7"
  1024. },
  1025. "require-dev": {
  1026. "phpunit/phpunit": "4.*|5.*",
  1027. "vimeo/psalm": "^1"
  1028. },
  1029. "suggest": {
  1030. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1031. },
  1032. "type": "library",
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Paragon Initiative Enterprises",
  1040. "email": "security@paragonie.com",
  1041. "homepage": "https://paragonie.com"
  1042. }
  1043. ],
  1044. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1045. "keywords": [
  1046. "csprng",
  1047. "polyfill",
  1048. "pseudorandom",
  1049. "random"
  1050. ],
  1051. "support": {
  1052. "email": "info@paragonie.com",
  1053. "issues": "https://github.com/paragonie/random_compat/issues",
  1054. "source": "https://github.com/paragonie/random_compat"
  1055. },
  1056. "time": "2020-10-15T08:29:30+00:00"
  1057. },
  1058. {
  1059. "name": "php-mime-mail-parser/php-mime-mail-parser",
  1060. "version": "7.0.0",
  1061. "source": {
  1062. "type": "git",
  1063. "url": "https://github.com/php-mime-mail-parser/php-mime-mail-parser.git",
  1064. "reference": "9d09a017f3f103fec8456211a4a538b80e0eca0d"
  1065. },
  1066. "dist": {
  1067. "type": "zip",
  1068. "url": "https://api.github.com/repos/php-mime-mail-parser/php-mime-mail-parser/zipball/9d09a017f3f103fec8456211a4a538b80e0eca0d",
  1069. "reference": "9d09a017f3f103fec8456211a4a538b80e0eca0d",
  1070. "shasum": ""
  1071. },
  1072. "require": {
  1073. "ext-mailparse": "*",
  1074. "php": "^7.2|^8.0"
  1075. },
  1076. "replace": {
  1077. "exorus/php-mime-mail-parser": "*",
  1078. "messaged/php-mime-mail-parser": "*"
  1079. },
  1080. "require-dev": {
  1081. "php-coveralls/php-coveralls": "^2.2",
  1082. "phpunit/phpunit": "^8.0",
  1083. "squizlabs/php_codesniffer": "^3.5"
  1084. },
  1085. "type": "library",
  1086. "autoload": {
  1087. "psr-4": {
  1088. "PhpMimeMailParser\\": "src/"
  1089. }
  1090. },
  1091. "notification-url": "https://packagist.org/downloads/",
  1092. "license": [
  1093. "MIT"
  1094. ],
  1095. "authors": [
  1096. {
  1097. "name": "eXorus",
  1098. "email": "exorus.spam@gmail.com",
  1099. "homepage": "https://github.com/eXorus/",
  1100. "role": "Developer"
  1101. },
  1102. {
  1103. "name": "M.Valinskis",
  1104. "email": "M.Valins@gmail.com",
  1105. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  1106. "role": "Developer"
  1107. },
  1108. {
  1109. "name": "eugene.emmett.wood",
  1110. "email": "gene_w@cementhorizon.com",
  1111. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  1112. "role": "Developer"
  1113. },
  1114. {
  1115. "name": "alknetso",
  1116. "email": "alkne@gmail.com",
  1117. "homepage": "https://code.google.com/p/php-mime-mail-parser",
  1118. "role": "Developer"
  1119. },
  1120. {
  1121. "name": "bucabay",
  1122. "email": "gabe@fijiwebdesign.com",
  1123. "homepage": "http://www.fijiwebdesign.com",
  1124. "role": "Developer"
  1125. }
  1126. ],
  1127. "description": "A fully tested email parser for PHP 7.2+ (mailparse extension wrapper).",
  1128. "homepage": "https://github.com/php-mime-mail-parser/php-mime-mail-parser",
  1129. "keywords": [
  1130. "MimeMailParser",
  1131. "mail",
  1132. "mailparse",
  1133. "mime",
  1134. "parser",
  1135. "php"
  1136. ],
  1137. "support": {
  1138. "issues": "https://github.com/php-mime-mail-parser/php-mime-mail-parser/issues",
  1139. "source": "https://github.com/php-mime-mail-parser/php-mime-mail-parser/tree/7.0.0"
  1140. },
  1141. "funding": [
  1142. {
  1143. "url": "https://github.com/eXorus",
  1144. "type": "github"
  1145. }
  1146. ],
  1147. "time": "2021-02-25T17:21:57+00:00"
  1148. },
  1149. {
  1150. "name": "phpmailer/phpmailer",
  1151. "version": "v6.6.0",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/PHPMailer/PHPMailer.git",
  1155. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  1160. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "ext-ctype": "*",
  1165. "ext-filter": "*",
  1166. "ext-hash": "*",
  1167. "php": ">=5.5.0"
  1168. },
  1169. "require-dev": {
  1170. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1171. "doctrine/annotations": "^1.2",
  1172. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  1173. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  1174. "phpcompatibility/php-compatibility": "^9.3.5",
  1175. "roave/security-advisories": "dev-latest",
  1176. "squizlabs/php_codesniffer": "^3.6.2",
  1177. "yoast/phpunit-polyfills": "^1.0.0"
  1178. },
  1179. "suggest": {
  1180. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  1181. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  1182. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  1183. "psr/log": "For optional PSR-3 debug logging",
  1184. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  1185. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  1186. },
  1187. "type": "library",
  1188. "autoload": {
  1189. "psr-4": {
  1190. "PHPMailer\\PHPMailer\\": "src/"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "LGPL-2.1-only"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Marcus Bointon",
  1200. "email": "phpmailer@synchromedia.co.uk"
  1201. },
  1202. {
  1203. "name": "Jim Jagielski",
  1204. "email": "jimjag@gmail.com"
  1205. },
  1206. {
  1207. "name": "Andy Prevost",
  1208. "email": "codeworxtech@users.sourceforge.net"
  1209. },
  1210. {
  1211. "name": "Brent R. Matzelle"
  1212. }
  1213. ],
  1214. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  1215. "support": {
  1216. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  1217. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.6.0"
  1218. },
  1219. "funding": [
  1220. {
  1221. "url": "https://github.com/Synchro",
  1222. "type": "github"
  1223. }
  1224. ],
  1225. "time": "2022-02-28T15:31:21+00:00"
  1226. },
  1227. {
  1228. "name": "psr/container",
  1229. "version": "2.0.2",
  1230. "source": {
  1231. "type": "git",
  1232. "url": "https://github.com/php-fig/container.git",
  1233. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1234. },
  1235. "dist": {
  1236. "type": "zip",
  1237. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1238. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1239. "shasum": ""
  1240. },
  1241. "require": {
  1242. "php": ">=7.4.0"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "2.0.x-dev"
  1248. }
  1249. },
  1250. "autoload": {
  1251. "psr-4": {
  1252. "Psr\\Container\\": "src/"
  1253. }
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "MIT"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "PHP-FIG",
  1262. "homepage": "https://www.php-fig.org/"
  1263. }
  1264. ],
  1265. "description": "Common Container Interface (PHP FIG PSR-11)",
  1266. "homepage": "https://github.com/php-fig/container",
  1267. "keywords": [
  1268. "PSR-11",
  1269. "container",
  1270. "container-interface",
  1271. "container-interop",
  1272. "psr"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/php-fig/container/issues",
  1276. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1277. },
  1278. "time": "2021-11-05T16:47:00+00:00"
  1279. },
  1280. {
  1281. "name": "psr/http-client",
  1282. "version": "1.0.1",
  1283. "source": {
  1284. "type": "git",
  1285. "url": "https://github.com/php-fig/http-client.git",
  1286. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1287. },
  1288. "dist": {
  1289. "type": "zip",
  1290. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1291. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1292. "shasum": ""
  1293. },
  1294. "require": {
  1295. "php": "^7.0 || ^8.0",
  1296. "psr/http-message": "^1.0"
  1297. },
  1298. "type": "library",
  1299. "extra": {
  1300. "branch-alias": {
  1301. "dev-master": "1.0.x-dev"
  1302. }
  1303. },
  1304. "autoload": {
  1305. "psr-4": {
  1306. "Psr\\Http\\Client\\": "src/"
  1307. }
  1308. },
  1309. "notification-url": "https://packagist.org/downloads/",
  1310. "license": [
  1311. "MIT"
  1312. ],
  1313. "authors": [
  1314. {
  1315. "name": "PHP-FIG",
  1316. "homepage": "http://www.php-fig.org/"
  1317. }
  1318. ],
  1319. "description": "Common interface for HTTP clients",
  1320. "homepage": "https://github.com/php-fig/http-client",
  1321. "keywords": [
  1322. "http",
  1323. "http-client",
  1324. "psr",
  1325. "psr-18"
  1326. ],
  1327. "support": {
  1328. "source": "https://github.com/php-fig/http-client/tree/master"
  1329. },
  1330. "time": "2020-06-29T06:28:15+00:00"
  1331. },
  1332. {
  1333. "name": "psr/http-factory",
  1334. "version": "1.0.1",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/php-fig/http-factory.git",
  1338. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1343. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1344. "shasum": ""
  1345. },
  1346. "require": {
  1347. "php": ">=7.0.0",
  1348. "psr/http-message": "^1.0"
  1349. },
  1350. "type": "library",
  1351. "extra": {
  1352. "branch-alias": {
  1353. "dev-master": "1.0.x-dev"
  1354. }
  1355. },
  1356. "autoload": {
  1357. "psr-4": {
  1358. "Psr\\Http\\Message\\": "src/"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "authors": [
  1366. {
  1367. "name": "PHP-FIG",
  1368. "homepage": "http://www.php-fig.org/"
  1369. }
  1370. ],
  1371. "description": "Common interfaces for PSR-7 HTTP message factories",
  1372. "keywords": [
  1373. "factory",
  1374. "http",
  1375. "message",
  1376. "psr",
  1377. "psr-17",
  1378. "psr-7",
  1379. "request",
  1380. "response"
  1381. ],
  1382. "support": {
  1383. "source": "https://github.com/php-fig/http-factory/tree/master"
  1384. },
  1385. "time": "2019-04-30T12:38:16+00:00"
  1386. },
  1387. {
  1388. "name": "psr/http-message",
  1389. "version": "1.0.1",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/php-fig/http-message.git",
  1393. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1398. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "php": ">=5.3.0"
  1403. },
  1404. "type": "library",
  1405. "extra": {
  1406. "branch-alias": {
  1407. "dev-master": "1.0.x-dev"
  1408. }
  1409. },
  1410. "autoload": {
  1411. "psr-4": {
  1412. "Psr\\Http\\Message\\": "src/"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "PHP-FIG",
  1422. "homepage": "http://www.php-fig.org/"
  1423. }
  1424. ],
  1425. "description": "Common interface for HTTP messages",
  1426. "homepage": "https://github.com/php-fig/http-message",
  1427. "keywords": [
  1428. "http",
  1429. "http-message",
  1430. "psr",
  1431. "psr-7",
  1432. "request",
  1433. "response"
  1434. ],
  1435. "support": {
  1436. "source": "https://github.com/php-fig/http-message/tree/master"
  1437. },
  1438. "time": "2016-08-06T14:39:51+00:00"
  1439. },
  1440. {
  1441. "name": "psr/log",
  1442. "version": "3.0.0",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/php-fig/log.git",
  1446. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  1451. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  1452. "shasum": ""
  1453. },
  1454. "require": {
  1455. "php": ">=8.0.0"
  1456. },
  1457. "type": "library",
  1458. "extra": {
  1459. "branch-alias": {
  1460. "dev-master": "3.x-dev"
  1461. }
  1462. },
  1463. "autoload": {
  1464. "psr-4": {
  1465. "Psr\\Log\\": "src"
  1466. }
  1467. },
  1468. "notification-url": "https://packagist.org/downloads/",
  1469. "license": [
  1470. "MIT"
  1471. ],
  1472. "authors": [
  1473. {
  1474. "name": "PHP-FIG",
  1475. "homepage": "https://www.php-fig.org/"
  1476. }
  1477. ],
  1478. "description": "Common interface for logging libraries",
  1479. "homepage": "https://github.com/php-fig/log",
  1480. "keywords": [
  1481. "log",
  1482. "psr",
  1483. "psr-3"
  1484. ],
  1485. "support": {
  1486. "source": "https://github.com/php-fig/log/tree/3.0.0"
  1487. },
  1488. "time": "2021-07-14T16:46:02+00:00"
  1489. },
  1490. {
  1491. "name": "psr/simple-cache",
  1492. "version": "2.0.0",
  1493. "source": {
  1494. "type": "git",
  1495. "url": "https://github.com/php-fig/simple-cache.git",
  1496. "reference": "8707bf3cea6f710bf6ef05491234e3ab06f6432a"
  1497. },
  1498. "dist": {
  1499. "type": "zip",
  1500. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/8707bf3cea6f710bf6ef05491234e3ab06f6432a",
  1501. "reference": "8707bf3cea6f710bf6ef05491234e3ab06f6432a",
  1502. "shasum": ""
  1503. },
  1504. "require": {
  1505. "php": ">=8.0.0"
  1506. },
  1507. "type": "library",
  1508. "extra": {
  1509. "branch-alias": {
  1510. "dev-master": "2.0.x-dev"
  1511. }
  1512. },
  1513. "autoload": {
  1514. "psr-4": {
  1515. "Psr\\SimpleCache\\": "src/"
  1516. }
  1517. },
  1518. "notification-url": "https://packagist.org/downloads/",
  1519. "license": [
  1520. "MIT"
  1521. ],
  1522. "authors": [
  1523. {
  1524. "name": "PHP-FIG",
  1525. "homepage": "https://www.php-fig.org/"
  1526. }
  1527. ],
  1528. "description": "Common interfaces for simple caching",
  1529. "keywords": [
  1530. "cache",
  1531. "caching",
  1532. "psr",
  1533. "psr-16",
  1534. "simple-cache"
  1535. ],
  1536. "support": {
  1537. "source": "https://github.com/php-fig/simple-cache/tree/2.0.0"
  1538. },
  1539. "time": "2021-10-29T13:22:09+00:00"
  1540. },
  1541. {
  1542. "name": "ralouphie/getallheaders",
  1543. "version": "3.0.3",
  1544. "source": {
  1545. "type": "git",
  1546. "url": "https://github.com/ralouphie/getallheaders.git",
  1547. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1548. },
  1549. "dist": {
  1550. "type": "zip",
  1551. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1552. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1553. "shasum": ""
  1554. },
  1555. "require": {
  1556. "php": ">=5.6"
  1557. },
  1558. "require-dev": {
  1559. "php-coveralls/php-coveralls": "^2.1",
  1560. "phpunit/phpunit": "^5 || ^6.5"
  1561. },
  1562. "type": "library",
  1563. "autoload": {
  1564. "files": [
  1565. "src/getallheaders.php"
  1566. ]
  1567. },
  1568. "notification-url": "https://packagist.org/downloads/",
  1569. "license": [
  1570. "MIT"
  1571. ],
  1572. "authors": [
  1573. {
  1574. "name": "Ralph Khattar",
  1575. "email": "ralph.khattar@gmail.com"
  1576. }
  1577. ],
  1578. "description": "A polyfill for getallheaders.",
  1579. "support": {
  1580. "issues": "https://github.com/ralouphie/getallheaders/issues",
  1581. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  1582. },
  1583. "time": "2019-03-08T08:55:37+00:00"
  1584. },
  1585. {
  1586. "name": "robthree/twofactorauth",
  1587. "version": "1.8.1",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/RobThree/TwoFactorAuth.git",
  1591. "reference": "5afcb45282f1c75562a48d479ecd1732c9bdb11b"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://api.github.com/repos/RobThree/TwoFactorAuth/zipball/5afcb45282f1c75562a48d479ecd1732c9bdb11b",
  1596. "reference": "5afcb45282f1c75562a48d479ecd1732c9bdb11b",
  1597. "shasum": ""
  1598. },
  1599. "require": {
  1600. "php": ">=5.6.0"
  1601. },
  1602. "require-dev": {
  1603. "php-parallel-lint/php-parallel-lint": "^1.2",
  1604. "phpunit/phpunit": "@stable"
  1605. },
  1606. "suggest": {
  1607. "bacon/bacon-qr-code": "Needed for BaconQrCodeProvider provider",
  1608. "endroid/qr-code": "Needed for EndroidQrCodeProvider"
  1609. },
  1610. "type": "library",
  1611. "autoload": {
  1612. "psr-4": {
  1613. "RobThree\\Auth\\": "lib"
  1614. }
  1615. },
  1616. "notification-url": "https://packagist.org/downloads/",
  1617. "license": [
  1618. "MIT"
  1619. ],
  1620. "authors": [
  1621. {
  1622. "name": "Rob Janssen",
  1623. "homepage": "http://robiii.me",
  1624. "role": "Developer"
  1625. }
  1626. ],
  1627. "description": "Two Factor Authentication",
  1628. "homepage": "https://github.com/RobThree/TwoFactorAuth",
  1629. "keywords": [
  1630. "Authentication",
  1631. "MFA",
  1632. "Multi Factor Authentication",
  1633. "Two Factor Authentication",
  1634. "authenticator",
  1635. "authy",
  1636. "php",
  1637. "tfa"
  1638. ],
  1639. "support": {
  1640. "issues": "https://github.com/RobThree/TwoFactorAuth/issues",
  1641. "source": "https://github.com/RobThree/TwoFactorAuth"
  1642. },
  1643. "funding": [
  1644. {
  1645. "url": "https://paypal.me/robiii",
  1646. "type": "custom"
  1647. },
  1648. {
  1649. "url": "https://github.com/RobThree",
  1650. "type": "github"
  1651. }
  1652. ],
  1653. "time": "2021-10-20T12:19:55+00:00"
  1654. },
  1655. {
  1656. "name": "soundasleep/html2text",
  1657. "version": "0.5.0",
  1658. "source": {
  1659. "type": "git",
  1660. "url": "https://github.com/soundasleep/html2text.git",
  1661. "reference": "cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad"
  1662. },
  1663. "dist": {
  1664. "type": "zip",
  1665. "url": "https://api.github.com/repos/soundasleep/html2text/zipball/cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad",
  1666. "reference": "cdb89f6ffa2c4cc78f8ed9ea6ee0594a9133ccad",
  1667. "shasum": ""
  1668. },
  1669. "require": {
  1670. "ext-dom": "*",
  1671. "ext-libxml": "*",
  1672. "php": ">=5.3.2"
  1673. },
  1674. "require-dev": {
  1675. "phpunit/phpunit": ">=4.0",
  1676. "soundasleep/component-tests": "dev-master"
  1677. },
  1678. "type": "library",
  1679. "autoload": {
  1680. "psr-4": {
  1681. "Html2Text\\": "src"
  1682. }
  1683. },
  1684. "notification-url": "https://packagist.org/downloads/",
  1685. "license": [
  1686. "EPL-1.0"
  1687. ],
  1688. "authors": [
  1689. {
  1690. "name": "Jevon Wright",
  1691. "homepage": "https://jevon.org",
  1692. "role": "Developer"
  1693. }
  1694. ],
  1695. "description": "A PHP script to convert HTML into a plain text format",
  1696. "homepage": "https://github.com/soundasleep/html2text",
  1697. "keywords": [
  1698. "email",
  1699. "html",
  1700. "php",
  1701. "text"
  1702. ],
  1703. "support": {
  1704. "email": "support@jevon.org",
  1705. "issues": "https://github.com/soundasleep/html2text/issues",
  1706. "source": "https://github.com/soundasleep/html2text/tree/master"
  1707. },
  1708. "time": "2017-04-19T22:01:50+00:00"
  1709. },
  1710. {
  1711. "name": "stevenmaguire/oauth2-keycloak",
  1712. "version": "4.0.0",
  1713. "source": {
  1714. "type": "git",
  1715. "url": "https://github.com/stevenmaguire/oauth2-keycloak.git",
  1716. "reference": "05ead6bb6bcd2b6f96dfae87c769dcd3e5f6129d"
  1717. },
  1718. "dist": {
  1719. "type": "zip",
  1720. "url": "https://api.github.com/repos/stevenmaguire/oauth2-keycloak/zipball/05ead6bb6bcd2b6f96dfae87c769dcd3e5f6129d",
  1721. "reference": "05ead6bb6bcd2b6f96dfae87c769dcd3e5f6129d",
  1722. "shasum": ""
  1723. },
  1724. "require": {
  1725. "firebase/php-jwt": "^4.0 || ^5.0 || ^6.0",
  1726. "league/oauth2-client": "^2.0",
  1727. "php": "~7.2 || ~8.0"
  1728. },
  1729. "require-dev": {
  1730. "mockery/mockery": "~1.5.0",
  1731. "phpunit/phpunit": "~9.6.4",
  1732. "squizlabs/php_codesniffer": "~3.7.0"
  1733. },
  1734. "type": "library",
  1735. "extra": {
  1736. "branch-alias": {
  1737. "dev-master": "1.0.x-dev"
  1738. }
  1739. },
  1740. "autoload": {
  1741. "psr-4": {
  1742. "Stevenmaguire\\OAuth2\\Client\\": "src/"
  1743. }
  1744. },
  1745. "notification-url": "https://packagist.org/downloads/",
  1746. "license": [
  1747. "MIT"
  1748. ],
  1749. "authors": [
  1750. {
  1751. "name": "Steven Maguire",
  1752. "email": "stevenmaguire@gmail.com",
  1753. "homepage": "https://github.com/stevenmaguire"
  1754. }
  1755. ],
  1756. "description": "Keycloak OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
  1757. "keywords": [
  1758. "authorisation",
  1759. "authorization",
  1760. "client",
  1761. "keycloak",
  1762. "oauth",
  1763. "oauth2"
  1764. ],
  1765. "support": {
  1766. "issues": "https://github.com/stevenmaguire/oauth2-keycloak/issues",
  1767. "source": "https://github.com/stevenmaguire/oauth2-keycloak/tree/4.0.0"
  1768. },
  1769. "time": "2023-03-14T09:43:47+00:00"
  1770. },
  1771. {
  1772. "name": "symfony/deprecation-contracts",
  1773. "version": "v3.2.1",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/symfony/deprecation-contracts.git",
  1777. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  1782. "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e",
  1783. "shasum": ""
  1784. },
  1785. "require": {
  1786. "php": ">=8.1"
  1787. },
  1788. "type": "library",
  1789. "extra": {
  1790. "branch-alias": {
  1791. "dev-main": "3.3-dev"
  1792. },
  1793. "thanks": {
  1794. "name": "symfony/contracts",
  1795. "url": "https://github.com/symfony/contracts"
  1796. }
  1797. },
  1798. "autoload": {
  1799. "files": [
  1800. "function.php"
  1801. ]
  1802. },
  1803. "notification-url": "https://packagist.org/downloads/",
  1804. "license": [
  1805. "MIT"
  1806. ],
  1807. "authors": [
  1808. {
  1809. "name": "Nicolas Grekas",
  1810. "email": "p@tchwork.com"
  1811. },
  1812. {
  1813. "name": "Symfony Community",
  1814. "homepage": "https://symfony.com/contributors"
  1815. }
  1816. ],
  1817. "description": "A generic function and convention to trigger deprecation notices",
  1818. "homepage": "https://symfony.com",
  1819. "support": {
  1820. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1"
  1821. },
  1822. "funding": [
  1823. {
  1824. "url": "https://symfony.com/sponsor",
  1825. "type": "custom"
  1826. },
  1827. {
  1828. "url": "https://github.com/fabpot",
  1829. "type": "github"
  1830. },
  1831. {
  1832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1833. "type": "tidelift"
  1834. }
  1835. ],
  1836. "time": "2023-03-01T10:25:55+00:00"
  1837. },
  1838. {
  1839. "name": "symfony/polyfill-ctype",
  1840. "version": "v1.24.0",
  1841. "source": {
  1842. "type": "git",
  1843. "url": "https://github.com/symfony/polyfill-ctype.git",
  1844. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  1845. },
  1846. "dist": {
  1847. "type": "zip",
  1848. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  1849. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  1850. "shasum": ""
  1851. },
  1852. "require": {
  1853. "php": ">=7.1"
  1854. },
  1855. "provide": {
  1856. "ext-ctype": "*"
  1857. },
  1858. "suggest": {
  1859. "ext-ctype": "For best performance"
  1860. },
  1861. "type": "library",
  1862. "extra": {
  1863. "branch-alias": {
  1864. "dev-main": "1.23-dev"
  1865. },
  1866. "thanks": {
  1867. "name": "symfony/polyfill",
  1868. "url": "https://github.com/symfony/polyfill"
  1869. }
  1870. },
  1871. "autoload": {
  1872. "files": [
  1873. "bootstrap.php"
  1874. ],
  1875. "psr-4": {
  1876. "Symfony\\Polyfill\\Ctype\\": ""
  1877. }
  1878. },
  1879. "notification-url": "https://packagist.org/downloads/",
  1880. "license": [
  1881. "MIT"
  1882. ],
  1883. "authors": [
  1884. {
  1885. "name": "Gert de Pagter",
  1886. "email": "BackEndTea@gmail.com"
  1887. },
  1888. {
  1889. "name": "Symfony Community",
  1890. "homepage": "https://symfony.com/contributors"
  1891. }
  1892. ],
  1893. "description": "Symfony polyfill for ctype functions",
  1894. "homepage": "https://symfony.com",
  1895. "keywords": [
  1896. "compatibility",
  1897. "ctype",
  1898. "polyfill",
  1899. "portable"
  1900. ],
  1901. "support": {
  1902. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  1903. },
  1904. "funding": [
  1905. {
  1906. "url": "https://symfony.com/sponsor",
  1907. "type": "custom"
  1908. },
  1909. {
  1910. "url": "https://github.com/fabpot",
  1911. "type": "github"
  1912. },
  1913. {
  1914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1915. "type": "tidelift"
  1916. }
  1917. ],
  1918. "time": "2021-10-20T20:35:02+00:00"
  1919. },
  1920. {
  1921. "name": "symfony/polyfill-mbstring",
  1922. "version": "v1.24.0",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1926. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
  1931. "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
  1932. "shasum": ""
  1933. },
  1934. "require": {
  1935. "php": ">=7.1"
  1936. },
  1937. "provide": {
  1938. "ext-mbstring": "*"
  1939. },
  1940. "suggest": {
  1941. "ext-mbstring": "For best performance"
  1942. },
  1943. "type": "library",
  1944. "extra": {
  1945. "branch-alias": {
  1946. "dev-main": "1.23-dev"
  1947. },
  1948. "thanks": {
  1949. "name": "symfony/polyfill",
  1950. "url": "https://github.com/symfony/polyfill"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "files": [
  1955. "bootstrap.php"
  1956. ],
  1957. "psr-4": {
  1958. "Symfony\\Polyfill\\Mbstring\\": ""
  1959. }
  1960. },
  1961. "notification-url": "https://packagist.org/downloads/",
  1962. "license": [
  1963. "MIT"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "Nicolas Grekas",
  1968. "email": "p@tchwork.com"
  1969. },
  1970. {
  1971. "name": "Symfony Community",
  1972. "homepage": "https://symfony.com/contributors"
  1973. }
  1974. ],
  1975. "description": "Symfony polyfill for the Mbstring extension",
  1976. "homepage": "https://symfony.com",
  1977. "keywords": [
  1978. "compatibility",
  1979. "mbstring",
  1980. "polyfill",
  1981. "portable",
  1982. "shim"
  1983. ],
  1984. "support": {
  1985. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0"
  1986. },
  1987. "funding": [
  1988. {
  1989. "url": "https://symfony.com/sponsor",
  1990. "type": "custom"
  1991. },
  1992. {
  1993. "url": "https://github.com/fabpot",
  1994. "type": "github"
  1995. },
  1996. {
  1997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1998. "type": "tidelift"
  1999. }
  2000. ],
  2001. "time": "2021-11-30T18:21:41+00:00"
  2002. },
  2003. {
  2004. "name": "symfony/polyfill-php80",
  2005. "version": "v1.24.0",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/symfony/polyfill-php80.git",
  2009. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9",
  2014. "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9",
  2015. "shasum": ""
  2016. },
  2017. "require": {
  2018. "php": ">=7.1"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "branch-alias": {
  2023. "dev-main": "1.23-dev"
  2024. },
  2025. "thanks": {
  2026. "name": "symfony/polyfill",
  2027. "url": "https://github.com/symfony/polyfill"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "files": [
  2032. "bootstrap.php"
  2033. ],
  2034. "psr-4": {
  2035. "Symfony\\Polyfill\\Php80\\": ""
  2036. },
  2037. "classmap": [
  2038. "Resources/stubs"
  2039. ]
  2040. },
  2041. "notification-url": "https://packagist.org/downloads/",
  2042. "license": [
  2043. "MIT"
  2044. ],
  2045. "authors": [
  2046. {
  2047. "name": "Ion Bazan",
  2048. "email": "ion.bazan@gmail.com"
  2049. },
  2050. {
  2051. "name": "Nicolas Grekas",
  2052. "email": "p@tchwork.com"
  2053. },
  2054. {
  2055. "name": "Symfony Community",
  2056. "homepage": "https://symfony.com/contributors"
  2057. }
  2058. ],
  2059. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2060. "homepage": "https://symfony.com",
  2061. "keywords": [
  2062. "compatibility",
  2063. "polyfill",
  2064. "portable",
  2065. "shim"
  2066. ],
  2067. "support": {
  2068. "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0"
  2069. },
  2070. "funding": [
  2071. {
  2072. "url": "https://symfony.com/sponsor",
  2073. "type": "custom"
  2074. },
  2075. {
  2076. "url": "https://github.com/fabpot",
  2077. "type": "github"
  2078. },
  2079. {
  2080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2081. "type": "tidelift"
  2082. }
  2083. ],
  2084. "time": "2021-09-13T13:58:33+00:00"
  2085. },
  2086. {
  2087. "name": "symfony/translation",
  2088. "version": "v6.0.5",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/symfony/translation.git",
  2092. "reference": "e69501c71107cc3146b32aaa45f4edd0c3427875"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/symfony/translation/zipball/e69501c71107cc3146b32aaa45f4edd0c3427875",
  2097. "reference": "e69501c71107cc3146b32aaa45f4edd0c3427875",
  2098. "shasum": ""
  2099. },
  2100. "require": {
  2101. "php": ">=8.0.2",
  2102. "symfony/polyfill-mbstring": "~1.0",
  2103. "symfony/translation-contracts": "^2.3|^3.0"
  2104. },
  2105. "conflict": {
  2106. "symfony/config": "<5.4",
  2107. "symfony/console": "<5.4",
  2108. "symfony/dependency-injection": "<5.4",
  2109. "symfony/http-kernel": "<5.4",
  2110. "symfony/twig-bundle": "<5.4",
  2111. "symfony/yaml": "<5.4"
  2112. },
  2113. "provide": {
  2114. "symfony/translation-implementation": "2.3|3.0"
  2115. },
  2116. "require-dev": {
  2117. "psr/log": "^1|^2|^3",
  2118. "symfony/config": "^5.4|^6.0",
  2119. "symfony/console": "^5.4|^6.0",
  2120. "symfony/dependency-injection": "^5.4|^6.0",
  2121. "symfony/finder": "^5.4|^6.0",
  2122. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  2123. "symfony/http-kernel": "^5.4|^6.0",
  2124. "symfony/intl": "^5.4|^6.0",
  2125. "symfony/polyfill-intl-icu": "^1.21",
  2126. "symfony/service-contracts": "^1.1.2|^2|^3",
  2127. "symfony/yaml": "^5.4|^6.0"
  2128. },
  2129. "suggest": {
  2130. "psr/log-implementation": "To use logging capability in translator",
  2131. "symfony/config": "",
  2132. "symfony/yaml": ""
  2133. },
  2134. "type": "library",
  2135. "autoload": {
  2136. "files": [
  2137. "Resources/functions.php"
  2138. ],
  2139. "psr-4": {
  2140. "Symfony\\Component\\Translation\\": ""
  2141. },
  2142. "exclude-from-classmap": [
  2143. "/Tests/"
  2144. ]
  2145. },
  2146. "notification-url": "https://packagist.org/downloads/",
  2147. "license": [
  2148. "MIT"
  2149. ],
  2150. "authors": [
  2151. {
  2152. "name": "Fabien Potencier",
  2153. "email": "fabien@symfony.com"
  2154. },
  2155. {
  2156. "name": "Symfony Community",
  2157. "homepage": "https://symfony.com/contributors"
  2158. }
  2159. ],
  2160. "description": "Provides tools to internationalize your application",
  2161. "homepage": "https://symfony.com",
  2162. "support": {
  2163. "source": "https://github.com/symfony/translation/tree/v6.0.5"
  2164. },
  2165. "funding": [
  2166. {
  2167. "url": "https://symfony.com/sponsor",
  2168. "type": "custom"
  2169. },
  2170. {
  2171. "url": "https://github.com/fabpot",
  2172. "type": "github"
  2173. },
  2174. {
  2175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2176. "type": "tidelift"
  2177. }
  2178. ],
  2179. "time": "2022-02-09T15:52:48+00:00"
  2180. },
  2181. {
  2182. "name": "symfony/translation-contracts",
  2183. "version": "v3.0.0",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/symfony/translation-contracts.git",
  2187. "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
  2192. "reference": "1b6ea5a7442af5a12dba3dbd6d71034b5b234e77",
  2193. "shasum": ""
  2194. },
  2195. "require": {
  2196. "php": ">=8.0.2"
  2197. },
  2198. "suggest": {
  2199. "symfony/translation-implementation": ""
  2200. },
  2201. "type": "library",
  2202. "extra": {
  2203. "branch-alias": {
  2204. "dev-main": "3.0-dev"
  2205. },
  2206. "thanks": {
  2207. "name": "symfony/contracts",
  2208. "url": "https://github.com/symfony/contracts"
  2209. }
  2210. },
  2211. "autoload": {
  2212. "psr-4": {
  2213. "Symfony\\Contracts\\Translation\\": ""
  2214. }
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "MIT"
  2219. ],
  2220. "authors": [
  2221. {
  2222. "name": "Nicolas Grekas",
  2223. "email": "p@tchwork.com"
  2224. },
  2225. {
  2226. "name": "Symfony Community",
  2227. "homepage": "https://symfony.com/contributors"
  2228. }
  2229. ],
  2230. "description": "Generic abstractions related to translation",
  2231. "homepage": "https://symfony.com",
  2232. "keywords": [
  2233. "abstractions",
  2234. "contracts",
  2235. "decoupling",
  2236. "interfaces",
  2237. "interoperability",
  2238. "standards"
  2239. ],
  2240. "support": {
  2241. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.0"
  2242. },
  2243. "funding": [
  2244. {
  2245. "url": "https://symfony.com/sponsor",
  2246. "type": "custom"
  2247. },
  2248. {
  2249. "url": "https://github.com/fabpot",
  2250. "type": "github"
  2251. },
  2252. {
  2253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2254. "type": "tidelift"
  2255. }
  2256. ],
  2257. "time": "2021-09-07T12:43:40+00:00"
  2258. },
  2259. {
  2260. "name": "symfony/var-dumper",
  2261. "version": "v6.0.5",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/symfony/var-dumper.git",
  2265. "reference": "60d6a756d5f485df5e6e40b337334848f79f61ce"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/60d6a756d5f485df5e6e40b337334848f79f61ce",
  2270. "reference": "60d6a756d5f485df5e6e40b337334848f79f61ce",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": ">=8.0.2",
  2275. "symfony/polyfill-mbstring": "~1.0"
  2276. },
  2277. "conflict": {
  2278. "phpunit/phpunit": "<5.4.3",
  2279. "symfony/console": "<5.4"
  2280. },
  2281. "require-dev": {
  2282. "ext-iconv": "*",
  2283. "symfony/console": "^5.4|^6.0",
  2284. "symfony/process": "^5.4|^6.0",
  2285. "symfony/uid": "^5.4|^6.0",
  2286. "twig/twig": "^2.13|^3.0.4"
  2287. },
  2288. "suggest": {
  2289. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2290. "ext-intl": "To show region name in time zone dump",
  2291. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2292. },
  2293. "bin": [
  2294. "Resources/bin/var-dump-server"
  2295. ],
  2296. "type": "library",
  2297. "autoload": {
  2298. "files": [
  2299. "Resources/functions/dump.php"
  2300. ],
  2301. "psr-4": {
  2302. "Symfony\\Component\\VarDumper\\": ""
  2303. },
  2304. "exclude-from-classmap": [
  2305. "/Tests/"
  2306. ]
  2307. },
  2308. "notification-url": "https://packagist.org/downloads/",
  2309. "license": [
  2310. "MIT"
  2311. ],
  2312. "authors": [
  2313. {
  2314. "name": "Nicolas Grekas",
  2315. "email": "p@tchwork.com"
  2316. },
  2317. {
  2318. "name": "Symfony Community",
  2319. "homepage": "https://symfony.com/contributors"
  2320. }
  2321. ],
  2322. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  2323. "homepage": "https://symfony.com",
  2324. "keywords": [
  2325. "debug",
  2326. "dump"
  2327. ],
  2328. "support": {
  2329. "source": "https://github.com/symfony/var-dumper/tree/v6.0.5"
  2330. },
  2331. "funding": [
  2332. {
  2333. "url": "https://symfony.com/sponsor",
  2334. "type": "custom"
  2335. },
  2336. {
  2337. "url": "https://github.com/fabpot",
  2338. "type": "github"
  2339. },
  2340. {
  2341. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2342. "type": "tidelift"
  2343. }
  2344. ],
  2345. "time": "2022-02-21T17:15:17+00:00"
  2346. },
  2347. {
  2348. "name": "tightenco/collect",
  2349. "version": "v8.83.2",
  2350. "source": {
  2351. "type": "git",
  2352. "url": "https://github.com/tighten/collect.git",
  2353. "reference": "d9c66d586ec2d216d8a31283d73f8df1400cc722"
  2354. },
  2355. "dist": {
  2356. "type": "zip",
  2357. "url": "https://api.github.com/repos/tighten/collect/zipball/d9c66d586ec2d216d8a31283d73f8df1400cc722",
  2358. "reference": "d9c66d586ec2d216d8a31283d73f8df1400cc722",
  2359. "shasum": ""
  2360. },
  2361. "require": {
  2362. "php": "^7.3|^8.0",
  2363. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2364. },
  2365. "require-dev": {
  2366. "mockery/mockery": "^1.0",
  2367. "nesbot/carbon": "^2.23.0",
  2368. "phpunit/phpunit": "^8.3"
  2369. },
  2370. "type": "library",
  2371. "autoload": {
  2372. "files": [
  2373. "src/Collect/Support/helpers.php",
  2374. "src/Collect/Support/alias.php"
  2375. ],
  2376. "psr-4": {
  2377. "Tightenco\\Collect\\": "src/Collect"
  2378. }
  2379. },
  2380. "notification-url": "https://packagist.org/downloads/",
  2381. "license": [
  2382. "MIT"
  2383. ],
  2384. "authors": [
  2385. {
  2386. "name": "Taylor Otwell",
  2387. "email": "taylorotwell@gmail.com"
  2388. }
  2389. ],
  2390. "description": "Collect - Illuminate Collections as a separate package.",
  2391. "keywords": [
  2392. "collection",
  2393. "laravel"
  2394. ],
  2395. "support": {
  2396. "issues": "https://github.com/tighten/collect/issues",
  2397. "source": "https://github.com/tighten/collect/tree/v8.83.2"
  2398. },
  2399. "time": "2022-02-16T16:15:54+00:00"
  2400. },
  2401. {
  2402. "name": "twig/twig",
  2403. "version": "v3.4.3",
  2404. "source": {
  2405. "type": "git",
  2406. "url": "https://github.com/twigphp/Twig.git",
  2407. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58"
  2408. },
  2409. "dist": {
  2410. "type": "zip",
  2411. "url": "https://api.github.com/repos/twigphp/Twig/zipball/c38fd6b0b7f370c198db91ffd02e23b517426b58",
  2412. "reference": "c38fd6b0b7f370c198db91ffd02e23b517426b58",
  2413. "shasum": ""
  2414. },
  2415. "require": {
  2416. "php": ">=7.2.5",
  2417. "symfony/polyfill-ctype": "^1.8",
  2418. "symfony/polyfill-mbstring": "^1.3"
  2419. },
  2420. "require-dev": {
  2421. "psr/container": "^1.0",
  2422. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  2423. },
  2424. "type": "library",
  2425. "extra": {
  2426. "branch-alias": {
  2427. "dev-master": "3.4-dev"
  2428. }
  2429. },
  2430. "autoload": {
  2431. "psr-4": {
  2432. "Twig\\": "src/"
  2433. }
  2434. },
  2435. "notification-url": "https://packagist.org/downloads/",
  2436. "license": [
  2437. "BSD-3-Clause"
  2438. ],
  2439. "authors": [
  2440. {
  2441. "name": "Fabien Potencier",
  2442. "email": "fabien@symfony.com",
  2443. "homepage": "http://fabien.potencier.org",
  2444. "role": "Lead Developer"
  2445. },
  2446. {
  2447. "name": "Twig Team",
  2448. "role": "Contributors"
  2449. },
  2450. {
  2451. "name": "Armin Ronacher",
  2452. "email": "armin.ronacher@active-4.com",
  2453. "role": "Project Founder"
  2454. }
  2455. ],
  2456. "description": "Twig, the flexible, fast, and secure template language for PHP",
  2457. "homepage": "https://twig.symfony.com",
  2458. "keywords": [
  2459. "templating"
  2460. ],
  2461. "support": {
  2462. "issues": "https://github.com/twigphp/Twig/issues",
  2463. "source": "https://github.com/twigphp/Twig/tree/v3.4.3"
  2464. },
  2465. "funding": [
  2466. {
  2467. "url": "https://github.com/fabpot",
  2468. "type": "github"
  2469. },
  2470. {
  2471. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  2472. "type": "tidelift"
  2473. }
  2474. ],
  2475. "time": "2022-09-28T08:42:51+00:00"
  2476. }
  2477. ],
  2478. "packages-dev": [],
  2479. "aliases": [],
  2480. "minimum-stability": "stable",
  2481. "stability-flags": [],
  2482. "prefer-stable": false,
  2483. "prefer-lowest": false,
  2484. "platform": [],
  2485. "platform-dev": [],
  2486. "plugin-api-version": "2.3.0"
  2487. }