composer.lock 87 KB

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