composer.lock 107 KB

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