composer.lock 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219
  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": "a9cfe24cec195b73c109643bc90dc450",
  8. "packages": [
  9. {
  10. "name": "adldap2/adldap2",
  11. "version": "v10.3.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Adldap2/Adldap2.git",
  15. "reference": "c2a8f72455d3438377d955fc0f4b9ed836b47463"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Adldap2/Adldap2/zipball/c2a8f72455d3438377d955fc0f4b9ed836b47463",
  20. "reference": "c2a8f72455d3438377d955fc0f4b9ed836b47463",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "ext-ldap": "*",
  26. "illuminate/contracts": "~5.0|~6.0|~7.0|~8.0",
  27. "php": ">=7.0",
  28. "psr/log": "~1.0",
  29. "psr/simple-cache": "~1.0",
  30. "tightenco/collect": "~5.0|~6.0|~7.0|~8.0"
  31. },
  32. "require-dev": {
  33. "mockery/mockery": "~1.0",
  34. "phpunit/phpunit": "~6.0|~7.0|~8.0"
  35. },
  36. "suggest": {
  37. "ext-fileinfo": "fileinfo is required when retrieving user encoded thumbnails"
  38. },
  39. "type": "library",
  40. "autoload": {
  41. "psr-4": {
  42. "Adldap\\": "src/"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Steve Bauman",
  52. "email": "steven_bauman@outlook.com",
  53. "role": "Developer"
  54. }
  55. ],
  56. "description": "A PHP LDAP Package for humans.",
  57. "keywords": [
  58. "active directory",
  59. "ad",
  60. "adLDAP",
  61. "adldap2",
  62. "directory",
  63. "ldap",
  64. "windows"
  65. ],
  66. "support": {
  67. "docs": "https://github.com/Adldap2/Adldap2/blob/master/readme.md",
  68. "email": "steven_bauman@outlook.com",
  69. "issues": "https://github.com/Adldap2/Adldap2/issues",
  70. "source": "https://github.com/Adldap2/Adldap2"
  71. },
  72. "time": "2021-08-09T15:22:35+00:00"
  73. },
  74. {
  75. "name": "bogstag/oauth2-trakt",
  76. "version": "v1.0.1",
  77. "source": {
  78. "type": "git",
  79. "url": "https://github.com/Bogstag/oauth2-trakt.git",
  80. "reference": "fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2"
  81. },
  82. "dist": {
  83. "type": "zip",
  84. "url": "https://api.github.com/repos/Bogstag/oauth2-trakt/zipball/fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2",
  85. "reference": "fbb9253d9e317e84dc2b3f1253afc1dcbb4414a2",
  86. "shasum": ""
  87. },
  88. "require": {
  89. "league/oauth2-client": "^2.0",
  90. "php": ">=5.6.0"
  91. },
  92. "require-dev": {
  93. "mockery/mockery": "~0.9",
  94. "phpunit/phpunit": "^5.0",
  95. "squizlabs/php_codesniffer": "~2.0"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-4": {
  100. "Bogstag\\OAuth2\\Client\\": "src/"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "authors": [
  108. {
  109. "name": "Bogstag",
  110. "email": "krister@bogstag.se",
  111. "homepage": "https://github.com/bogstag"
  112. }
  113. ],
  114. "description": "trakt.tv OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
  115. "keywords": [
  116. "Authentication",
  117. "authorization",
  118. "client",
  119. "oauth",
  120. "oauth2",
  121. "trakt"
  122. ],
  123. "support": {
  124. "issues": "https://github.com/Bogstag/oauth2-trakt/issues",
  125. "source": "https://github.com/Bogstag/oauth2-trakt/tree/master"
  126. },
  127. "time": "2017-02-26T18:30:14+00:00"
  128. },
  129. {
  130. "name": "composer/semver",
  131. "version": "1.7.2",
  132. "source": {
  133. "type": "git",
  134. "url": "https://github.com/composer/semver.git",
  135. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  136. },
  137. "dist": {
  138. "type": "zip",
  139. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  140. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  141. "shasum": ""
  142. },
  143. "require": {
  144. "php": "^5.3.2 || ^7.0 || ^8.0"
  145. },
  146. "require-dev": {
  147. "phpunit/phpunit": "^4.5 || ^5.0.5"
  148. },
  149. "type": "library",
  150. "extra": {
  151. "branch-alias": {
  152. "dev-master": "1.x-dev"
  153. }
  154. },
  155. "autoload": {
  156. "psr-4": {
  157. "Composer\\Semver\\": "src"
  158. }
  159. },
  160. "notification-url": "https://packagist.org/downloads/",
  161. "license": [
  162. "MIT"
  163. ],
  164. "authors": [
  165. {
  166. "name": "Nils Adermann",
  167. "email": "naderman@naderman.de",
  168. "homepage": "http://www.naderman.de"
  169. },
  170. {
  171. "name": "Jordi Boggiano",
  172. "email": "j.boggiano@seld.be",
  173. "homepage": "http://seld.be"
  174. },
  175. {
  176. "name": "Rob Bast",
  177. "email": "rob.bast@gmail.com",
  178. "homepage": "http://robbast.nl"
  179. }
  180. ],
  181. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  182. "keywords": [
  183. "semantic",
  184. "semver",
  185. "validation",
  186. "versioning"
  187. ],
  188. "support": {
  189. "irc": "irc://irc.freenode.org/composer",
  190. "issues": "https://github.com/composer/semver/issues",
  191. "source": "https://github.com/composer/semver/tree/1.7.2"
  192. },
  193. "funding": [
  194. {
  195. "url": "https://packagist.com",
  196. "type": "custom"
  197. },
  198. {
  199. "url": "https://github.com/composer",
  200. "type": "github"
  201. },
  202. {
  203. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  204. "type": "tidelift"
  205. }
  206. ],
  207. "time": "2020-12-03T15:47:16+00:00"
  208. },
  209. {
  210. "name": "dibi/dibi",
  211. "version": "v3.2.4",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/dg/dibi.git",
  215. "reference": "d571460a6f8fa1334a04f7aaa1551bb0f12c2266"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/dg/dibi/zipball/d571460a6f8fa1334a04f7aaa1551bb0f12c2266",
  220. "reference": "d571460a6f8fa1334a04f7aaa1551bb0f12c2266",
  221. "shasum": ""
  222. },
  223. "require": {
  224. "php": ">=5.4.4"
  225. },
  226. "replace": {
  227. "dg/dibi": "*"
  228. },
  229. "require-dev": {
  230. "nette/tester": "~1.7",
  231. "tracy/tracy": "~2.2"
  232. },
  233. "type": "library",
  234. "extra": {
  235. "branch-alias": {
  236. "dev-master": "3.2-dev"
  237. }
  238. },
  239. "autoload": {
  240. "classmap": [
  241. "src/"
  242. ],
  243. "files": [
  244. "src/loader.php"
  245. ]
  246. },
  247. "notification-url": "https://packagist.org/downloads/",
  248. "license": [
  249. "BSD-3-Clause",
  250. "GPL-2.0",
  251. "GPL-3.0"
  252. ],
  253. "authors": [
  254. {
  255. "name": "David Grudl",
  256. "homepage": "https://davidgrudl.com"
  257. }
  258. ],
  259. "description": "Dibi is Database Abstraction Library for PHP",
  260. "homepage": "https://dibiphp.com",
  261. "keywords": [
  262. "access",
  263. "database",
  264. "dbal",
  265. "mssql",
  266. "mysql",
  267. "odbc",
  268. "oracle",
  269. "pdo",
  270. "postgresql",
  271. "sqlite",
  272. "sqlsrv"
  273. ],
  274. "support": {
  275. "issues": "https://github.com/dg/dibi/issues",
  276. "source": "https://github.com/dg/dibi/tree/v3.2.4"
  277. },
  278. "time": "2020-03-26T03:05:01+00:00"
  279. },
  280. {
  281. "name": "doctrine/annotations",
  282. "version": "1.10.3",
  283. "source": {
  284. "type": "git",
  285. "url": "https://github.com/doctrine/annotations.git",
  286. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d"
  287. },
  288. "dist": {
  289. "type": "zip",
  290. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5db60a4969eba0e0c197a19c077780aadbc43c5d",
  291. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d",
  292. "shasum": ""
  293. },
  294. "require": {
  295. "doctrine/lexer": "1.*",
  296. "ext-tokenizer": "*",
  297. "php": "^7.1 || ^8.0"
  298. },
  299. "require-dev": {
  300. "doctrine/cache": "1.*",
  301. "phpunit/phpunit": "^7.5"
  302. },
  303. "type": "library",
  304. "extra": {
  305. "branch-alias": {
  306. "dev-master": "1.9.x-dev"
  307. }
  308. },
  309. "autoload": {
  310. "psr-4": {
  311. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  312. }
  313. },
  314. "notification-url": "https://packagist.org/downloads/",
  315. "license": [
  316. "MIT"
  317. ],
  318. "authors": [
  319. {
  320. "name": "Guilherme Blanco",
  321. "email": "guilhermeblanco@gmail.com"
  322. },
  323. {
  324. "name": "Roman Borschel",
  325. "email": "roman@code-factory.org"
  326. },
  327. {
  328. "name": "Benjamin Eberlei",
  329. "email": "kontakt@beberlei.de"
  330. },
  331. {
  332. "name": "Jonathan Wage",
  333. "email": "jonwage@gmail.com"
  334. },
  335. {
  336. "name": "Johannes Schmitt",
  337. "email": "schmittjoh@gmail.com"
  338. }
  339. ],
  340. "description": "Docblock Annotations Parser",
  341. "homepage": "http://www.doctrine-project.org",
  342. "keywords": [
  343. "annotations",
  344. "docblock",
  345. "parser"
  346. ],
  347. "time": "2020-05-25T17:24:27+00:00"
  348. },
  349. {
  350. "name": "doctrine/lexer",
  351. "version": "1.2.1",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/doctrine/lexer.git",
  355. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  360. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^7.2 || ^8.0"
  365. },
  366. "require-dev": {
  367. "doctrine/coding-standard": "^6.0",
  368. "phpstan/phpstan": "^0.11.8",
  369. "phpunit/phpunit": "^8.2"
  370. },
  371. "type": "library",
  372. "extra": {
  373. "branch-alias": {
  374. "dev-master": "1.2.x-dev"
  375. }
  376. },
  377. "autoload": {
  378. "psr-4": {
  379. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Guilherme Blanco",
  389. "email": "guilhermeblanco@gmail.com"
  390. },
  391. {
  392. "name": "Roman Borschel",
  393. "email": "roman@code-factory.org"
  394. },
  395. {
  396. "name": "Johannes Schmitt",
  397. "email": "schmittjoh@gmail.com"
  398. }
  399. ],
  400. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  401. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  402. "keywords": [
  403. "annotations",
  404. "docblock",
  405. "lexer",
  406. "parser",
  407. "php"
  408. ],
  409. "time": "2020-05-25T17:44:05+00:00"
  410. },
  411. {
  412. "name": "fig/http-message-util",
  413. "version": "1.1.4",
  414. "source": {
  415. "type": "git",
  416. "url": "https://github.com/php-fig/http-message-util.git",
  417. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422"
  418. },
  419. "dist": {
  420. "type": "zip",
  421. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  422. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "php": "^5.3 || ^7.0"
  427. },
  428. "suggest": {
  429. "psr/http-message": "The package containing the PSR-7 interfaces"
  430. },
  431. "type": "library",
  432. "extra": {
  433. "branch-alias": {
  434. "dev-master": "1.1.x-dev"
  435. }
  436. },
  437. "autoload": {
  438. "psr-4": {
  439. "Fig\\Http\\Message\\": "src/"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "PHP-FIG",
  449. "homepage": "http://www.php-fig.org/"
  450. }
  451. ],
  452. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  453. "keywords": [
  454. "http",
  455. "http-message",
  456. "psr",
  457. "psr-7",
  458. "request",
  459. "response"
  460. ],
  461. "time": "2020-02-05T20:36:27+00:00"
  462. },
  463. {
  464. "name": "guzzlehttp/guzzle",
  465. "version": "7.3.0",
  466. "source": {
  467. "type": "git",
  468. "url": "https://github.com/guzzle/guzzle.git",
  469. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  470. },
  471. "dist": {
  472. "type": "zip",
  473. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  474. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  475. "shasum": ""
  476. },
  477. "require": {
  478. "ext-json": "*",
  479. "guzzlehttp/promises": "^1.4",
  480. "guzzlehttp/psr7": "^1.7 || ^2.0",
  481. "php": "^7.2.5 || ^8.0",
  482. "psr/http-client": "^1.0"
  483. },
  484. "provide": {
  485. "psr/http-client-implementation": "1.0"
  486. },
  487. "require-dev": {
  488. "bamarni/composer-bin-plugin": "^1.4.1",
  489. "ext-curl": "*",
  490. "php-http/client-integration-tests": "^3.0",
  491. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  492. "psr/log": "^1.1"
  493. },
  494. "suggest": {
  495. "ext-curl": "Required for CURL handler support",
  496. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  497. "psr/log": "Required for using the Log middleware"
  498. },
  499. "type": "library",
  500. "extra": {
  501. "branch-alias": {
  502. "dev-master": "7.3-dev"
  503. }
  504. },
  505. "autoload": {
  506. "psr-4": {
  507. "GuzzleHttp\\": "src/"
  508. },
  509. "files": [
  510. "src/functions_include.php"
  511. ]
  512. },
  513. "notification-url": "https://packagist.org/downloads/",
  514. "license": [
  515. "MIT"
  516. ],
  517. "authors": [
  518. {
  519. "name": "Michael Dowling",
  520. "email": "mtdowling@gmail.com",
  521. "homepage": "https://github.com/mtdowling"
  522. },
  523. {
  524. "name": "Márk Sági-Kazár",
  525. "email": "mark.sagikazar@gmail.com",
  526. "homepage": "https://sagikazarmark.hu"
  527. }
  528. ],
  529. "description": "Guzzle is a PHP HTTP client library",
  530. "homepage": "http://guzzlephp.org/",
  531. "keywords": [
  532. "client",
  533. "curl",
  534. "framework",
  535. "http",
  536. "http client",
  537. "psr-18",
  538. "psr-7",
  539. "rest",
  540. "web service"
  541. ],
  542. "support": {
  543. "issues": "https://github.com/guzzle/guzzle/issues",
  544. "source": "https://github.com/guzzle/guzzle/tree/7.3.0"
  545. },
  546. "funding": [
  547. {
  548. "url": "https://github.com/GrahamCampbell",
  549. "type": "github"
  550. },
  551. {
  552. "url": "https://github.com/Nyholm",
  553. "type": "github"
  554. },
  555. {
  556. "url": "https://github.com/alexeyshockov",
  557. "type": "github"
  558. },
  559. {
  560. "url": "https://github.com/gmponos",
  561. "type": "github"
  562. }
  563. ],
  564. "time": "2021-03-23T11:33:13+00:00"
  565. },
  566. {
  567. "name": "guzzlehttp/promises",
  568. "version": "1.4.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/guzzle/promises.git",
  572. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  577. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": ">=5.5"
  582. },
  583. "require-dev": {
  584. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  585. },
  586. "type": "library",
  587. "extra": {
  588. "branch-alias": {
  589. "dev-master": "1.4-dev"
  590. }
  591. },
  592. "autoload": {
  593. "psr-4": {
  594. "GuzzleHttp\\Promise\\": "src/"
  595. },
  596. "files": [
  597. "src/functions_include.php"
  598. ]
  599. },
  600. "notification-url": "https://packagist.org/downloads/",
  601. "license": [
  602. "MIT"
  603. ],
  604. "authors": [
  605. {
  606. "name": "Michael Dowling",
  607. "email": "mtdowling@gmail.com",
  608. "homepage": "https://github.com/mtdowling"
  609. }
  610. ],
  611. "description": "Guzzle promises library",
  612. "keywords": [
  613. "promise"
  614. ],
  615. "support": {
  616. "issues": "https://github.com/guzzle/promises/issues",
  617. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  618. },
  619. "time": "2021-03-07T09:25:29+00:00"
  620. },
  621. {
  622. "name": "guzzlehttp/psr7",
  623. "version": "1.8.2",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/guzzle/psr7.git",
  627. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  632. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "php": ">=5.4.0",
  637. "psr/http-message": "~1.0",
  638. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  639. },
  640. "provide": {
  641. "psr/http-message-implementation": "1.0"
  642. },
  643. "require-dev": {
  644. "ext-zlib": "*",
  645. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  646. },
  647. "suggest": {
  648. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  649. },
  650. "type": "library",
  651. "extra": {
  652. "branch-alias": {
  653. "dev-master": "1.7-dev"
  654. }
  655. },
  656. "autoload": {
  657. "psr-4": {
  658. "GuzzleHttp\\Psr7\\": "src/"
  659. },
  660. "files": [
  661. "src/functions_include.php"
  662. ]
  663. },
  664. "notification-url": "https://packagist.org/downloads/",
  665. "license": [
  666. "MIT"
  667. ],
  668. "authors": [
  669. {
  670. "name": "Michael Dowling",
  671. "email": "mtdowling@gmail.com",
  672. "homepage": "https://github.com/mtdowling"
  673. },
  674. {
  675. "name": "Tobias Schultze",
  676. "homepage": "https://github.com/Tobion"
  677. }
  678. ],
  679. "description": "PSR-7 message implementation that also provides common utility methods",
  680. "keywords": [
  681. "http",
  682. "message",
  683. "psr-7",
  684. "request",
  685. "response",
  686. "stream",
  687. "uri",
  688. "url"
  689. ],
  690. "support": {
  691. "issues": "https://github.com/guzzle/psr7/issues",
  692. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  693. },
  694. "time": "2021-04-26T09:17:50+00:00"
  695. },
  696. {
  697. "name": "illuminate/contracts",
  698. "version": "v5.8.0",
  699. "source": {
  700. "type": "git",
  701. "url": "https://github.com/illuminate/contracts.git",
  702. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde"
  703. },
  704. "dist": {
  705. "type": "zip",
  706. "url": "https://api.github.com/repos/illuminate/contracts/zipball/3e3a9a654adbf798e05491a5dbf90112df1effde",
  707. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde",
  708. "shasum": ""
  709. },
  710. "require": {
  711. "php": "^7.1.3",
  712. "psr/container": "^1.0",
  713. "psr/simple-cache": "^1.0"
  714. },
  715. "type": "library",
  716. "extra": {
  717. "branch-alias": {
  718. "dev-master": "5.8-dev"
  719. }
  720. },
  721. "autoload": {
  722. "psr-4": {
  723. "Illuminate\\Contracts\\": ""
  724. }
  725. },
  726. "notification-url": "https://packagist.org/downloads/",
  727. "license": [
  728. "MIT"
  729. ],
  730. "authors": [
  731. {
  732. "name": "Taylor Otwell",
  733. "email": "taylor@laravel.com"
  734. }
  735. ],
  736. "description": "The Illuminate Contracts package.",
  737. "homepage": "https://laravel.com",
  738. "time": "2019-02-18T18:37:54+00:00"
  739. },
  740. {
  741. "name": "kryptonit3/couchpotato",
  742. "version": "1.0.0",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/Kryptonit3/CouchPotato.git",
  746. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/Kryptonit3/CouchPotato/zipball/7a1fc892f70f120f74ff005850e923a0f1566376",
  751. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "guzzlehttp/guzzle": "^7.0"
  756. },
  757. "type": "library",
  758. "autoload": {
  759. "psr-4": {
  760. "Kryptonit3\\CouchPotato\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Jesse Szypulski",
  770. "email": "jesse.szypulski@gmail.com"
  771. }
  772. ],
  773. "description": "PHP Wrapper for CouchPotato API",
  774. "time": "2016-02-06T22:02:39+00:00"
  775. },
  776. {
  777. "name": "kryptonit3/sickrage",
  778. "version": "1.0.1",
  779. "source": {
  780. "type": "git",
  781. "url": "https://github.com/Kryptonit3/SickRage.git",
  782. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa"
  783. },
  784. "dist": {
  785. "type": "zip",
  786. "url": "https://api.github.com/repos/Kryptonit3/SickRage/zipball/441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  787. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  788. "shasum": ""
  789. },
  790. "require": {
  791. "guzzlehttp/guzzle": "^7.0"
  792. },
  793. "type": "library",
  794. "autoload": {
  795. "psr-4": {
  796. "Kryptonit3\\SickRage\\": "src/"
  797. }
  798. },
  799. "notification-url": "https://packagist.org/downloads/",
  800. "license": [
  801. "MIT"
  802. ],
  803. "authors": [
  804. {
  805. "name": "Jesse Szypulski",
  806. "email": "jesse.szypulski@gmail.com"
  807. }
  808. ],
  809. "description": "PHP Wrapper for SickRage / SickBeard API",
  810. "time": "2016-08-08T00:57:46+00:00"
  811. },
  812. {
  813. "name": "kryptonit3/sonarr",
  814. "version": "1.0.6.1",
  815. "source": {
  816. "type": "git",
  817. "url": "https://github.com/Kryptonit3/Sonarr.git",
  818. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e"
  819. },
  820. "dist": {
  821. "type": "zip",
  822. "url": "https://api.github.com/repos/Kryptonit3/Sonarr/zipball/e30c5c783a837270bcef81571ca9b95909c52e5e",
  823. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e",
  824. "shasum": ""
  825. },
  826. "require": {
  827. "guzzlehttp/guzzle": "^7.0"
  828. },
  829. "type": "library",
  830. "autoload": {
  831. "psr-4": {
  832. "Kryptonit3\\Sonarr\\": "src/"
  833. }
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "MIT"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Jesse Szypulski",
  842. "email": "jesse.szypulski@gmail.com"
  843. }
  844. ],
  845. "description": "PHP Sonarr API Wrapper",
  846. "time": "2017-06-30T01:25:49+00:00"
  847. },
  848. {
  849. "name": "lcobucci/jwt",
  850. "version": "3.3.1",
  851. "source": {
  852. "type": "git",
  853. "url": "https://github.com/lcobucci/jwt.git",
  854. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  855. },
  856. "dist": {
  857. "type": "zip",
  858. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  859. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  860. "shasum": ""
  861. },
  862. "require": {
  863. "ext-mbstring": "*",
  864. "ext-openssl": "*",
  865. "php": "^5.6 || ^7.0"
  866. },
  867. "require-dev": {
  868. "mikey179/vfsstream": "~1.5",
  869. "phpmd/phpmd": "~2.2",
  870. "phpunit/php-invoker": "~1.1",
  871. "phpunit/phpunit": "^5.7 || ^7.3",
  872. "squizlabs/php_codesniffer": "~2.3"
  873. },
  874. "type": "library",
  875. "extra": {
  876. "branch-alias": {
  877. "dev-master": "3.1-dev"
  878. }
  879. },
  880. "autoload": {
  881. "psr-4": {
  882. "Lcobucci\\JWT\\": "src"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "BSD-3-Clause"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Luís Otávio Cobucci Oblonczyk",
  892. "email": "lcobucci@gmail.com",
  893. "role": "Developer"
  894. }
  895. ],
  896. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  897. "keywords": [
  898. "JWS",
  899. "jwt"
  900. ],
  901. "support": {
  902. "issues": "https://github.com/lcobucci/jwt/issues",
  903. "source": "https://github.com/lcobucci/jwt/tree/3.3"
  904. },
  905. "time": "2019-05-24T18:30:49+00:00"
  906. },
  907. {
  908. "name": "league/oauth2-client",
  909. "version": "2.6.0",
  910. "source": {
  911. "type": "git",
  912. "url": "https://github.com/thephpleague/oauth2-client.git",
  913. "reference": "badb01e62383430706433191b82506b6df24ad98"
  914. },
  915. "dist": {
  916. "type": "zip",
  917. "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98",
  918. "reference": "badb01e62383430706433191b82506b6df24ad98",
  919. "shasum": ""
  920. },
  921. "require": {
  922. "guzzlehttp/guzzle": "^7.0",
  923. "paragonie/random_compat": "^1 || ^2 || ^9.99",
  924. "php": "^5.6 || ^7.0 || ^8.0"
  925. },
  926. "require-dev": {
  927. "mockery/mockery": "^1.3",
  928. "php-parallel-lint/php-parallel-lint": "^1.2",
  929. "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3",
  930. "squizlabs/php_codesniffer": "^2.3 || ^3.0"
  931. },
  932. "type": "library",
  933. "extra": {
  934. "branch-alias": {
  935. "dev-2.x": "2.0.x-dev"
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "League\\OAuth2\\Client\\": "src/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Alex Bilbie",
  950. "email": "hello@alexbilbie.com",
  951. "homepage": "http://www.alexbilbie.com",
  952. "role": "Developer"
  953. },
  954. {
  955. "name": "Woody Gilk",
  956. "homepage": "https://github.com/shadowhand",
  957. "role": "Contributor"
  958. }
  959. ],
  960. "description": "OAuth 2.0 Client Library",
  961. "keywords": [
  962. "Authentication",
  963. "SSO",
  964. "authorization",
  965. "identity",
  966. "idp",
  967. "oauth",
  968. "oauth2",
  969. "single sign on"
  970. ],
  971. "support": {
  972. "issues": "https://github.com/thephpleague/oauth2-client/issues",
  973. "source": "https://github.com/thephpleague/oauth2-client/tree/2.6.0"
  974. },
  975. "time": "2020-10-28T02:03:40+00:00"
  976. },
  977. {
  978. "name": "myclabs/php-enum",
  979. "version": "1.8.0",
  980. "source": {
  981. "type": "git",
  982. "url": "https://github.com/myclabs/php-enum.git",
  983. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  984. },
  985. "dist": {
  986. "type": "zip",
  987. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  988. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  989. "shasum": ""
  990. },
  991. "require": {
  992. "ext-json": "*",
  993. "php": "^7.3 || ^8.0"
  994. },
  995. "require-dev": {
  996. "phpunit/phpunit": "^9.5",
  997. "squizlabs/php_codesniffer": "1.*",
  998. "vimeo/psalm": "^4.5.1"
  999. },
  1000. "type": "library",
  1001. "autoload": {
  1002. "psr-4": {
  1003. "MyCLabs\\Enum\\": "src/"
  1004. }
  1005. },
  1006. "notification-url": "https://packagist.org/downloads/",
  1007. "license": [
  1008. "MIT"
  1009. ],
  1010. "authors": [
  1011. {
  1012. "name": "PHP Enum contributors",
  1013. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1014. }
  1015. ],
  1016. "description": "PHP Enum implementation",
  1017. "homepage": "http://github.com/myclabs/php-enum",
  1018. "keywords": [
  1019. "enum"
  1020. ],
  1021. "support": {
  1022. "issues": "https://github.com/myclabs/php-enum/issues",
  1023. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  1024. },
  1025. "funding": [
  1026. {
  1027. "url": "https://github.com/mnapoli",
  1028. "type": "github"
  1029. },
  1030. {
  1031. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1032. "type": "tidelift"
  1033. }
  1034. ],
  1035. "time": "2021-02-15T16:11:48+00:00"
  1036. },
  1037. {
  1038. "name": "nikic/fast-route",
  1039. "version": "v1.3.0",
  1040. "source": {
  1041. "type": "git",
  1042. "url": "https://github.com/nikic/FastRoute.git",
  1043. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1044. },
  1045. "dist": {
  1046. "type": "zip",
  1047. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1048. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1049. "shasum": ""
  1050. },
  1051. "require": {
  1052. "php": ">=5.4.0"
  1053. },
  1054. "require-dev": {
  1055. "phpunit/phpunit": "^4.8.35|~5.7"
  1056. },
  1057. "type": "library",
  1058. "autoload": {
  1059. "psr-4": {
  1060. "FastRoute\\": "src/"
  1061. },
  1062. "files": [
  1063. "src/functions.php"
  1064. ]
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "BSD-3-Clause"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Nikita Popov",
  1073. "email": "nikic@php.net"
  1074. }
  1075. ],
  1076. "description": "Fast request router for PHP",
  1077. "keywords": [
  1078. "router",
  1079. "routing"
  1080. ],
  1081. "support": {
  1082. "issues": "https://github.com/nikic/FastRoute/issues",
  1083. "source": "https://github.com/nikic/FastRoute/tree/master"
  1084. },
  1085. "time": "2018-02-13T20:26:39+00:00"
  1086. },
  1087. {
  1088. "name": "paquettg/php-html-parser",
  1089. "version": "3.1.1",
  1090. "source": {
  1091. "type": "git",
  1092. "url": "https://github.com/paquettg/php-html-parser.git",
  1093. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629"
  1094. },
  1095. "dist": {
  1096. "type": "zip",
  1097. "url": "https://api.github.com/repos/paquettg/php-html-parser/zipball/4e01a438ad5961cc2d7427eb9798d213c8a12629",
  1098. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629",
  1099. "shasum": ""
  1100. },
  1101. "require": {
  1102. "ext-curl": "*",
  1103. "ext-mbstring": "*",
  1104. "ext-zlib": "*",
  1105. "guzzlehttp/guzzle": "^7.0",
  1106. "guzzlehttp/psr7": "^1.6",
  1107. "myclabs/php-enum": "^1.7",
  1108. "paquettg/string-encode": "~1.0.0",
  1109. "php": ">=7.2",
  1110. "php-http/httplug": "^2.1"
  1111. },
  1112. "require-dev": {
  1113. "friendsofphp/php-cs-fixer": "^2.16",
  1114. "infection/infection": "^0.13.4",
  1115. "mockery/mockery": "^1.2",
  1116. "phan/phan": "^2.4",
  1117. "phpunit/phpunit": "^7.5.1"
  1118. },
  1119. "type": "library",
  1120. "autoload": {
  1121. "psr-4": {
  1122. "PHPHtmlParser\\": "src/PHPHtmlParser"
  1123. }
  1124. },
  1125. "notification-url": "https://packagist.org/downloads/",
  1126. "license": [
  1127. "MIT"
  1128. ],
  1129. "authors": [
  1130. {
  1131. "name": "Gilles Paquette",
  1132. "email": "paquettg@gmail.com",
  1133. "homepage": "http://gillespaquette.ca"
  1134. }
  1135. ],
  1136. "description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
  1137. "homepage": "https://github.com/paquettg/php-html-parser",
  1138. "keywords": [
  1139. "dom",
  1140. "html",
  1141. "parser"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/paquettg/php-html-parser/issues",
  1145. "source": "https://github.com/paquettg/php-html-parser/tree/3.1.1"
  1146. },
  1147. "funding": [
  1148. {
  1149. "url": "https://tidelift.com/funding/github/packagist/paquettg/php-html-parser",
  1150. "type": "tidelift"
  1151. }
  1152. ],
  1153. "time": "2020-11-01T20:34:43+00:00"
  1154. },
  1155. {
  1156. "name": "paquettg/string-encode",
  1157. "version": "1.0.1",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/paquettg/string-encoder.git",
  1161. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/paquettg/string-encoder/zipball/a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  1166. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  1167. "shasum": ""
  1168. },
  1169. "require": {
  1170. "php": ">=7.1"
  1171. },
  1172. "require-dev": {
  1173. "phpunit/phpunit": "^7.5.1"
  1174. },
  1175. "type": "library",
  1176. "autoload": {
  1177. "psr-0": {
  1178. "stringEncode": "src/"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Gilles Paquette",
  1188. "email": "paquettg@gmail.com",
  1189. "homepage": "http://gillespaquette.ca"
  1190. }
  1191. ],
  1192. "description": "Facilitating the process of altering string encoding in PHP.",
  1193. "homepage": "https://github.com/paquettg/string-encoder",
  1194. "keywords": [
  1195. "charset",
  1196. "encoding",
  1197. "string"
  1198. ],
  1199. "support": {
  1200. "issues": "https://github.com/paquettg/string-encoder/issues",
  1201. "source": "https://github.com/paquettg/string-encoder/tree/1.0.1"
  1202. },
  1203. "time": "2018-12-21T02:25:09+00:00"
  1204. },
  1205. {
  1206. "name": "paragonie/constant_time_encoding",
  1207. "version": "v2.2.2",
  1208. "source": {
  1209. "type": "git",
  1210. "url": "https://github.com/paragonie/constant_time_encoding.git",
  1211. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33"
  1212. },
  1213. "dist": {
  1214. "type": "zip",
  1215. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  1216. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  1217. "shasum": ""
  1218. },
  1219. "require": {
  1220. "php": "^7"
  1221. },
  1222. "require-dev": {
  1223. "phpunit/phpunit": "^6|^7",
  1224. "vimeo/psalm": "^1"
  1225. },
  1226. "type": "library",
  1227. "autoload": {
  1228. "psr-4": {
  1229. "ParagonIE\\ConstantTime\\": "src/"
  1230. }
  1231. },
  1232. "notification-url": "https://packagist.org/downloads/",
  1233. "license": [
  1234. "MIT"
  1235. ],
  1236. "authors": [
  1237. {
  1238. "name": "Paragon Initiative Enterprises",
  1239. "email": "security@paragonie.com",
  1240. "homepage": "https://paragonie.com",
  1241. "role": "Maintainer"
  1242. },
  1243. {
  1244. "name": "Steve 'Sc00bz' Thomas",
  1245. "email": "steve@tobtu.com",
  1246. "homepage": "https://www.tobtu.com",
  1247. "role": "Original Developer"
  1248. }
  1249. ],
  1250. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  1251. "keywords": [
  1252. "base16",
  1253. "base32",
  1254. "base32_decode",
  1255. "base32_encode",
  1256. "base64",
  1257. "base64_decode",
  1258. "base64_encode",
  1259. "bin2hex",
  1260. "encoding",
  1261. "hex",
  1262. "hex2bin",
  1263. "rfc4648"
  1264. ],
  1265. "time": "2018-03-10T19:47:49+00:00"
  1266. },
  1267. {
  1268. "name": "paragonie/random_compat",
  1269. "version": "v9.99.100",
  1270. "source": {
  1271. "type": "git",
  1272. "url": "https://github.com/paragonie/random_compat.git",
  1273. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1274. },
  1275. "dist": {
  1276. "type": "zip",
  1277. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1278. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1279. "shasum": ""
  1280. },
  1281. "require": {
  1282. "php": ">= 7"
  1283. },
  1284. "require-dev": {
  1285. "phpunit/phpunit": "4.*|5.*",
  1286. "vimeo/psalm": "^1"
  1287. },
  1288. "suggest": {
  1289. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1290. },
  1291. "type": "library",
  1292. "notification-url": "https://packagist.org/downloads/",
  1293. "license": [
  1294. "MIT"
  1295. ],
  1296. "authors": [
  1297. {
  1298. "name": "Paragon Initiative Enterprises",
  1299. "email": "security@paragonie.com",
  1300. "homepage": "https://paragonie.com"
  1301. }
  1302. ],
  1303. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1304. "keywords": [
  1305. "csprng",
  1306. "polyfill",
  1307. "pseudorandom",
  1308. "random"
  1309. ],
  1310. "support": {
  1311. "email": "info@paragonie.com",
  1312. "issues": "https://github.com/paragonie/random_compat/issues",
  1313. "source": "https://github.com/paragonie/random_compat"
  1314. },
  1315. "time": "2020-10-15T08:29:30+00:00"
  1316. },
  1317. {
  1318. "name": "paragonie/sodium_compat",
  1319. "version": "v1.6.4",
  1320. "source": {
  1321. "type": "git",
  1322. "url": "https://github.com/paragonie/sodium_compat.git",
  1323. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c"
  1324. },
  1325. "dist": {
  1326. "type": "zip",
  1327. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/3f2fd07977541b4d630ea0365ad0eceddee5179c",
  1328. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c",
  1329. "shasum": ""
  1330. },
  1331. "require": {
  1332. "paragonie/random_compat": ">=1",
  1333. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7"
  1334. },
  1335. "require-dev": {
  1336. "phpunit/phpunit": "^3|^4|^5"
  1337. },
  1338. "suggest": {
  1339. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  1340. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  1341. },
  1342. "type": "library",
  1343. "autoload": {
  1344. "files": [
  1345. "autoload.php"
  1346. ]
  1347. },
  1348. "notification-url": "https://packagist.org/downloads/",
  1349. "license": [
  1350. "ISC"
  1351. ],
  1352. "authors": [
  1353. {
  1354. "name": "Paragon Initiative Enterprises",
  1355. "email": "security@paragonie.com"
  1356. },
  1357. {
  1358. "name": "Frank Denis",
  1359. "email": "jedisct1@pureftpd.org"
  1360. }
  1361. ],
  1362. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  1363. "keywords": [
  1364. "Authentication",
  1365. "BLAKE2b",
  1366. "ChaCha20",
  1367. "ChaCha20-Poly1305",
  1368. "Chapoly",
  1369. "Curve25519",
  1370. "Ed25519",
  1371. "EdDSA",
  1372. "Edwards-curve Digital Signature Algorithm",
  1373. "Elliptic Curve Diffie-Hellman",
  1374. "Poly1305",
  1375. "Pure-PHP cryptography",
  1376. "RFC 7748",
  1377. "RFC 8032",
  1378. "Salpoly",
  1379. "Salsa20",
  1380. "X25519",
  1381. "XChaCha20-Poly1305",
  1382. "XSalsa20-Poly1305",
  1383. "Xchacha20",
  1384. "Xsalsa20",
  1385. "aead",
  1386. "cryptography",
  1387. "ecdh",
  1388. "elliptic curve",
  1389. "elliptic curve cryptography",
  1390. "encryption",
  1391. "libsodium",
  1392. "php",
  1393. "public-key cryptography",
  1394. "secret-key cryptography",
  1395. "side-channel resistant"
  1396. ],
  1397. "time": "2018-08-29T22:02:48+00:00"
  1398. },
  1399. {
  1400. "name": "php-http/httplug",
  1401. "version": "2.2.0",
  1402. "source": {
  1403. "type": "git",
  1404. "url": "https://github.com/php-http/httplug.git",
  1405. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9"
  1406. },
  1407. "dist": {
  1408. "type": "zip",
  1409. "url": "https://api.github.com/repos/php-http/httplug/zipball/191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  1410. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  1411. "shasum": ""
  1412. },
  1413. "require": {
  1414. "php": "^7.1 || ^8.0",
  1415. "php-http/promise": "^1.1",
  1416. "psr/http-client": "^1.0",
  1417. "psr/http-message": "^1.0"
  1418. },
  1419. "require-dev": {
  1420. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  1421. "phpspec/phpspec": "^5.1 || ^6.0"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "2.x-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "psr-4": {
  1431. "Http\\Client\\": "src/"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Eric GELOEN",
  1441. "email": "geloen.eric@gmail.com"
  1442. },
  1443. {
  1444. "name": "Márk Sági-Kazár",
  1445. "email": "mark.sagikazar@gmail.com",
  1446. "homepage": "https://sagikazarmark.hu"
  1447. }
  1448. ],
  1449. "description": "HTTPlug, the HTTP client abstraction for PHP",
  1450. "homepage": "http://httplug.io",
  1451. "keywords": [
  1452. "client",
  1453. "http"
  1454. ],
  1455. "support": {
  1456. "issues": "https://github.com/php-http/httplug/issues",
  1457. "source": "https://github.com/php-http/httplug/tree/master"
  1458. },
  1459. "time": "2020-07-13T15:43:23+00:00"
  1460. },
  1461. {
  1462. "name": "php-http/promise",
  1463. "version": "1.1.0",
  1464. "source": {
  1465. "type": "git",
  1466. "url": "https://github.com/php-http/promise.git",
  1467. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  1468. },
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  1472. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "php": "^7.1 || ^8.0"
  1477. },
  1478. "require-dev": {
  1479. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  1480. "phpspec/phpspec": "^5.1.2 || ^6.2"
  1481. },
  1482. "type": "library",
  1483. "extra": {
  1484. "branch-alias": {
  1485. "dev-master": "1.1-dev"
  1486. }
  1487. },
  1488. "autoload": {
  1489. "psr-4": {
  1490. "Http\\Promise\\": "src/"
  1491. }
  1492. },
  1493. "notification-url": "https://packagist.org/downloads/",
  1494. "license": [
  1495. "MIT"
  1496. ],
  1497. "authors": [
  1498. {
  1499. "name": "Joel Wurtz",
  1500. "email": "joel.wurtz@gmail.com"
  1501. },
  1502. {
  1503. "name": "Márk Sági-Kazár",
  1504. "email": "mark.sagikazar@gmail.com"
  1505. }
  1506. ],
  1507. "description": "Promise used for asynchronous HTTP requests",
  1508. "homepage": "http://httplug.io",
  1509. "keywords": [
  1510. "promise"
  1511. ],
  1512. "support": {
  1513. "issues": "https://github.com/php-http/promise/issues",
  1514. "source": "https://github.com/php-http/promise/tree/1.1.0"
  1515. },
  1516. "time": "2020-07-07T09:29:14+00:00"
  1517. },
  1518. {
  1519. "name": "phpmailer/phpmailer",
  1520. "version": "v6.5.0",
  1521. "source": {
  1522. "type": "git",
  1523. "url": "https://github.com/PHPMailer/PHPMailer.git",
  1524. "reference": "a5b5c43e50b7fba655f793ad27303cd74c57363c"
  1525. },
  1526. "dist": {
  1527. "type": "zip",
  1528. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/a5b5c43e50b7fba655f793ad27303cd74c57363c",
  1529. "reference": "a5b5c43e50b7fba655f793ad27303cd74c57363c",
  1530. "shasum": ""
  1531. },
  1532. "require": {
  1533. "ext-ctype": "*",
  1534. "ext-filter": "*",
  1535. "ext-hash": "*",
  1536. "php": ">=5.5.0"
  1537. },
  1538. "require-dev": {
  1539. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1540. "doctrine/annotations": "^1.2",
  1541. "phpcompatibility/php-compatibility": "^9.3.5",
  1542. "roave/security-advisories": "dev-latest",
  1543. "squizlabs/php_codesniffer": "^3.5.6",
  1544. "yoast/phpunit-polyfills": "^0.2.0"
  1545. },
  1546. "suggest": {
  1547. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  1548. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  1549. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  1550. "psr/log": "For optional PSR-3 debug logging",
  1551. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  1552. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  1553. },
  1554. "type": "library",
  1555. "autoload": {
  1556. "psr-4": {
  1557. "PHPMailer\\PHPMailer\\": "src/"
  1558. }
  1559. },
  1560. "notification-url": "https://packagist.org/downloads/",
  1561. "license": [
  1562. "LGPL-2.1-only"
  1563. ],
  1564. "authors": [
  1565. {
  1566. "name": "Marcus Bointon",
  1567. "email": "phpmailer@synchromedia.co.uk"
  1568. },
  1569. {
  1570. "name": "Jim Jagielski",
  1571. "email": "jimjag@gmail.com"
  1572. },
  1573. {
  1574. "name": "Andy Prevost",
  1575. "email": "codeworxtech@users.sourceforge.net"
  1576. },
  1577. {
  1578. "name": "Brent R. Matzelle"
  1579. }
  1580. ],
  1581. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  1582. "support": {
  1583. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  1584. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.0"
  1585. },
  1586. "funding": [
  1587. {
  1588. "url": "https://github.com/Synchro",
  1589. "type": "github"
  1590. }
  1591. ],
  1592. "time": "2021-06-16T14:33:43+00:00"
  1593. },
  1594. {
  1595. "name": "pragmarx/google2fa",
  1596. "version": "v3.0.3",
  1597. "source": {
  1598. "type": "git",
  1599. "url": "https://github.com/antonioribeiro/google2fa.git",
  1600. "reference": "6949226739e4424f40031e6f1c96b1fd64047335"
  1601. },
  1602. "dist": {
  1603. "type": "zip",
  1604. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6949226739e4424f40031e6f1c96b1fd64047335",
  1605. "reference": "6949226739e4424f40031e6f1c96b1fd64047335",
  1606. "shasum": ""
  1607. },
  1608. "require": {
  1609. "paragonie/constant_time_encoding": "~1.0|~2.0",
  1610. "paragonie/random_compat": ">=1",
  1611. "php": ">=5.4",
  1612. "symfony/polyfill-php56": "~1.2"
  1613. },
  1614. "require-dev": {
  1615. "bacon/bacon-qr-code": "~1.0",
  1616. "phpunit/phpunit": "~4|~5|~6"
  1617. },
  1618. "suggest": {
  1619. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  1620. },
  1621. "type": "library",
  1622. "extra": {
  1623. "component": "package",
  1624. "branch-alias": {
  1625. "dev-master": "2.0-dev"
  1626. }
  1627. },
  1628. "autoload": {
  1629. "psr-4": {
  1630. "PragmaRX\\Google2FA\\": "src/",
  1631. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  1632. }
  1633. },
  1634. "notification-url": "https://packagist.org/downloads/",
  1635. "license": [
  1636. "MIT"
  1637. ],
  1638. "authors": [
  1639. {
  1640. "name": "Antonio Carlos Ribeiro",
  1641. "email": "acr@antoniocarlosribeiro.com",
  1642. "role": "Creator & Designer"
  1643. }
  1644. ],
  1645. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  1646. "keywords": [
  1647. "2fa",
  1648. "Authentication",
  1649. "Two Factor Authentication",
  1650. "google2fa",
  1651. "laravel"
  1652. ],
  1653. "time": "2018-08-29T13:28:06+00:00"
  1654. },
  1655. {
  1656. "name": "psr/container",
  1657. "version": "1.1.1",
  1658. "source": {
  1659. "type": "git",
  1660. "url": "https://github.com/php-fig/container.git",
  1661. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1662. },
  1663. "dist": {
  1664. "type": "zip",
  1665. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1666. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1667. "shasum": ""
  1668. },
  1669. "require": {
  1670. "php": ">=7.2.0"
  1671. },
  1672. "type": "library",
  1673. "autoload": {
  1674. "psr-4": {
  1675. "Psr\\Container\\": "src/"
  1676. }
  1677. },
  1678. "notification-url": "https://packagist.org/downloads/",
  1679. "license": [
  1680. "MIT"
  1681. ],
  1682. "authors": [
  1683. {
  1684. "name": "PHP-FIG",
  1685. "homepage": "https://www.php-fig.org/"
  1686. }
  1687. ],
  1688. "description": "Common Container Interface (PHP FIG PSR-11)",
  1689. "homepage": "https://github.com/php-fig/container",
  1690. "keywords": [
  1691. "PSR-11",
  1692. "container",
  1693. "container-interface",
  1694. "container-interop",
  1695. "psr"
  1696. ],
  1697. "support": {
  1698. "issues": "https://github.com/php-fig/container/issues",
  1699. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1700. },
  1701. "time": "2021-03-05T17:36:06+00:00"
  1702. },
  1703. {
  1704. "name": "psr/http-client",
  1705. "version": "1.0.1",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/php-fig/http-client.git",
  1709. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1714. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "php": "^7.0 || ^8.0",
  1719. "psr/http-message": "^1.0"
  1720. },
  1721. "type": "library",
  1722. "extra": {
  1723. "branch-alias": {
  1724. "dev-master": "1.0.x-dev"
  1725. }
  1726. },
  1727. "autoload": {
  1728. "psr-4": {
  1729. "Psr\\Http\\Client\\": "src/"
  1730. }
  1731. },
  1732. "notification-url": "https://packagist.org/downloads/",
  1733. "license": [
  1734. "MIT"
  1735. ],
  1736. "authors": [
  1737. {
  1738. "name": "PHP-FIG",
  1739. "homepage": "http://www.php-fig.org/"
  1740. }
  1741. ],
  1742. "description": "Common interface for HTTP clients",
  1743. "homepage": "https://github.com/php-fig/http-client",
  1744. "keywords": [
  1745. "http",
  1746. "http-client",
  1747. "psr",
  1748. "psr-18"
  1749. ],
  1750. "support": {
  1751. "source": "https://github.com/php-fig/http-client/tree/master"
  1752. },
  1753. "time": "2020-06-29T06:28:15+00:00"
  1754. },
  1755. {
  1756. "name": "psr/http-factory",
  1757. "version": "1.0.1",
  1758. "source": {
  1759. "type": "git",
  1760. "url": "https://github.com/php-fig/http-factory.git",
  1761. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1762. },
  1763. "dist": {
  1764. "type": "zip",
  1765. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1766. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1767. "shasum": ""
  1768. },
  1769. "require": {
  1770. "php": ">=7.0.0",
  1771. "psr/http-message": "^1.0"
  1772. },
  1773. "type": "library",
  1774. "extra": {
  1775. "branch-alias": {
  1776. "dev-master": "1.0.x-dev"
  1777. }
  1778. },
  1779. "autoload": {
  1780. "psr-4": {
  1781. "Psr\\Http\\Message\\": "src/"
  1782. }
  1783. },
  1784. "notification-url": "https://packagist.org/downloads/",
  1785. "license": [
  1786. "MIT"
  1787. ],
  1788. "authors": [
  1789. {
  1790. "name": "PHP-FIG",
  1791. "homepage": "http://www.php-fig.org/"
  1792. }
  1793. ],
  1794. "description": "Common interfaces for PSR-7 HTTP message factories",
  1795. "keywords": [
  1796. "factory",
  1797. "http",
  1798. "message",
  1799. "psr",
  1800. "psr-17",
  1801. "psr-7",
  1802. "request",
  1803. "response"
  1804. ],
  1805. "support": {
  1806. "source": "https://github.com/php-fig/http-factory/tree/master"
  1807. },
  1808. "time": "2019-04-30T12:38:16+00:00"
  1809. },
  1810. {
  1811. "name": "psr/http-message",
  1812. "version": "1.0.1",
  1813. "source": {
  1814. "type": "git",
  1815. "url": "https://github.com/php-fig/http-message.git",
  1816. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1817. },
  1818. "dist": {
  1819. "type": "zip",
  1820. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1821. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1822. "shasum": ""
  1823. },
  1824. "require": {
  1825. "php": ">=5.3.0"
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "1.0.x-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "psr-4": {
  1835. "Psr\\Http\\Message\\": "src/"
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "PHP-FIG",
  1845. "homepage": "http://www.php-fig.org/"
  1846. }
  1847. ],
  1848. "description": "Common interface for HTTP messages",
  1849. "homepage": "https://github.com/php-fig/http-message",
  1850. "keywords": [
  1851. "http",
  1852. "http-message",
  1853. "psr",
  1854. "psr-7",
  1855. "request",
  1856. "response"
  1857. ],
  1858. "support": {
  1859. "source": "https://github.com/php-fig/http-message/tree/master"
  1860. },
  1861. "time": "2016-08-06T14:39:51+00:00"
  1862. },
  1863. {
  1864. "name": "psr/http-server-handler",
  1865. "version": "1.0.1",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/php-fig/http-server-handler.git",
  1869. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1874. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "php": ">=7.0",
  1879. "psr/http-message": "^1.0"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "branch-alias": {
  1884. "dev-master": "1.0.x-dev"
  1885. }
  1886. },
  1887. "autoload": {
  1888. "psr-4": {
  1889. "Psr\\Http\\Server\\": "src/"
  1890. }
  1891. },
  1892. "notification-url": "https://packagist.org/downloads/",
  1893. "license": [
  1894. "MIT"
  1895. ],
  1896. "authors": [
  1897. {
  1898. "name": "PHP-FIG",
  1899. "homepage": "http://www.php-fig.org/"
  1900. }
  1901. ],
  1902. "description": "Common interface for HTTP server-side request handler",
  1903. "keywords": [
  1904. "handler",
  1905. "http",
  1906. "http-interop",
  1907. "psr",
  1908. "psr-15",
  1909. "psr-7",
  1910. "request",
  1911. "response",
  1912. "server"
  1913. ],
  1914. "support": {
  1915. "issues": "https://github.com/php-fig/http-server-handler/issues",
  1916. "source": "https://github.com/php-fig/http-server-handler/tree/master"
  1917. },
  1918. "time": "2018-10-30T16:46:14+00:00"
  1919. },
  1920. {
  1921. "name": "psr/http-server-middleware",
  1922. "version": "1.0.1",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/php-fig/http-server-middleware.git",
  1926. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1931. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1932. "shasum": ""
  1933. },
  1934. "require": {
  1935. "php": ">=7.0",
  1936. "psr/http-message": "^1.0",
  1937. "psr/http-server-handler": "^1.0"
  1938. },
  1939. "type": "library",
  1940. "extra": {
  1941. "branch-alias": {
  1942. "dev-master": "1.0.x-dev"
  1943. }
  1944. },
  1945. "autoload": {
  1946. "psr-4": {
  1947. "Psr\\Http\\Server\\": "src/"
  1948. }
  1949. },
  1950. "notification-url": "https://packagist.org/downloads/",
  1951. "license": [
  1952. "MIT"
  1953. ],
  1954. "authors": [
  1955. {
  1956. "name": "PHP-FIG",
  1957. "homepage": "http://www.php-fig.org/"
  1958. }
  1959. ],
  1960. "description": "Common interface for HTTP server-side middleware",
  1961. "keywords": [
  1962. "http",
  1963. "http-interop",
  1964. "middleware",
  1965. "psr",
  1966. "psr-15",
  1967. "psr-7",
  1968. "request",
  1969. "response"
  1970. ],
  1971. "support": {
  1972. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  1973. "source": "https://github.com/php-fig/http-server-middleware/tree/master"
  1974. },
  1975. "time": "2018-10-30T17:12:04+00:00"
  1976. },
  1977. {
  1978. "name": "psr/log",
  1979. "version": "1.1.4",
  1980. "source": {
  1981. "type": "git",
  1982. "url": "https://github.com/php-fig/log.git",
  1983. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  1984. },
  1985. "dist": {
  1986. "type": "zip",
  1987. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  1988. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1989. "shasum": ""
  1990. },
  1991. "require": {
  1992. "php": ">=5.3.0"
  1993. },
  1994. "type": "library",
  1995. "extra": {
  1996. "branch-alias": {
  1997. "dev-master": "1.1.x-dev"
  1998. }
  1999. },
  2000. "autoload": {
  2001. "psr-4": {
  2002. "Psr\\Log\\": "Psr/Log/"
  2003. }
  2004. },
  2005. "notification-url": "https://packagist.org/downloads/",
  2006. "license": [
  2007. "MIT"
  2008. ],
  2009. "authors": [
  2010. {
  2011. "name": "PHP-FIG",
  2012. "homepage": "https://www.php-fig.org/"
  2013. }
  2014. ],
  2015. "description": "Common interface for logging libraries",
  2016. "homepage": "https://github.com/php-fig/log",
  2017. "keywords": [
  2018. "log",
  2019. "psr",
  2020. "psr-3"
  2021. ],
  2022. "support": {
  2023. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2024. },
  2025. "time": "2021-05-03T11:20:27+00:00"
  2026. },
  2027. {
  2028. "name": "psr/simple-cache",
  2029. "version": "1.0.1",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://github.com/php-fig/simple-cache.git",
  2033. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2038. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2039. "shasum": ""
  2040. },
  2041. "require": {
  2042. "php": ">=5.3.0"
  2043. },
  2044. "type": "library",
  2045. "extra": {
  2046. "branch-alias": {
  2047. "dev-master": "1.0.x-dev"
  2048. }
  2049. },
  2050. "autoload": {
  2051. "psr-4": {
  2052. "Psr\\SimpleCache\\": "src/"
  2053. }
  2054. },
  2055. "notification-url": "https://packagist.org/downloads/",
  2056. "license": [
  2057. "MIT"
  2058. ],
  2059. "authors": [
  2060. {
  2061. "name": "PHP-FIG",
  2062. "homepage": "http://www.php-fig.org/"
  2063. }
  2064. ],
  2065. "description": "Common interfaces for simple caching",
  2066. "keywords": [
  2067. "cache",
  2068. "caching",
  2069. "psr",
  2070. "psr-16",
  2071. "simple-cache"
  2072. ],
  2073. "time": "2017-10-23T01:57:42+00:00"
  2074. },
  2075. {
  2076. "name": "pusher/pusher-php-server",
  2077. "version": "v4.1.5",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/pusher/pusher-http-php.git",
  2081. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  2086. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "ext-curl": "*",
  2091. "paragonie/sodium_compat": "^1.6",
  2092. "php": "^7.1|^8.0",
  2093. "psr/log": "^1.0"
  2094. },
  2095. "require-dev": {
  2096. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  2097. },
  2098. "type": "library",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-master": "3.4-dev"
  2102. }
  2103. },
  2104. "autoload": {
  2105. "psr-4": {
  2106. "Pusher\\": "src/"
  2107. }
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "description": "Library for interacting with the Pusher REST API",
  2114. "keywords": [
  2115. "events",
  2116. "messaging",
  2117. "php-pusher-server",
  2118. "publish",
  2119. "push",
  2120. "pusher",
  2121. "real time",
  2122. "real-time",
  2123. "realtime",
  2124. "rest",
  2125. "trigger"
  2126. ],
  2127. "support": {
  2128. "issues": "https://github.com/pusher/pusher-http-php/issues",
  2129. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  2130. },
  2131. "time": "2020-12-09T09:38:19+00:00"
  2132. },
  2133. {
  2134. "name": "ralouphie/getallheaders",
  2135. "version": "3.0.3",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/ralouphie/getallheaders.git",
  2139. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2144. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "php": ">=5.6"
  2149. },
  2150. "require-dev": {
  2151. "php-coveralls/php-coveralls": "^2.1",
  2152. "phpunit/phpunit": "^5 || ^6.5"
  2153. },
  2154. "type": "library",
  2155. "autoload": {
  2156. "files": [
  2157. "src/getallheaders.php"
  2158. ]
  2159. },
  2160. "notification-url": "https://packagist.org/downloads/",
  2161. "license": [
  2162. "MIT"
  2163. ],
  2164. "authors": [
  2165. {
  2166. "name": "Ralph Khattar",
  2167. "email": "ralph.khattar@gmail.com"
  2168. }
  2169. ],
  2170. "description": "A polyfill for getallheaders.",
  2171. "support": {
  2172. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2173. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2174. },
  2175. "time": "2019-03-08T08:55:37+00:00"
  2176. },
  2177. {
  2178. "name": "rmccue/requests",
  2179. "version": "v1.8.0",
  2180. "source": {
  2181. "type": "git",
  2182. "url": "https://github.com/WordPress/Requests.git",
  2183. "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1"
  2184. },
  2185. "dist": {
  2186. "type": "zip",
  2187. "url": "https://api.github.com/repos/WordPress/Requests/zipball/afbe4790e4def03581c4a0963a1e8aa01f6030f1",
  2188. "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1",
  2189. "shasum": ""
  2190. },
  2191. "require": {
  2192. "php": ">=5.2"
  2193. },
  2194. "require-dev": {
  2195. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  2196. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  2197. "php-parallel-lint/php-parallel-lint": "^1.3",
  2198. "phpcompatibility/php-compatibility": "^9.0",
  2199. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  2200. "requests/test-server": "dev-master",
  2201. "squizlabs/php_codesniffer": "^3.5",
  2202. "wp-coding-standards/wpcs": "^2.0"
  2203. },
  2204. "type": "library",
  2205. "autoload": {
  2206. "psr-0": {
  2207. "Requests": "library/"
  2208. }
  2209. },
  2210. "notification-url": "https://packagist.org/downloads/",
  2211. "license": [
  2212. "ISC"
  2213. ],
  2214. "authors": [
  2215. {
  2216. "name": "Ryan McCue",
  2217. "homepage": "http://ryanmccue.info"
  2218. }
  2219. ],
  2220. "description": "A HTTP library written in PHP, for human beings.",
  2221. "homepage": "http://github.com/WordPress/Requests",
  2222. "keywords": [
  2223. "curl",
  2224. "fsockopen",
  2225. "http",
  2226. "idna",
  2227. "ipv6",
  2228. "iri",
  2229. "sockets"
  2230. ],
  2231. "support": {
  2232. "issues": "https://github.com/WordPress/Requests/issues",
  2233. "source": "https://github.com/WordPress/Requests/tree/v1.8.0"
  2234. },
  2235. "time": "2021-04-27T11:05:25+00:00"
  2236. },
  2237. {
  2238. "name": "slim/psr7",
  2239. "version": "1.3.0",
  2240. "source": {
  2241. "type": "git",
  2242. "url": "https://github.com/slimphp/Slim-Psr7.git",
  2243. "reference": "235d2e5a5ee1ad4b97b96870f37f3091b22fffd7"
  2244. },
  2245. "dist": {
  2246. "type": "zip",
  2247. "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/235d2e5a5ee1ad4b97b96870f37f3091b22fffd7",
  2248. "reference": "235d2e5a5ee1ad4b97b96870f37f3091b22fffd7",
  2249. "shasum": ""
  2250. },
  2251. "require": {
  2252. "fig/http-message-util": "^1.1.4",
  2253. "php": "^7.2 || ^8.0",
  2254. "psr/http-factory": "^1.0",
  2255. "psr/http-message": "^1.0",
  2256. "ralouphie/getallheaders": "^3",
  2257. "symfony/polyfill-php80": "^1.18"
  2258. },
  2259. "provide": {
  2260. "psr/http-factory-implementation": "1.0",
  2261. "psr/http-message-implementation": "1.0"
  2262. },
  2263. "require-dev": {
  2264. "adriansuter/php-autoload-override": "^1.2",
  2265. "ext-json": "*",
  2266. "http-interop/http-factory-tests": "^0.7.0",
  2267. "php-http/psr7-integration-tests": "dev-master",
  2268. "phpstan/phpstan": "^0.12",
  2269. "phpunit/phpunit": "^8.5 || ^9.3",
  2270. "squizlabs/php_codesniffer": "^3.5",
  2271. "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
  2272. },
  2273. "type": "library",
  2274. "autoload": {
  2275. "psr-4": {
  2276. "Slim\\Psr7\\": "src"
  2277. }
  2278. },
  2279. "notification-url": "https://packagist.org/downloads/",
  2280. "license": [
  2281. "MIT"
  2282. ],
  2283. "authors": [
  2284. {
  2285. "name": "Josh Lockhart",
  2286. "email": "hello@joshlockhart.com",
  2287. "homepage": "http://joshlockhart.com"
  2288. },
  2289. {
  2290. "name": "Andrew Smith",
  2291. "email": "a.smith@silentworks.co.uk",
  2292. "homepage": "http://silentworks.co.uk"
  2293. },
  2294. {
  2295. "name": "Rob Allen",
  2296. "email": "rob@akrabat.com",
  2297. "homepage": "http://akrabat.com"
  2298. },
  2299. {
  2300. "name": "Pierre Berube",
  2301. "email": "pierre@lgse.com",
  2302. "homepage": "http://www.lgse.com"
  2303. }
  2304. ],
  2305. "description": "Strict PSR-7 implementation",
  2306. "homepage": "https://www.slimframework.com",
  2307. "keywords": [
  2308. "http",
  2309. "psr-7",
  2310. "psr7"
  2311. ],
  2312. "support": {
  2313. "issues": "https://github.com/slimphp/Slim-Psr7/issues",
  2314. "source": "https://github.com/slimphp/Slim-Psr7/tree/1.3.0"
  2315. },
  2316. "time": "2020-11-28T06:28:46+00:00"
  2317. },
  2318. {
  2319. "name": "slim/slim",
  2320. "version": "4.7.1",
  2321. "source": {
  2322. "type": "git",
  2323. "url": "https://github.com/slimphp/Slim.git",
  2324. "reference": "0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f"
  2325. },
  2326. "dist": {
  2327. "type": "zip",
  2328. "url": "https://api.github.com/repos/slimphp/Slim/zipball/0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f",
  2329. "reference": "0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f",
  2330. "shasum": ""
  2331. },
  2332. "require": {
  2333. "ext-json": "*",
  2334. "nikic/fast-route": "^1.3",
  2335. "php": "^7.2 || ^8.0",
  2336. "psr/container": "^1.0",
  2337. "psr/http-factory": "^1.0",
  2338. "psr/http-message": "^1.0",
  2339. "psr/http-server-handler": "^1.0",
  2340. "psr/http-server-middleware": "^1.0",
  2341. "psr/log": "^1.1"
  2342. },
  2343. "require-dev": {
  2344. "adriansuter/php-autoload-override": "^1.2",
  2345. "ext-simplexml": "*",
  2346. "guzzlehttp/psr7": "^1.7",
  2347. "http-interop/http-factory-guzzle": "^1.0",
  2348. "laminas/laminas-diactoros": "^2.4",
  2349. "nyholm/psr7": "^1.3",
  2350. "nyholm/psr7-server": "^1.0.1",
  2351. "phpspec/prophecy": "^1.12",
  2352. "phpstan/phpstan": "^0.12.58",
  2353. "phpunit/phpunit": "^8.5.13",
  2354. "slim/http": "^1.2",
  2355. "slim/psr7": "^1.3",
  2356. "squizlabs/php_codesniffer": "^3.5",
  2357. "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
  2358. },
  2359. "suggest": {
  2360. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  2361. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  2362. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  2363. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  2364. },
  2365. "type": "library",
  2366. "autoload": {
  2367. "psr-4": {
  2368. "Slim\\": "Slim"
  2369. }
  2370. },
  2371. "notification-url": "https://packagist.org/downloads/",
  2372. "license": [
  2373. "MIT"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Josh Lockhart",
  2378. "email": "hello@joshlockhart.com",
  2379. "homepage": "https://joshlockhart.com"
  2380. },
  2381. {
  2382. "name": "Andrew Smith",
  2383. "email": "a.smith@silentworks.co.uk",
  2384. "homepage": "http://silentworks.co.uk"
  2385. },
  2386. {
  2387. "name": "Rob Allen",
  2388. "email": "rob@akrabat.com",
  2389. "homepage": "http://akrabat.com"
  2390. },
  2391. {
  2392. "name": "Pierre Berube",
  2393. "email": "pierre@lgse.com",
  2394. "homepage": "http://www.lgse.com"
  2395. },
  2396. {
  2397. "name": "Gabriel Manricks",
  2398. "email": "gmanricks@me.com",
  2399. "homepage": "http://gabrielmanricks.com"
  2400. }
  2401. ],
  2402. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  2403. "homepage": "https://www.slimframework.com",
  2404. "keywords": [
  2405. "api",
  2406. "framework",
  2407. "micro",
  2408. "router"
  2409. ],
  2410. "support": {
  2411. "docs": "https://www.slimframework.com/docs/v4/",
  2412. "forum": "https://discourse.slimframework.com/",
  2413. "irc": "irc://irc.freenode.net:6667/slimphp",
  2414. "issues": "https://github.com/slimphp/Slim/issues",
  2415. "rss": "https://www.slimframework.com/blog/feed.rss",
  2416. "slack": "https://slimphp.slack.com/",
  2417. "source": "https://github.com/slimphp/Slim",
  2418. "wiki": "https://github.com/slimphp/Slim/wiki"
  2419. },
  2420. "funding": [
  2421. {
  2422. "url": "https://opencollective.com/slimphp",
  2423. "type": "open_collective"
  2424. },
  2425. {
  2426. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  2427. "type": "tidelift"
  2428. }
  2429. ],
  2430. "time": "2020-12-01T19:41:22+00:00"
  2431. },
  2432. {
  2433. "name": "symfony/deprecation-contracts",
  2434. "version": "v2.1.3",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://github.com/symfony/deprecation-contracts.git",
  2438. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  2443. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  2444. "shasum": ""
  2445. },
  2446. "require": {
  2447. "php": ">=7.1"
  2448. },
  2449. "type": "library",
  2450. "extra": {
  2451. "branch-alias": {
  2452. "dev-master": "2.1-dev"
  2453. },
  2454. "thanks": {
  2455. "name": "symfony/contracts",
  2456. "url": "https://github.com/symfony/contracts"
  2457. }
  2458. },
  2459. "autoload": {
  2460. "files": [
  2461. "function.php"
  2462. ]
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Nicolas Grekas",
  2471. "email": "p@tchwork.com"
  2472. },
  2473. {
  2474. "name": "Symfony Community",
  2475. "homepage": "https://symfony.com/contributors"
  2476. }
  2477. ],
  2478. "description": "A generic function and convention to trigger deprecation notices",
  2479. "homepage": "https://symfony.com",
  2480. "time": "2020-06-06T08:49:21+00:00"
  2481. },
  2482. {
  2483. "name": "symfony/finder",
  2484. "version": "v5.1.3",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/symfony/finder.git",
  2488. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187",
  2493. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "php": ">=7.2.5"
  2498. },
  2499. "type": "library",
  2500. "extra": {
  2501. "branch-alias": {
  2502. "dev-master": "5.1-dev"
  2503. }
  2504. },
  2505. "autoload": {
  2506. "psr-4": {
  2507. "Symfony\\Component\\Finder\\": ""
  2508. },
  2509. "exclude-from-classmap": [
  2510. "/Tests/"
  2511. ]
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "MIT"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Fabien Potencier",
  2520. "email": "fabien@symfony.com"
  2521. },
  2522. {
  2523. "name": "Symfony Community",
  2524. "homepage": "https://symfony.com/contributors"
  2525. }
  2526. ],
  2527. "description": "Symfony Finder Component",
  2528. "homepage": "https://symfony.com",
  2529. "time": "2020-05-20T17:43:50+00:00"
  2530. },
  2531. {
  2532. "name": "symfony/polyfill-ctype",
  2533. "version": "v1.22.1",
  2534. "source": {
  2535. "type": "git",
  2536. "url": "https://github.com/symfony/polyfill-ctype.git",
  2537. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  2538. },
  2539. "dist": {
  2540. "type": "zip",
  2541. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  2542. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  2543. "shasum": ""
  2544. },
  2545. "require": {
  2546. "php": ">=7.1"
  2547. },
  2548. "suggest": {
  2549. "ext-ctype": "For best performance"
  2550. },
  2551. "type": "library",
  2552. "extra": {
  2553. "branch-alias": {
  2554. "dev-main": "1.22-dev"
  2555. },
  2556. "thanks": {
  2557. "name": "symfony/polyfill",
  2558. "url": "https://github.com/symfony/polyfill"
  2559. }
  2560. },
  2561. "autoload": {
  2562. "psr-4": {
  2563. "Symfony\\Polyfill\\Ctype\\": ""
  2564. },
  2565. "files": [
  2566. "bootstrap.php"
  2567. ]
  2568. },
  2569. "notification-url": "https://packagist.org/downloads/",
  2570. "license": [
  2571. "MIT"
  2572. ],
  2573. "authors": [
  2574. {
  2575. "name": "Gert de Pagter",
  2576. "email": "BackEndTea@gmail.com"
  2577. },
  2578. {
  2579. "name": "Symfony Community",
  2580. "homepage": "https://symfony.com/contributors"
  2581. }
  2582. ],
  2583. "description": "Symfony polyfill for ctype functions",
  2584. "homepage": "https://symfony.com",
  2585. "keywords": [
  2586. "compatibility",
  2587. "ctype",
  2588. "polyfill",
  2589. "portable"
  2590. ],
  2591. "support": {
  2592. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  2593. },
  2594. "funding": [
  2595. {
  2596. "url": "https://symfony.com/sponsor",
  2597. "type": "custom"
  2598. },
  2599. {
  2600. "url": "https://github.com/fabpot",
  2601. "type": "github"
  2602. },
  2603. {
  2604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2605. "type": "tidelift"
  2606. }
  2607. ],
  2608. "time": "2021-01-07T16:49:33+00:00"
  2609. },
  2610. {
  2611. "name": "symfony/polyfill-mbstring",
  2612. "version": "v1.22.1",
  2613. "source": {
  2614. "type": "git",
  2615. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2616. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  2617. },
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  2621. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "php": ">=7.1"
  2626. },
  2627. "suggest": {
  2628. "ext-mbstring": "For best performance"
  2629. },
  2630. "type": "library",
  2631. "extra": {
  2632. "branch-alias": {
  2633. "dev-main": "1.22-dev"
  2634. },
  2635. "thanks": {
  2636. "name": "symfony/polyfill",
  2637. "url": "https://github.com/symfony/polyfill"
  2638. }
  2639. },
  2640. "autoload": {
  2641. "psr-4": {
  2642. "Symfony\\Polyfill\\Mbstring\\": ""
  2643. },
  2644. "files": [
  2645. "bootstrap.php"
  2646. ]
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "MIT"
  2651. ],
  2652. "authors": [
  2653. {
  2654. "name": "Nicolas Grekas",
  2655. "email": "p@tchwork.com"
  2656. },
  2657. {
  2658. "name": "Symfony Community",
  2659. "homepage": "https://symfony.com/contributors"
  2660. }
  2661. ],
  2662. "description": "Symfony polyfill for the Mbstring extension",
  2663. "homepage": "https://symfony.com",
  2664. "keywords": [
  2665. "compatibility",
  2666. "mbstring",
  2667. "polyfill",
  2668. "portable",
  2669. "shim"
  2670. ],
  2671. "support": {
  2672. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  2673. },
  2674. "funding": [
  2675. {
  2676. "url": "https://symfony.com/sponsor",
  2677. "type": "custom"
  2678. },
  2679. {
  2680. "url": "https://github.com/fabpot",
  2681. "type": "github"
  2682. },
  2683. {
  2684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2685. "type": "tidelift"
  2686. }
  2687. ],
  2688. "time": "2021-01-22T09:19:47+00:00"
  2689. },
  2690. {
  2691. "name": "symfony/polyfill-php56",
  2692. "version": "v1.9.0",
  2693. "source": {
  2694. "type": "git",
  2695. "url": "https://github.com/symfony/polyfill-php56.git",
  2696. "reference": "7b4fc009172cc0196535b0328bd1226284a28000"
  2697. },
  2698. "dist": {
  2699. "type": "zip",
  2700. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000",
  2701. "reference": "7b4fc009172cc0196535b0328bd1226284a28000",
  2702. "shasum": ""
  2703. },
  2704. "require": {
  2705. "php": ">=5.3.3",
  2706. "symfony/polyfill-util": "~1.0"
  2707. },
  2708. "type": "library",
  2709. "extra": {
  2710. "branch-alias": {
  2711. "dev-master": "1.9-dev"
  2712. }
  2713. },
  2714. "autoload": {
  2715. "psr-4": {
  2716. "Symfony\\Polyfill\\Php56\\": ""
  2717. },
  2718. "files": [
  2719. "bootstrap.php"
  2720. ]
  2721. },
  2722. "notification-url": "https://packagist.org/downloads/",
  2723. "license": [
  2724. "MIT"
  2725. ],
  2726. "authors": [
  2727. {
  2728. "name": "Nicolas Grekas",
  2729. "email": "p@tchwork.com"
  2730. },
  2731. {
  2732. "name": "Symfony Community",
  2733. "homepage": "https://symfony.com/contributors"
  2734. }
  2735. ],
  2736. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  2737. "homepage": "https://symfony.com",
  2738. "keywords": [
  2739. "compatibility",
  2740. "polyfill",
  2741. "portable",
  2742. "shim"
  2743. ],
  2744. "time": "2018-08-06T14:22:27+00:00"
  2745. },
  2746. {
  2747. "name": "symfony/polyfill-php72",
  2748. "version": "v1.22.1",
  2749. "source": {
  2750. "type": "git",
  2751. "url": "https://github.com/symfony/polyfill-php72.git",
  2752. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  2753. },
  2754. "dist": {
  2755. "type": "zip",
  2756. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  2757. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  2758. "shasum": ""
  2759. },
  2760. "require": {
  2761. "php": ">=7.1"
  2762. },
  2763. "type": "library",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-main": "1.22-dev"
  2767. },
  2768. "thanks": {
  2769. "name": "symfony/polyfill",
  2770. "url": "https://github.com/symfony/polyfill"
  2771. }
  2772. },
  2773. "autoload": {
  2774. "psr-4": {
  2775. "Symfony\\Polyfill\\Php72\\": ""
  2776. },
  2777. "files": [
  2778. "bootstrap.php"
  2779. ]
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "MIT"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "Nicolas Grekas",
  2788. "email": "p@tchwork.com"
  2789. },
  2790. {
  2791. "name": "Symfony Community",
  2792. "homepage": "https://symfony.com/contributors"
  2793. }
  2794. ],
  2795. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2796. "homepage": "https://symfony.com",
  2797. "keywords": [
  2798. "compatibility",
  2799. "polyfill",
  2800. "portable",
  2801. "shim"
  2802. ],
  2803. "support": {
  2804. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  2805. },
  2806. "funding": [
  2807. {
  2808. "url": "https://symfony.com/sponsor",
  2809. "type": "custom"
  2810. },
  2811. {
  2812. "url": "https://github.com/fabpot",
  2813. "type": "github"
  2814. },
  2815. {
  2816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2817. "type": "tidelift"
  2818. }
  2819. ],
  2820. "time": "2021-01-07T16:49:33+00:00"
  2821. },
  2822. {
  2823. "name": "symfony/polyfill-php80",
  2824. "version": "v1.22.1",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/symfony/polyfill-php80.git",
  2828. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  2833. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "php": ">=7.1"
  2838. },
  2839. "type": "library",
  2840. "extra": {
  2841. "branch-alias": {
  2842. "dev-main": "1.22-dev"
  2843. },
  2844. "thanks": {
  2845. "name": "symfony/polyfill",
  2846. "url": "https://github.com/symfony/polyfill"
  2847. }
  2848. },
  2849. "autoload": {
  2850. "psr-4": {
  2851. "Symfony\\Polyfill\\Php80\\": ""
  2852. },
  2853. "files": [
  2854. "bootstrap.php"
  2855. ],
  2856. "classmap": [
  2857. "Resources/stubs"
  2858. ]
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "MIT"
  2863. ],
  2864. "authors": [
  2865. {
  2866. "name": "Ion Bazan",
  2867. "email": "ion.bazan@gmail.com"
  2868. },
  2869. {
  2870. "name": "Nicolas Grekas",
  2871. "email": "p@tchwork.com"
  2872. },
  2873. {
  2874. "name": "Symfony Community",
  2875. "homepage": "https://symfony.com/contributors"
  2876. }
  2877. ],
  2878. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2879. "homepage": "https://symfony.com",
  2880. "keywords": [
  2881. "compatibility",
  2882. "polyfill",
  2883. "portable",
  2884. "shim"
  2885. ],
  2886. "support": {
  2887. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  2888. },
  2889. "funding": [
  2890. {
  2891. "url": "https://symfony.com/sponsor",
  2892. "type": "custom"
  2893. },
  2894. {
  2895. "url": "https://github.com/fabpot",
  2896. "type": "github"
  2897. },
  2898. {
  2899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2900. "type": "tidelift"
  2901. }
  2902. ],
  2903. "time": "2021-01-07T16:49:33+00:00"
  2904. },
  2905. {
  2906. "name": "symfony/polyfill-util",
  2907. "version": "v1.9.0",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/symfony/polyfill-util.git",
  2911. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  2916. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "php": ">=5.3.3"
  2921. },
  2922. "type": "library",
  2923. "extra": {
  2924. "branch-alias": {
  2925. "dev-master": "1.9-dev"
  2926. }
  2927. },
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Symfony\\Polyfill\\Util\\": ""
  2931. }
  2932. },
  2933. "notification-url": "https://packagist.org/downloads/",
  2934. "license": [
  2935. "MIT"
  2936. ],
  2937. "authors": [
  2938. {
  2939. "name": "Nicolas Grekas",
  2940. "email": "p@tchwork.com"
  2941. },
  2942. {
  2943. "name": "Symfony Community",
  2944. "homepage": "https://symfony.com/contributors"
  2945. }
  2946. ],
  2947. "description": "Symfony utilities for portability of PHP codes",
  2948. "homepage": "https://symfony.com",
  2949. "keywords": [
  2950. "compat",
  2951. "compatibility",
  2952. "polyfill",
  2953. "shim"
  2954. ],
  2955. "time": "2018-08-06T14:22:27+00:00"
  2956. },
  2957. {
  2958. "name": "symfony/var-dumper",
  2959. "version": "v4.2.3",
  2960. "source": {
  2961. "type": "git",
  2962. "url": "https://github.com/symfony/var-dumper.git",
  2963. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17"
  2964. },
  2965. "dist": {
  2966. "type": "zip",
  2967. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/223bda89f9be41cf7033eeaf11bc61a280489c17",
  2968. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17",
  2969. "shasum": ""
  2970. },
  2971. "require": {
  2972. "php": "^7.1.3",
  2973. "symfony/polyfill-mbstring": "~1.0",
  2974. "symfony/polyfill-php72": "~1.5"
  2975. },
  2976. "conflict": {
  2977. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2978. "symfony/console": "<3.4"
  2979. },
  2980. "require-dev": {
  2981. "ext-iconv": "*",
  2982. "symfony/console": "~3.4|~4.0",
  2983. "symfony/process": "~3.4|~4.0",
  2984. "twig/twig": "~1.34|~2.4"
  2985. },
  2986. "suggest": {
  2987. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2988. "ext-intl": "To show region name in time zone dump",
  2989. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2990. },
  2991. "bin": [
  2992. "Resources/bin/var-dump-server"
  2993. ],
  2994. "type": "library",
  2995. "extra": {
  2996. "branch-alias": {
  2997. "dev-master": "4.2-dev"
  2998. }
  2999. },
  3000. "autoload": {
  3001. "files": [
  3002. "Resources/functions/dump.php"
  3003. ],
  3004. "psr-4": {
  3005. "Symfony\\Component\\VarDumper\\": ""
  3006. },
  3007. "exclude-from-classmap": [
  3008. "/Tests/"
  3009. ]
  3010. },
  3011. "notification-url": "https://packagist.org/downloads/",
  3012. "license": [
  3013. "MIT"
  3014. ],
  3015. "authors": [
  3016. {
  3017. "name": "Nicolas Grekas",
  3018. "email": "p@tchwork.com"
  3019. },
  3020. {
  3021. "name": "Symfony Community",
  3022. "homepage": "https://symfony.com/contributors"
  3023. }
  3024. ],
  3025. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3026. "homepage": "https://symfony.com",
  3027. "keywords": [
  3028. "debug",
  3029. "dump"
  3030. ],
  3031. "time": "2019-01-30T11:44:30+00:00"
  3032. },
  3033. {
  3034. "name": "symfony/yaml",
  3035. "version": "v5.1.3",
  3036. "source": {
  3037. "type": "git",
  3038. "url": "https://github.com/symfony/yaml.git",
  3039. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23"
  3040. },
  3041. "dist": {
  3042. "type": "zip",
  3043. "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23",
  3044. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23",
  3045. "shasum": ""
  3046. },
  3047. "require": {
  3048. "php": ">=7.2.5",
  3049. "symfony/deprecation-contracts": "^2.1",
  3050. "symfony/polyfill-ctype": "~1.8"
  3051. },
  3052. "conflict": {
  3053. "symfony/console": "<4.4"
  3054. },
  3055. "require-dev": {
  3056. "symfony/console": "^4.4|^5.0"
  3057. },
  3058. "suggest": {
  3059. "symfony/console": "For validating YAML files using the lint command"
  3060. },
  3061. "bin": [
  3062. "Resources/bin/yaml-lint"
  3063. ],
  3064. "type": "library",
  3065. "extra": {
  3066. "branch-alias": {
  3067. "dev-master": "5.1-dev"
  3068. }
  3069. },
  3070. "autoload": {
  3071. "psr-4": {
  3072. "Symfony\\Component\\Yaml\\": ""
  3073. },
  3074. "exclude-from-classmap": [
  3075. "/Tests/"
  3076. ]
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "MIT"
  3081. ],
  3082. "authors": [
  3083. {
  3084. "name": "Fabien Potencier",
  3085. "email": "fabien@symfony.com"
  3086. },
  3087. {
  3088. "name": "Symfony Community",
  3089. "homepage": "https://symfony.com/contributors"
  3090. }
  3091. ],
  3092. "description": "Symfony Yaml Component",
  3093. "homepage": "https://symfony.com",
  3094. "time": "2020-05-20T17:43:50+00:00"
  3095. },
  3096. {
  3097. "name": "tightenco/collect",
  3098. "version": "v5.7.27",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/tightenco/collect.git",
  3102. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/tightenco/collect/zipball/c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  3107. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  3108. "shasum": ""
  3109. },
  3110. "require": {
  3111. "php": "^7.1.3",
  3112. "symfony/var-dumper": ">=3.4 <5"
  3113. },
  3114. "require-dev": {
  3115. "mockery/mockery": "^1.0",
  3116. "nesbot/carbon": "^1.26.3",
  3117. "phpunit/phpunit": "^7.0"
  3118. },
  3119. "type": "library",
  3120. "autoload": {
  3121. "files": [
  3122. "src/Collect/Support/helpers.php",
  3123. "src/Collect/Support/alias.php"
  3124. ],
  3125. "psr-4": {
  3126. "Tightenco\\Collect\\": "src/Collect"
  3127. }
  3128. },
  3129. "notification-url": "https://packagist.org/downloads/",
  3130. "license": [
  3131. "MIT"
  3132. ],
  3133. "authors": [
  3134. {
  3135. "name": "Taylor Otwell",
  3136. "email": "taylorotwell@gmail.com"
  3137. }
  3138. ],
  3139. "description": "Collect - Illuminate Collections as a separate package.",
  3140. "keywords": [
  3141. "collection",
  3142. "laravel"
  3143. ],
  3144. "time": "2019-02-13T19:40:13+00:00"
  3145. },
  3146. {
  3147. "name": "zircote/swagger-php",
  3148. "version": "3.0.4",
  3149. "source": {
  3150. "type": "git",
  3151. "url": "https://github.com/zircote/swagger-php.git",
  3152. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b"
  3153. },
  3154. "dist": {
  3155. "type": "zip",
  3156. "url": "https://api.github.com/repos/zircote/swagger-php/zipball/fa47d62c22c95272625624fbf8109fa46ffac43b",
  3157. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b",
  3158. "shasum": ""
  3159. },
  3160. "require": {
  3161. "doctrine/annotations": "*",
  3162. "php": ">=7.2",
  3163. "symfony/finder": ">=2.2",
  3164. "symfony/yaml": ">=3.3"
  3165. },
  3166. "require-dev": {
  3167. "phpunit/phpunit": ">=8",
  3168. "squizlabs/php_codesniffer": ">=3.3",
  3169. "zendframework/zend-form": "<2.8"
  3170. },
  3171. "bin": [
  3172. "bin/openapi"
  3173. ],
  3174. "type": "library",
  3175. "autoload": {
  3176. "psr-4": {
  3177. "OpenApi\\": "src"
  3178. },
  3179. "files": [
  3180. "src/functions.php"
  3181. ]
  3182. },
  3183. "notification-url": "https://packagist.org/downloads/",
  3184. "license": [
  3185. "Apache-2.0"
  3186. ],
  3187. "authors": [
  3188. {
  3189. "name": "Robert Allen",
  3190. "email": "zircote@gmail.com",
  3191. "homepage": "http://www.zircote.com"
  3192. },
  3193. {
  3194. "name": "Bob Fanger",
  3195. "email": "bfanger@gmail.com",
  3196. "homepage": "http://bfanger.nl"
  3197. }
  3198. ],
  3199. "description": "swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations",
  3200. "homepage": "https://github.com/zircote/swagger-php/",
  3201. "keywords": [
  3202. "api",
  3203. "json",
  3204. "rest",
  3205. "service discovery"
  3206. ],
  3207. "time": "2020-05-07T09:10:49+00:00"
  3208. }
  3209. ],
  3210. "packages-dev": [],
  3211. "aliases": [],
  3212. "minimum-stability": "stable",
  3213. "stability-flags": [],
  3214. "prefer-stable": false,
  3215. "prefer-lowest": false,
  3216. "platform": [],
  3217. "platform-dev": [],
  3218. "plugin-api-version": "2.0.0"
  3219. }