composer.lock 92 KB

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