installed.json 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  1. [
  2. {
  3. "name": "adldap2/adldap2",
  4. "version": "v10.3.0",
  5. "version_normalized": "10.3.0.0",
  6. "source": {
  7. "type": "git",
  8. "url": "https://github.com/Adldap2/Adldap2.git",
  9. "reference": "1294c92746e3fb3bb59cd7756ca7838a1e705a2a"
  10. },
  11. "dist": {
  12. "type": "zip",
  13. "url": "https://api.github.com/repos/Adldap2/Adldap2/zipball/1294c92746e3fb3bb59cd7756ca7838a1e705a2a",
  14. "reference": "1294c92746e3fb3bb59cd7756ca7838a1e705a2a",
  15. "shasum": ""
  16. },
  17. "require": {
  18. "ext-json": "*",
  19. "ext-ldap": "*",
  20. "illuminate/contracts": "~5.0|~6.0|~7.0",
  21. "php": ">=7.0",
  22. "psr/log": "~1.0",
  23. "psr/simple-cache": "~1.0",
  24. "tightenco/collect": "~5.0|~6.0|~7.0"
  25. },
  26. "require-dev": {
  27. "mockery/mockery": "~1.0",
  28. "phpunit/phpunit": "~6.0"
  29. },
  30. "suggest": {
  31. "ext-fileinfo": "fileinfo is required when retrieving user encoded thumbnails"
  32. },
  33. "time": "2020-05-04T21:10:15+00:00",
  34. "type": "library",
  35. "installation-source": "dist",
  36. "autoload": {
  37. "psr-4": {
  38. "Adldap\\": "src/"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Steve Bauman",
  48. "email": "steven_bauman@outlook.com",
  49. "role": "Developer"
  50. }
  51. ],
  52. "description": "A PHP LDAP Package for humans.",
  53. "keywords": [
  54. "active directory",
  55. "ad",
  56. "adLDAP",
  57. "adldap2",
  58. "directory",
  59. "ldap",
  60. "windows"
  61. ]
  62. },
  63. {
  64. "name": "composer/semver",
  65. "version": "1.4.2",
  66. "version_normalized": "1.4.2.0",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/composer/semver.git",
  70. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  75. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "php": "^5.3.2 || ^7.0"
  80. },
  81. "require-dev": {
  82. "phpunit/phpunit": "^4.5 || ^5.0.5",
  83. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  84. },
  85. "time": "2016-08-30T16:08:34+00:00",
  86. "type": "library",
  87. "extra": {
  88. "branch-alias": {
  89. "dev-master": "1.x-dev"
  90. }
  91. },
  92. "installation-source": "dist",
  93. "autoload": {
  94. "psr-4": {
  95. "Composer\\Semver\\": "src"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Nils Adermann",
  105. "email": "naderman@naderman.de",
  106. "homepage": "http://www.naderman.de"
  107. },
  108. {
  109. "name": "Jordi Boggiano",
  110. "email": "j.boggiano@seld.be",
  111. "homepage": "http://seld.be"
  112. },
  113. {
  114. "name": "Rob Bast",
  115. "email": "rob.bast@gmail.com",
  116. "homepage": "http://robbast.nl"
  117. }
  118. ],
  119. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  120. "keywords": [
  121. "semantic",
  122. "semver",
  123. "validation",
  124. "versioning"
  125. ]
  126. },
  127. {
  128. "name": "dibi/dibi",
  129. "version": "v3.2.4",
  130. "version_normalized": "3.2.4.0",
  131. "source": {
  132. "type": "git",
  133. "url": "https://github.com/dg/dibi.git",
  134. "reference": "d571460a6f8fa1334a04f7aaa1551bb0f12c2266"
  135. },
  136. "dist": {
  137. "type": "zip",
  138. "url": "https://api.github.com/repos/dg/dibi/zipball/d571460a6f8fa1334a04f7aaa1551bb0f12c2266",
  139. "reference": "d571460a6f8fa1334a04f7aaa1551bb0f12c2266",
  140. "shasum": ""
  141. },
  142. "require": {
  143. "php": ">=5.4.4"
  144. },
  145. "replace": {
  146. "dg/dibi": "*"
  147. },
  148. "require-dev": {
  149. "nette/tester": "~1.7",
  150. "tracy/tracy": "~2.2"
  151. },
  152. "time": "2020-03-26T03:05:01+00:00",
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "3.2-dev"
  157. }
  158. },
  159. "installation-source": "dist",
  160. "autoload": {
  161. "classmap": [
  162. "src/"
  163. ],
  164. "files": [
  165. "src/loader.php"
  166. ]
  167. },
  168. "notification-url": "https://packagist.org/downloads/",
  169. "license": [
  170. "BSD-3-Clause",
  171. "GPL-2.0",
  172. "GPL-3.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "David Grudl",
  177. "homepage": "https://davidgrudl.com"
  178. }
  179. ],
  180. "description": "Dibi is Database Abstraction Library for PHP",
  181. "homepage": "https://dibiphp.com",
  182. "keywords": [
  183. "access",
  184. "database",
  185. "dbal",
  186. "mssql",
  187. "mysql",
  188. "odbc",
  189. "oracle",
  190. "pdo",
  191. "postgresql",
  192. "sqlite",
  193. "sqlsrv"
  194. ]
  195. },
  196. {
  197. "name": "guzzlehttp/guzzle",
  198. "version": "6.5.2",
  199. "version_normalized": "6.5.2.0",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/guzzle/guzzle.git",
  203. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
  208. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "ext-json": "*",
  213. "guzzlehttp/promises": "^1.0",
  214. "guzzlehttp/psr7": "^1.6.1",
  215. "php": ">=5.5"
  216. },
  217. "require-dev": {
  218. "ext-curl": "*",
  219. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  220. "psr/log": "^1.1"
  221. },
  222. "suggest": {
  223. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  224. "psr/log": "Required for using the Log middleware"
  225. },
  226. "time": "2019-12-23T11:57:10+00:00",
  227. "type": "library",
  228. "extra": {
  229. "branch-alias": {
  230. "dev-master": "6.5-dev"
  231. }
  232. },
  233. "installation-source": "dist",
  234. "autoload": {
  235. "psr-4": {
  236. "GuzzleHttp\\": "src/"
  237. },
  238. "files": [
  239. "src/functions_include.php"
  240. ]
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "MIT"
  245. ],
  246. "authors": [
  247. {
  248. "name": "Michael Dowling",
  249. "email": "mtdowling@gmail.com",
  250. "homepage": "https://github.com/mtdowling"
  251. }
  252. ],
  253. "description": "Guzzle is a PHP HTTP client library",
  254. "homepage": "http://guzzlephp.org/",
  255. "keywords": [
  256. "client",
  257. "curl",
  258. "framework",
  259. "http",
  260. "http client",
  261. "rest",
  262. "web service"
  263. ]
  264. },
  265. {
  266. "name": "guzzlehttp/promises",
  267. "version": "v1.3.1",
  268. "version_normalized": "1.3.1.0",
  269. "source": {
  270. "type": "git",
  271. "url": "https://github.com/guzzle/promises.git",
  272. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  273. },
  274. "dist": {
  275. "type": "zip",
  276. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  277. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  278. "shasum": ""
  279. },
  280. "require": {
  281. "php": ">=5.5.0"
  282. },
  283. "require-dev": {
  284. "phpunit/phpunit": "^4.0"
  285. },
  286. "time": "2016-12-20T10:07:11+00:00",
  287. "type": "library",
  288. "extra": {
  289. "branch-alias": {
  290. "dev-master": "1.4-dev"
  291. }
  292. },
  293. "installation-source": "dist",
  294. "autoload": {
  295. "psr-4": {
  296. "GuzzleHttp\\Promise\\": "src/"
  297. },
  298. "files": [
  299. "src/functions_include.php"
  300. ]
  301. },
  302. "notification-url": "https://packagist.org/downloads/",
  303. "license": [
  304. "MIT"
  305. ],
  306. "authors": [
  307. {
  308. "name": "Michael Dowling",
  309. "email": "mtdowling@gmail.com",
  310. "homepage": "https://github.com/mtdowling"
  311. }
  312. ],
  313. "description": "Guzzle promises library",
  314. "keywords": [
  315. "promise"
  316. ]
  317. },
  318. {
  319. "name": "guzzlehttp/psr7",
  320. "version": "1.6.1",
  321. "version_normalized": "1.6.1.0",
  322. "source": {
  323. "type": "git",
  324. "url": "https://github.com/guzzle/psr7.git",
  325. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  326. },
  327. "dist": {
  328. "type": "zip",
  329. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  330. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  331. "shasum": ""
  332. },
  333. "require": {
  334. "php": ">=5.4.0",
  335. "psr/http-message": "~1.0",
  336. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  337. },
  338. "provide": {
  339. "psr/http-message-implementation": "1.0"
  340. },
  341. "require-dev": {
  342. "ext-zlib": "*",
  343. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  344. },
  345. "suggest": {
  346. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  347. },
  348. "time": "2019-07-01T23:21:34+00:00",
  349. "type": "library",
  350. "extra": {
  351. "branch-alias": {
  352. "dev-master": "1.6-dev"
  353. }
  354. },
  355. "installation-source": "dist",
  356. "autoload": {
  357. "psr-4": {
  358. "GuzzleHttp\\Psr7\\": "src/"
  359. },
  360. "files": [
  361. "src/functions_include.php"
  362. ]
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "MIT"
  367. ],
  368. "authors": [
  369. {
  370. "name": "Michael Dowling",
  371. "email": "mtdowling@gmail.com",
  372. "homepage": "https://github.com/mtdowling"
  373. },
  374. {
  375. "name": "Tobias Schultze",
  376. "homepage": "https://github.com/Tobion"
  377. }
  378. ],
  379. "description": "PSR-7 message implementation that also provides common utility methods",
  380. "keywords": [
  381. "http",
  382. "message",
  383. "psr-7",
  384. "request",
  385. "response",
  386. "stream",
  387. "uri",
  388. "url"
  389. ]
  390. },
  391. {
  392. "name": "illuminate/contracts",
  393. "version": "v5.8.0",
  394. "version_normalized": "5.8.0.0",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/illuminate/contracts.git",
  398. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/illuminate/contracts/zipball/3e3a9a654adbf798e05491a5dbf90112df1effde",
  403. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^7.1.3",
  408. "psr/container": "^1.0",
  409. "psr/simple-cache": "^1.0"
  410. },
  411. "time": "2019-02-18T18:37:54+00:00",
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "5.8-dev"
  416. }
  417. },
  418. "installation-source": "dist",
  419. "autoload": {
  420. "psr-4": {
  421. "Illuminate\\Contracts\\": ""
  422. }
  423. },
  424. "notification-url": "https://packagist.org/downloads/",
  425. "license": [
  426. "MIT"
  427. ],
  428. "authors": [
  429. {
  430. "name": "Taylor Otwell",
  431. "email": "taylor@laravel.com"
  432. }
  433. ],
  434. "description": "The Illuminate Contracts package.",
  435. "homepage": "https://laravel.com"
  436. },
  437. {
  438. "name": "kryptonit3/couchpotato",
  439. "version": "1.0.0",
  440. "version_normalized": "1.0.0.0",
  441. "source": {
  442. "type": "git",
  443. "url": "https://github.com/Kryptonit3/CouchPotato.git",
  444. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376"
  445. },
  446. "dist": {
  447. "type": "zip",
  448. "url": "https://api.github.com/repos/Kryptonit3/CouchPotato/zipball/7a1fc892f70f120f74ff005850e923a0f1566376",
  449. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376",
  450. "shasum": ""
  451. },
  452. "require": {
  453. "guzzlehttp/guzzle": "^6.1"
  454. },
  455. "time": "2016-02-06T22:02:39+00:00",
  456. "type": "library",
  457. "installation-source": "dist",
  458. "autoload": {
  459. "psr-4": {
  460. "Kryptonit3\\CouchPotato\\": "src/"
  461. }
  462. },
  463. "notification-url": "https://packagist.org/downloads/",
  464. "license": [
  465. "MIT"
  466. ],
  467. "authors": [
  468. {
  469. "name": "Jesse Szypulski",
  470. "email": "jesse.szypulski@gmail.com"
  471. }
  472. ],
  473. "description": "PHP Wrapper for CouchPotato API"
  474. },
  475. {
  476. "name": "kryptonit3/sickrage",
  477. "version": "1.0.1",
  478. "version_normalized": "1.0.1.0",
  479. "source": {
  480. "type": "git",
  481. "url": "https://github.com/Kryptonit3/SickRage.git",
  482. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa"
  483. },
  484. "dist": {
  485. "type": "zip",
  486. "url": "https://api.github.com/repos/Kryptonit3/SickRage/zipball/441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  487. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  488. "shasum": ""
  489. },
  490. "require": {
  491. "guzzlehttp/guzzle": "^6.1"
  492. },
  493. "time": "2016-08-08T00:57:46+00:00",
  494. "type": "library",
  495. "installation-source": "dist",
  496. "autoload": {
  497. "psr-4": {
  498. "Kryptonit3\\SickRage\\": "src/"
  499. }
  500. },
  501. "notification-url": "https://packagist.org/downloads/",
  502. "license": [
  503. "MIT"
  504. ],
  505. "authors": [
  506. {
  507. "name": "Jesse Szypulski",
  508. "email": "jesse.szypulski@gmail.com"
  509. }
  510. ],
  511. "description": "PHP Wrapper for SickRage / SickBeard API"
  512. },
  513. {
  514. "name": "kryptonit3/sonarr",
  515. "version": "1.0.6.1",
  516. "version_normalized": "1.0.6.1",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/Kryptonit3/Sonarr.git",
  520. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/Kryptonit3/Sonarr/zipball/e30c5c783a837270bcef81571ca9b95909c52e5e",
  525. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e",
  526. "shasum": ""
  527. },
  528. "require": {
  529. "guzzlehttp/guzzle": "^6.1"
  530. },
  531. "time": "2017-06-30T01:25:49+00:00",
  532. "type": "library",
  533. "installation-source": "dist",
  534. "autoload": {
  535. "psr-4": {
  536. "Kryptonit3\\Sonarr\\": "src/"
  537. }
  538. },
  539. "notification-url": "https://packagist.org/downloads/",
  540. "license": [
  541. "MIT"
  542. ],
  543. "authors": [
  544. {
  545. "name": "Jesse Szypulski",
  546. "email": "jesse.szypulski@gmail.com"
  547. }
  548. ],
  549. "description": "PHP Sonarr API Wrapper"
  550. },
  551. {
  552. "name": "lcobucci/jwt",
  553. "version": "3.3.1",
  554. "version_normalized": "3.3.1.0",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/lcobucci/jwt.git",
  558. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  563. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "ext-mbstring": "*",
  568. "ext-openssl": "*",
  569. "php": "^5.6 || ^7.0"
  570. },
  571. "require-dev": {
  572. "mikey179/vfsstream": "~1.5",
  573. "phpmd/phpmd": "~2.2",
  574. "phpunit/php-invoker": "~1.1",
  575. "phpunit/phpunit": "^5.7 || ^7.3",
  576. "squizlabs/php_codesniffer": "~2.3"
  577. },
  578. "time": "2019-05-24T18:30:49+00:00",
  579. "type": "library",
  580. "extra": {
  581. "branch-alias": {
  582. "dev-master": "3.1-dev"
  583. }
  584. },
  585. "installation-source": "dist",
  586. "autoload": {
  587. "psr-4": {
  588. "Lcobucci\\JWT\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "BSD-3-Clause"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Luís Otávio Cobucci Oblonczyk",
  598. "email": "lcobucci@gmail.com",
  599. "role": "Developer"
  600. }
  601. ],
  602. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  603. "keywords": [
  604. "JWS",
  605. "jwt"
  606. ]
  607. },
  608. {
  609. "name": "nikic/fast-route",
  610. "version": "v1.3.0",
  611. "version_normalized": "1.3.0.0",
  612. "source": {
  613. "type": "git",
  614. "url": "https://github.com/nikic/FastRoute.git",
  615. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  616. },
  617. "dist": {
  618. "type": "zip",
  619. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  620. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  621. "shasum": ""
  622. },
  623. "require": {
  624. "php": ">=5.4.0"
  625. },
  626. "require-dev": {
  627. "phpunit/phpunit": "^4.8.35|~5.7"
  628. },
  629. "time": "2018-02-13T20:26:39+00:00",
  630. "type": "library",
  631. "installation-source": "dist",
  632. "autoload": {
  633. "psr-4": {
  634. "FastRoute\\": "src/"
  635. },
  636. "files": [
  637. "src/functions.php"
  638. ]
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "BSD-3-Clause"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Nikita Popov",
  647. "email": "nikic@php.net"
  648. }
  649. ],
  650. "description": "Fast request router for PHP",
  651. "keywords": [
  652. "router",
  653. "routing"
  654. ]
  655. },
  656. {
  657. "name": "paragonie/constant_time_encoding",
  658. "version": "v2.2.2",
  659. "version_normalized": "2.2.2.0",
  660. "source": {
  661. "type": "git",
  662. "url": "https://github.com/paragonie/constant_time_encoding.git",
  663. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33"
  664. },
  665. "dist": {
  666. "type": "zip",
  667. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  668. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  669. "shasum": ""
  670. },
  671. "require": {
  672. "php": "^7"
  673. },
  674. "require-dev": {
  675. "phpunit/phpunit": "^6|^7",
  676. "vimeo/psalm": "^1"
  677. },
  678. "time": "2018-03-10T19:47:49+00:00",
  679. "type": "library",
  680. "installation-source": "dist",
  681. "autoload": {
  682. "psr-4": {
  683. "ParagonIE\\ConstantTime\\": "src/"
  684. }
  685. },
  686. "notification-url": "https://packagist.org/downloads/",
  687. "license": [
  688. "MIT"
  689. ],
  690. "authors": [
  691. {
  692. "name": "Paragon Initiative Enterprises",
  693. "email": "security@paragonie.com",
  694. "homepage": "https://paragonie.com",
  695. "role": "Maintainer"
  696. },
  697. {
  698. "name": "Steve 'Sc00bz' Thomas",
  699. "email": "steve@tobtu.com",
  700. "homepage": "https://www.tobtu.com",
  701. "role": "Original Developer"
  702. }
  703. ],
  704. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  705. "keywords": [
  706. "base16",
  707. "base32",
  708. "base32_decode",
  709. "base32_encode",
  710. "base64",
  711. "base64_decode",
  712. "base64_encode",
  713. "bin2hex",
  714. "encoding",
  715. "hex",
  716. "hex2bin",
  717. "rfc4648"
  718. ]
  719. },
  720. {
  721. "name": "paragonie/random_compat",
  722. "version": "v9.99.99",
  723. "version_normalized": "9.99.99.0",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/paragonie/random_compat.git",
  727. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  732. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "php": "^7"
  737. },
  738. "require-dev": {
  739. "phpunit/phpunit": "4.*|5.*",
  740. "vimeo/psalm": "^1"
  741. },
  742. "suggest": {
  743. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  744. },
  745. "time": "2018-07-02T15:55:56+00:00",
  746. "type": "library",
  747. "installation-source": "dist",
  748. "notification-url": "https://packagist.org/downloads/",
  749. "license": [
  750. "MIT"
  751. ],
  752. "authors": [
  753. {
  754. "name": "Paragon Initiative Enterprises",
  755. "email": "security@paragonie.com",
  756. "homepage": "https://paragonie.com"
  757. }
  758. ],
  759. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  760. "keywords": [
  761. "csprng",
  762. "polyfill",
  763. "pseudorandom",
  764. "random"
  765. ]
  766. },
  767. {
  768. "name": "paragonie/sodium_compat",
  769. "version": "v1.6.4",
  770. "version_normalized": "1.6.4.0",
  771. "source": {
  772. "type": "git",
  773. "url": "https://github.com/paragonie/sodium_compat.git",
  774. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c"
  775. },
  776. "dist": {
  777. "type": "zip",
  778. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/3f2fd07977541b4d630ea0365ad0eceddee5179c",
  779. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c",
  780. "shasum": ""
  781. },
  782. "require": {
  783. "paragonie/random_compat": ">=1",
  784. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7"
  785. },
  786. "require-dev": {
  787. "phpunit/phpunit": "^3|^4|^5"
  788. },
  789. "suggest": {
  790. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  791. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  792. },
  793. "time": "2018-08-29T22:02:48+00:00",
  794. "type": "library",
  795. "installation-source": "dist",
  796. "autoload": {
  797. "files": [
  798. "autoload.php"
  799. ]
  800. },
  801. "notification-url": "https://packagist.org/downloads/",
  802. "license": [
  803. "ISC"
  804. ],
  805. "authors": [
  806. {
  807. "name": "Paragon Initiative Enterprises",
  808. "email": "security@paragonie.com"
  809. },
  810. {
  811. "name": "Frank Denis",
  812. "email": "jedisct1@pureftpd.org"
  813. }
  814. ],
  815. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  816. "keywords": [
  817. "Authentication",
  818. "BLAKE2b",
  819. "ChaCha20",
  820. "ChaCha20-Poly1305",
  821. "Chapoly",
  822. "Curve25519",
  823. "Ed25519",
  824. "EdDSA",
  825. "Edwards-curve Digital Signature Algorithm",
  826. "Elliptic Curve Diffie-Hellman",
  827. "Poly1305",
  828. "Pure-PHP cryptography",
  829. "RFC 7748",
  830. "RFC 8032",
  831. "Salpoly",
  832. "Salsa20",
  833. "X25519",
  834. "XChaCha20-Poly1305",
  835. "XSalsa20-Poly1305",
  836. "Xchacha20",
  837. "Xsalsa20",
  838. "aead",
  839. "cryptography",
  840. "ecdh",
  841. "elliptic curve",
  842. "elliptic curve cryptography",
  843. "encryption",
  844. "libsodium",
  845. "php",
  846. "public-key cryptography",
  847. "secret-key cryptography",
  848. "side-channel resistant"
  849. ]
  850. },
  851. {
  852. "name": "phpmailer/phpmailer",
  853. "version": "v6.1.4",
  854. "version_normalized": "6.1.4.0",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/PHPMailer/PHPMailer.git",
  858. "reference": "c5e61d0729507049cec9673aa1a679f9adefd683"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/c5e61d0729507049cec9673aa1a679f9adefd683",
  863. "reference": "c5e61d0729507049cec9673aa1a679f9adefd683",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "ext-ctype": "*",
  868. "ext-filter": "*",
  869. "php": ">=5.5.0"
  870. },
  871. "require-dev": {
  872. "doctrine/annotations": "^1.2",
  873. "friendsofphp/php-cs-fixer": "^2.2",
  874. "phpunit/phpunit": "^4.8 || ^5.7"
  875. },
  876. "suggest": {
  877. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  878. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  879. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  880. "psr/log": "For optional PSR-3 debug logging",
  881. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  882. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  883. },
  884. "time": "2019-12-10T11:17:38+00:00",
  885. "type": "library",
  886. "installation-source": "dist",
  887. "autoload": {
  888. "psr-4": {
  889. "PHPMailer\\PHPMailer\\": "src/"
  890. }
  891. },
  892. "notification-url": "https://packagist.org/downloads/",
  893. "license": [
  894. "LGPL-2.1-only"
  895. ],
  896. "authors": [
  897. {
  898. "name": "Marcus Bointon",
  899. "email": "phpmailer@synchromedia.co.uk"
  900. },
  901. {
  902. "name": "Jim Jagielski",
  903. "email": "jimjag@gmail.com"
  904. },
  905. {
  906. "name": "Andy Prevost",
  907. "email": "codeworxtech@users.sourceforge.net"
  908. },
  909. {
  910. "name": "Brent R. Matzelle"
  911. }
  912. ],
  913. "description": "PHPMailer is a full-featured email creation and transfer class for PHP"
  914. },
  915. {
  916. "name": "pragmarx/google2fa",
  917. "version": "v3.0.3",
  918. "version_normalized": "3.0.3.0",
  919. "source": {
  920. "type": "git",
  921. "url": "https://github.com/antonioribeiro/google2fa.git",
  922. "reference": "6949226739e4424f40031e6f1c96b1fd64047335"
  923. },
  924. "dist": {
  925. "type": "zip",
  926. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6949226739e4424f40031e6f1c96b1fd64047335",
  927. "reference": "6949226739e4424f40031e6f1c96b1fd64047335",
  928. "shasum": ""
  929. },
  930. "require": {
  931. "paragonie/constant_time_encoding": "~1.0|~2.0",
  932. "paragonie/random_compat": ">=1",
  933. "php": ">=5.4",
  934. "symfony/polyfill-php56": "~1.2"
  935. },
  936. "require-dev": {
  937. "bacon/bacon-qr-code": "~1.0",
  938. "phpunit/phpunit": "~4|~5|~6"
  939. },
  940. "suggest": {
  941. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  942. },
  943. "time": "2018-08-29T13:28:06+00:00",
  944. "type": "library",
  945. "extra": {
  946. "component": "package",
  947. "branch-alias": {
  948. "dev-master": "2.0-dev"
  949. }
  950. },
  951. "installation-source": "dist",
  952. "autoload": {
  953. "psr-4": {
  954. "PragmaRX\\Google2FA\\": "src/",
  955. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  956. }
  957. },
  958. "notification-url": "https://packagist.org/downloads/",
  959. "license": [
  960. "MIT"
  961. ],
  962. "authors": [
  963. {
  964. "name": "Antonio Carlos Ribeiro",
  965. "email": "acr@antoniocarlosribeiro.com",
  966. "role": "Creator & Designer"
  967. }
  968. ],
  969. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  970. "keywords": [
  971. "2fa",
  972. "Authentication",
  973. "Two Factor Authentication",
  974. "google2fa",
  975. "laravel"
  976. ]
  977. },
  978. {
  979. "name": "psr/container",
  980. "version": "1.0.0",
  981. "version_normalized": "1.0.0.0",
  982. "source": {
  983. "type": "git",
  984. "url": "https://github.com/php-fig/container.git",
  985. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  986. },
  987. "dist": {
  988. "type": "zip",
  989. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  990. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  991. "shasum": ""
  992. },
  993. "require": {
  994. "php": ">=5.3.0"
  995. },
  996. "time": "2017-02-14T16:28:37+00:00",
  997. "type": "library",
  998. "extra": {
  999. "branch-alias": {
  1000. "dev-master": "1.0.x-dev"
  1001. }
  1002. },
  1003. "installation-source": "dist",
  1004. "autoload": {
  1005. "psr-4": {
  1006. "Psr\\Container\\": "src/"
  1007. }
  1008. },
  1009. "notification-url": "https://packagist.org/downloads/",
  1010. "license": [
  1011. "MIT"
  1012. ],
  1013. "authors": [
  1014. {
  1015. "name": "PHP-FIG",
  1016. "homepage": "http://www.php-fig.org/"
  1017. }
  1018. ],
  1019. "description": "Common Container Interface (PHP FIG PSR-11)",
  1020. "homepage": "https://github.com/php-fig/container",
  1021. "keywords": [
  1022. "PSR-11",
  1023. "container",
  1024. "container-interface",
  1025. "container-interop",
  1026. "psr"
  1027. ]
  1028. },
  1029. {
  1030. "name": "psr/http-factory",
  1031. "version": "1.0.1",
  1032. "version_normalized": "1.0.1.0",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/php-fig/http-factory.git",
  1036. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1041. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "php": ">=7.0.0",
  1046. "psr/http-message": "^1.0"
  1047. },
  1048. "time": "2019-04-30T12:38:16+00:00",
  1049. "type": "library",
  1050. "extra": {
  1051. "branch-alias": {
  1052. "dev-master": "1.0.x-dev"
  1053. }
  1054. },
  1055. "installation-source": "dist",
  1056. "autoload": {
  1057. "psr-4": {
  1058. "Psr\\Http\\Message\\": "src/"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "MIT"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "PHP-FIG",
  1068. "homepage": "http://www.php-fig.org/"
  1069. }
  1070. ],
  1071. "description": "Common interfaces for PSR-7 HTTP message factories",
  1072. "keywords": [
  1073. "factory",
  1074. "http",
  1075. "message",
  1076. "psr",
  1077. "psr-17",
  1078. "psr-7",
  1079. "request",
  1080. "response"
  1081. ]
  1082. },
  1083. {
  1084. "name": "psr/http-message",
  1085. "version": "1.0.1",
  1086. "version_normalized": "1.0.1.0",
  1087. "source": {
  1088. "type": "git",
  1089. "url": "https://github.com/php-fig/http-message.git",
  1090. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1091. },
  1092. "dist": {
  1093. "type": "zip",
  1094. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1095. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1096. "shasum": ""
  1097. },
  1098. "require": {
  1099. "php": ">=5.3.0"
  1100. },
  1101. "time": "2016-08-06T14:39:51+00:00",
  1102. "type": "library",
  1103. "extra": {
  1104. "branch-alias": {
  1105. "dev-master": "1.0.x-dev"
  1106. }
  1107. },
  1108. "installation-source": "dist",
  1109. "autoload": {
  1110. "psr-4": {
  1111. "Psr\\Http\\Message\\": "src/"
  1112. }
  1113. },
  1114. "notification-url": "https://packagist.org/downloads/",
  1115. "license": [
  1116. "MIT"
  1117. ],
  1118. "authors": [
  1119. {
  1120. "name": "PHP-FIG",
  1121. "homepage": "http://www.php-fig.org/"
  1122. }
  1123. ],
  1124. "description": "Common interface for HTTP messages",
  1125. "homepage": "https://github.com/php-fig/http-message",
  1126. "keywords": [
  1127. "http",
  1128. "http-message",
  1129. "psr",
  1130. "psr-7",
  1131. "request",
  1132. "response"
  1133. ]
  1134. },
  1135. {
  1136. "name": "psr/http-server-handler",
  1137. "version": "1.0.1",
  1138. "version_normalized": "1.0.1.0",
  1139. "source": {
  1140. "type": "git",
  1141. "url": "https://github.com/php-fig/http-server-handler.git",
  1142. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  1143. },
  1144. "dist": {
  1145. "type": "zip",
  1146. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1147. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1148. "shasum": ""
  1149. },
  1150. "require": {
  1151. "php": ">=7.0",
  1152. "psr/http-message": "^1.0"
  1153. },
  1154. "time": "2018-10-30T16:46:14+00:00",
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "1.0.x-dev"
  1159. }
  1160. },
  1161. "installation-source": "dist",
  1162. "autoload": {
  1163. "psr-4": {
  1164. "Psr\\Http\\Server\\": "src/"
  1165. }
  1166. },
  1167. "notification-url": "https://packagist.org/downloads/",
  1168. "license": [
  1169. "MIT"
  1170. ],
  1171. "authors": [
  1172. {
  1173. "name": "PHP-FIG",
  1174. "homepage": "http://www.php-fig.org/"
  1175. }
  1176. ],
  1177. "description": "Common interface for HTTP server-side request handler",
  1178. "keywords": [
  1179. "handler",
  1180. "http",
  1181. "http-interop",
  1182. "psr",
  1183. "psr-15",
  1184. "psr-7",
  1185. "request",
  1186. "response",
  1187. "server"
  1188. ]
  1189. },
  1190. {
  1191. "name": "psr/http-server-middleware",
  1192. "version": "1.0.1",
  1193. "version_normalized": "1.0.1.0",
  1194. "source": {
  1195. "type": "git",
  1196. "url": "https://github.com/php-fig/http-server-middleware.git",
  1197. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  1198. },
  1199. "dist": {
  1200. "type": "zip",
  1201. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1202. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1203. "shasum": ""
  1204. },
  1205. "require": {
  1206. "php": ">=7.0",
  1207. "psr/http-message": "^1.0",
  1208. "psr/http-server-handler": "^1.0"
  1209. },
  1210. "time": "2018-10-30T17:12:04+00:00",
  1211. "type": "library",
  1212. "extra": {
  1213. "branch-alias": {
  1214. "dev-master": "1.0.x-dev"
  1215. }
  1216. },
  1217. "installation-source": "dist",
  1218. "autoload": {
  1219. "psr-4": {
  1220. "Psr\\Http\\Server\\": "src/"
  1221. }
  1222. },
  1223. "notification-url": "https://packagist.org/downloads/",
  1224. "license": [
  1225. "MIT"
  1226. ],
  1227. "authors": [
  1228. {
  1229. "name": "PHP-FIG",
  1230. "homepage": "http://www.php-fig.org/"
  1231. }
  1232. ],
  1233. "description": "Common interface for HTTP server-side middleware",
  1234. "keywords": [
  1235. "http",
  1236. "http-interop",
  1237. "middleware",
  1238. "psr",
  1239. "psr-15",
  1240. "psr-7",
  1241. "request",
  1242. "response"
  1243. ]
  1244. },
  1245. {
  1246. "name": "psr/log",
  1247. "version": "1.1.0",
  1248. "version_normalized": "1.1.0.0",
  1249. "source": {
  1250. "type": "git",
  1251. "url": "https://github.com/php-fig/log.git",
  1252. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  1253. },
  1254. "dist": {
  1255. "type": "zip",
  1256. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1257. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1258. "shasum": ""
  1259. },
  1260. "require": {
  1261. "php": ">=5.3.0"
  1262. },
  1263. "time": "2018-11-20T15:27:04+00:00",
  1264. "type": "library",
  1265. "extra": {
  1266. "branch-alias": {
  1267. "dev-master": "1.0.x-dev"
  1268. }
  1269. },
  1270. "installation-source": "dist",
  1271. "autoload": {
  1272. "psr-4": {
  1273. "Psr\\Log\\": "Psr/Log/"
  1274. }
  1275. },
  1276. "notification-url": "https://packagist.org/downloads/",
  1277. "license": [
  1278. "MIT"
  1279. ],
  1280. "authors": [
  1281. {
  1282. "name": "PHP-FIG",
  1283. "homepage": "http://www.php-fig.org/"
  1284. }
  1285. ],
  1286. "description": "Common interface for logging libraries",
  1287. "homepage": "https://github.com/php-fig/log",
  1288. "keywords": [
  1289. "log",
  1290. "psr",
  1291. "psr-3"
  1292. ]
  1293. },
  1294. {
  1295. "name": "psr/simple-cache",
  1296. "version": "1.0.1",
  1297. "version_normalized": "1.0.1.0",
  1298. "source": {
  1299. "type": "git",
  1300. "url": "https://github.com/php-fig/simple-cache.git",
  1301. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1302. },
  1303. "dist": {
  1304. "type": "zip",
  1305. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1306. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1307. "shasum": ""
  1308. },
  1309. "require": {
  1310. "php": ">=5.3.0"
  1311. },
  1312. "time": "2017-10-23T01:57:42+00:00",
  1313. "type": "library",
  1314. "extra": {
  1315. "branch-alias": {
  1316. "dev-master": "1.0.x-dev"
  1317. }
  1318. },
  1319. "installation-source": "dist",
  1320. "autoload": {
  1321. "psr-4": {
  1322. "Psr\\SimpleCache\\": "src/"
  1323. }
  1324. },
  1325. "notification-url": "https://packagist.org/downloads/",
  1326. "license": [
  1327. "MIT"
  1328. ],
  1329. "authors": [
  1330. {
  1331. "name": "PHP-FIG",
  1332. "homepage": "http://www.php-fig.org/"
  1333. }
  1334. ],
  1335. "description": "Common interfaces for simple caching",
  1336. "keywords": [
  1337. "cache",
  1338. "caching",
  1339. "psr",
  1340. "psr-16",
  1341. "simple-cache"
  1342. ]
  1343. },
  1344. {
  1345. "name": "pusher/pusher-php-server",
  1346. "version": "v4.1.1",
  1347. "version_normalized": "4.1.1.0",
  1348. "source": {
  1349. "type": "git",
  1350. "url": "https://github.com/pusher/pusher-http-php.git",
  1351. "reference": "3c05ef64839845b6114396ff8406712cba052750"
  1352. },
  1353. "dist": {
  1354. "type": "zip",
  1355. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/3c05ef64839845b6114396ff8406712cba052750",
  1356. "reference": "3c05ef64839845b6114396ff8406712cba052750",
  1357. "shasum": ""
  1358. },
  1359. "require": {
  1360. "ext-curl": "*",
  1361. "paragonie/sodium_compat": "^1.6",
  1362. "php": "^7.1",
  1363. "psr/log": "^1.0"
  1364. },
  1365. "require-dev": {
  1366. "phpunit/phpunit": "^7.2"
  1367. },
  1368. "time": "2019-12-03T13:29:13+00:00",
  1369. "type": "library",
  1370. "extra": {
  1371. "branch-alias": {
  1372. "dev-master": "3.4-dev"
  1373. }
  1374. },
  1375. "installation-source": "dist",
  1376. "autoload": {
  1377. "psr-4": {
  1378. "Pusher\\": "src/"
  1379. }
  1380. },
  1381. "notification-url": "https://packagist.org/downloads/",
  1382. "license": [
  1383. "MIT"
  1384. ],
  1385. "description": "Library for interacting with the Pusher REST API",
  1386. "keywords": [
  1387. "events",
  1388. "messaging",
  1389. "php-pusher-server",
  1390. "publish",
  1391. "push",
  1392. "pusher",
  1393. "real time",
  1394. "real-time",
  1395. "realtime",
  1396. "rest",
  1397. "trigger"
  1398. ]
  1399. },
  1400. {
  1401. "name": "ralouphie/getallheaders",
  1402. "version": "3.0.3",
  1403. "version_normalized": "3.0.3.0",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/ralouphie/getallheaders.git",
  1407. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1412. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1413. "shasum": ""
  1414. },
  1415. "require": {
  1416. "php": ">=5.6"
  1417. },
  1418. "require-dev": {
  1419. "php-coveralls/php-coveralls": "^2.1",
  1420. "phpunit/phpunit": "^5 || ^6.5"
  1421. },
  1422. "time": "2019-03-08T08:55:37+00:00",
  1423. "type": "library",
  1424. "installation-source": "dist",
  1425. "autoload": {
  1426. "files": [
  1427. "src/getallheaders.php"
  1428. ]
  1429. },
  1430. "notification-url": "https://packagist.org/downloads/",
  1431. "license": [
  1432. "MIT"
  1433. ],
  1434. "authors": [
  1435. {
  1436. "name": "Ralph Khattar",
  1437. "email": "ralph.khattar@gmail.com"
  1438. }
  1439. ],
  1440. "description": "A polyfill for getallheaders."
  1441. },
  1442. {
  1443. "name": "rmccue/requests",
  1444. "version": "v1.7.0",
  1445. "version_normalized": "1.7.0.0",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/rmccue/Requests.git",
  1449. "reference": "87932f52ffad70504d93f04f15690cf16a089546"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/rmccue/Requests/zipball/87932f52ffad70504d93f04f15690cf16a089546",
  1454. "reference": "87932f52ffad70504d93f04f15690cf16a089546",
  1455. "shasum": ""
  1456. },
  1457. "require": {
  1458. "php": ">=5.2"
  1459. },
  1460. "require-dev": {
  1461. "requests/test-server": "dev-master"
  1462. },
  1463. "time": "2016-10-13T00:11:37+00:00",
  1464. "type": "library",
  1465. "installation-source": "dist",
  1466. "autoload": {
  1467. "psr-0": {
  1468. "Requests": "library/"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "ISC"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Ryan McCue",
  1478. "homepage": "http://ryanmccue.info"
  1479. }
  1480. ],
  1481. "description": "A HTTP library written in PHP, for human beings.",
  1482. "homepage": "http://github.com/rmccue/Requests",
  1483. "keywords": [
  1484. "curl",
  1485. "fsockopen",
  1486. "http",
  1487. "idna",
  1488. "ipv6",
  1489. "iri",
  1490. "sockets"
  1491. ]
  1492. },
  1493. {
  1494. "name": "slim/slim",
  1495. "version": "4.0.0",
  1496. "version_normalized": "4.0.0.0",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/slimphp/Slim.git",
  1500. "reference": "2b0ed80b2ab4acfb5e7648797b8202e4d9aea06d"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/slimphp/Slim/zipball/2b0ed80b2ab4acfb5e7648797b8202e4d9aea06d",
  1505. "reference": "2b0ed80b2ab4acfb5e7648797b8202e4d9aea06d",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "ext-json": "*",
  1510. "nikic/fast-route": "^1.3",
  1511. "php": "^7.1",
  1512. "psr/container": "^1.0",
  1513. "psr/http-factory": "^1.0",
  1514. "psr/http-message": "^1.0",
  1515. "psr/http-server-handler": "^1.0",
  1516. "psr/http-server-middleware": "^1.0"
  1517. },
  1518. "require-dev": {
  1519. "ext-simplexml": "*",
  1520. "guzzlehttp/psr7": "^1.5",
  1521. "http-interop/http-factory-guzzle": "^1.0",
  1522. "nyholm/psr7": "^1.1",
  1523. "nyholm/psr7-server": "^0.3.0",
  1524. "phpspec/prophecy": "^1.8",
  1525. "phpstan/phpstan": "^0.11.5",
  1526. "phpunit/phpunit": "^7.5",
  1527. "slim/http": "^0.7",
  1528. "slim/psr7": "^0.3",
  1529. "squizlabs/php_codesniffer": "^3.4.2",
  1530. "zendframework/zend-diactoros": "^2.1"
  1531. },
  1532. "suggest": {
  1533. "slim/psr7": "Slim PSR-7 implementation. See http://www.slimframework.com/docs/v4/start/installation.html for more information."
  1534. },
  1535. "time": "2019-08-01T16:11:29+00:00",
  1536. "type": "library",
  1537. "installation-source": "dist",
  1538. "autoload": {
  1539. "psr-4": {
  1540. "Slim\\": "Slim",
  1541. "Slim\\Tests\\": "tests"
  1542. }
  1543. },
  1544. "notification-url": "https://packagist.org/downloads/",
  1545. "license": [
  1546. "MIT"
  1547. ],
  1548. "authors": [
  1549. {
  1550. "name": "Josh Lockhart",
  1551. "email": "hello@joshlockhart.com",
  1552. "homepage": "https://joshlockhart.com"
  1553. },
  1554. {
  1555. "name": "Andrew Smith",
  1556. "email": "a.smith@silentworks.co.uk",
  1557. "homepage": "http://silentworks.co.uk"
  1558. },
  1559. {
  1560. "name": "Rob Allen",
  1561. "email": "rob@akrabat.com",
  1562. "homepage": "http://akrabat.com"
  1563. },
  1564. {
  1565. "name": "Pierre Berube",
  1566. "email": "pierre@lgse.com",
  1567. "homepage": "http://www.lgse.com"
  1568. },
  1569. {
  1570. "name": "Gabriel Manricks",
  1571. "email": "gmanricks@me.com",
  1572. "homepage": "http://gabrielmanricks.com"
  1573. }
  1574. ],
  1575. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  1576. "homepage": "https://slimframework.com",
  1577. "keywords": [
  1578. "api",
  1579. "framework",
  1580. "micro",
  1581. "router"
  1582. ]
  1583. },
  1584. {
  1585. "name": "symfony/polyfill-mbstring",
  1586. "version": "v1.14.0",
  1587. "version_normalized": "1.14.0.0",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1591. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2",
  1596. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2",
  1597. "shasum": ""
  1598. },
  1599. "require": {
  1600. "php": ">=5.3.3"
  1601. },
  1602. "suggest": {
  1603. "ext-mbstring": "For best performance"
  1604. },
  1605. "time": "2020-01-13T11:15:53+00:00",
  1606. "type": "library",
  1607. "extra": {
  1608. "branch-alias": {
  1609. "dev-master": "1.14-dev"
  1610. }
  1611. },
  1612. "installation-source": "dist",
  1613. "autoload": {
  1614. "psr-4": {
  1615. "Symfony\\Polyfill\\Mbstring\\": ""
  1616. },
  1617. "files": [
  1618. "bootstrap.php"
  1619. ]
  1620. },
  1621. "notification-url": "https://packagist.org/downloads/",
  1622. "license": [
  1623. "MIT"
  1624. ],
  1625. "authors": [
  1626. {
  1627. "name": "Nicolas Grekas",
  1628. "email": "p@tchwork.com"
  1629. },
  1630. {
  1631. "name": "Symfony Community",
  1632. "homepage": "https://symfony.com/contributors"
  1633. }
  1634. ],
  1635. "description": "Symfony polyfill for the Mbstring extension",
  1636. "homepage": "https://symfony.com",
  1637. "keywords": [
  1638. "compatibility",
  1639. "mbstring",
  1640. "polyfill",
  1641. "portable",
  1642. "shim"
  1643. ]
  1644. },
  1645. {
  1646. "name": "symfony/polyfill-php56",
  1647. "version": "v1.9.0",
  1648. "version_normalized": "1.9.0.0",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/symfony/polyfill-php56.git",
  1652. "reference": "7b4fc009172cc0196535b0328bd1226284a28000"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000",
  1657. "reference": "7b4fc009172cc0196535b0328bd1226284a28000",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "php": ">=5.3.3",
  1662. "symfony/polyfill-util": "~1.0"
  1663. },
  1664. "time": "2018-08-06T14:22:27+00:00",
  1665. "type": "library",
  1666. "extra": {
  1667. "branch-alias": {
  1668. "dev-master": "1.9-dev"
  1669. }
  1670. },
  1671. "installation-source": "dist",
  1672. "autoload": {
  1673. "psr-4": {
  1674. "Symfony\\Polyfill\\Php56\\": ""
  1675. },
  1676. "files": [
  1677. "bootstrap.php"
  1678. ]
  1679. },
  1680. "notification-url": "https://packagist.org/downloads/",
  1681. "license": [
  1682. "MIT"
  1683. ],
  1684. "authors": [
  1685. {
  1686. "name": "Nicolas Grekas",
  1687. "email": "p@tchwork.com"
  1688. },
  1689. {
  1690. "name": "Symfony Community",
  1691. "homepage": "https://symfony.com/contributors"
  1692. }
  1693. ],
  1694. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  1695. "homepage": "https://symfony.com",
  1696. "keywords": [
  1697. "compatibility",
  1698. "polyfill",
  1699. "portable",
  1700. "shim"
  1701. ]
  1702. },
  1703. {
  1704. "name": "symfony/polyfill-php72",
  1705. "version": "v1.10.0",
  1706. "version_normalized": "1.10.0.0",
  1707. "source": {
  1708. "type": "git",
  1709. "url": "https://github.com/symfony/polyfill-php72.git",
  1710. "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631"
  1711. },
  1712. "dist": {
  1713. "type": "zip",
  1714. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
  1715. "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
  1716. "shasum": ""
  1717. },
  1718. "require": {
  1719. "php": ">=5.3.3"
  1720. },
  1721. "time": "2018-09-21T13:07:52+00:00",
  1722. "type": "library",
  1723. "extra": {
  1724. "branch-alias": {
  1725. "dev-master": "1.9-dev"
  1726. }
  1727. },
  1728. "installation-source": "dist",
  1729. "autoload": {
  1730. "psr-4": {
  1731. "Symfony\\Polyfill\\Php72\\": ""
  1732. },
  1733. "files": [
  1734. "bootstrap.php"
  1735. ]
  1736. },
  1737. "notification-url": "https://packagist.org/downloads/",
  1738. "license": [
  1739. "MIT"
  1740. ],
  1741. "authors": [
  1742. {
  1743. "name": "Nicolas Grekas",
  1744. "email": "p@tchwork.com"
  1745. },
  1746. {
  1747. "name": "Symfony Community",
  1748. "homepage": "https://symfony.com/contributors"
  1749. }
  1750. ],
  1751. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  1752. "homepage": "https://symfony.com",
  1753. "keywords": [
  1754. "compatibility",
  1755. "polyfill",
  1756. "portable",
  1757. "shim"
  1758. ]
  1759. },
  1760. {
  1761. "name": "symfony/polyfill-util",
  1762. "version": "v1.9.0",
  1763. "version_normalized": "1.9.0.0",
  1764. "source": {
  1765. "type": "git",
  1766. "url": "https://github.com/symfony/polyfill-util.git",
  1767. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581"
  1768. },
  1769. "dist": {
  1770. "type": "zip",
  1771. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  1772. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  1773. "shasum": ""
  1774. },
  1775. "require": {
  1776. "php": ">=5.3.3"
  1777. },
  1778. "time": "2018-08-06T14:22:27+00:00",
  1779. "type": "library",
  1780. "extra": {
  1781. "branch-alias": {
  1782. "dev-master": "1.9-dev"
  1783. }
  1784. },
  1785. "installation-source": "dist",
  1786. "autoload": {
  1787. "psr-4": {
  1788. "Symfony\\Polyfill\\Util\\": ""
  1789. }
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "MIT"
  1794. ],
  1795. "authors": [
  1796. {
  1797. "name": "Nicolas Grekas",
  1798. "email": "p@tchwork.com"
  1799. },
  1800. {
  1801. "name": "Symfony Community",
  1802. "homepage": "https://symfony.com/contributors"
  1803. }
  1804. ],
  1805. "description": "Symfony utilities for portability of PHP codes",
  1806. "homepage": "https://symfony.com",
  1807. "keywords": [
  1808. "compat",
  1809. "compatibility",
  1810. "polyfill",
  1811. "shim"
  1812. ]
  1813. },
  1814. {
  1815. "name": "symfony/var-dumper",
  1816. "version": "v4.2.3",
  1817. "version_normalized": "4.2.3.0",
  1818. "source": {
  1819. "type": "git",
  1820. "url": "https://github.com/symfony/var-dumper.git",
  1821. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17"
  1822. },
  1823. "dist": {
  1824. "type": "zip",
  1825. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/223bda89f9be41cf7033eeaf11bc61a280489c17",
  1826. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17",
  1827. "shasum": ""
  1828. },
  1829. "require": {
  1830. "php": "^7.1.3",
  1831. "symfony/polyfill-mbstring": "~1.0",
  1832. "symfony/polyfill-php72": "~1.5"
  1833. },
  1834. "conflict": {
  1835. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  1836. "symfony/console": "<3.4"
  1837. },
  1838. "require-dev": {
  1839. "ext-iconv": "*",
  1840. "symfony/console": "~3.4|~4.0",
  1841. "symfony/process": "~3.4|~4.0",
  1842. "twig/twig": "~1.34|~2.4"
  1843. },
  1844. "suggest": {
  1845. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  1846. "ext-intl": "To show region name in time zone dump",
  1847. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  1848. },
  1849. "time": "2019-01-30T11:44:30+00:00",
  1850. "bin": [
  1851. "Resources/bin/var-dump-server"
  1852. ],
  1853. "type": "library",
  1854. "extra": {
  1855. "branch-alias": {
  1856. "dev-master": "4.2-dev"
  1857. }
  1858. },
  1859. "installation-source": "dist",
  1860. "autoload": {
  1861. "files": [
  1862. "Resources/functions/dump.php"
  1863. ],
  1864. "psr-4": {
  1865. "Symfony\\Component\\VarDumper\\": ""
  1866. },
  1867. "exclude-from-classmap": [
  1868. "/Tests/"
  1869. ]
  1870. },
  1871. "notification-url": "https://packagist.org/downloads/",
  1872. "license": [
  1873. "MIT"
  1874. ],
  1875. "authors": [
  1876. {
  1877. "name": "Nicolas Grekas",
  1878. "email": "p@tchwork.com"
  1879. },
  1880. {
  1881. "name": "Symfony Community",
  1882. "homepage": "https://symfony.com/contributors"
  1883. }
  1884. ],
  1885. "description": "Symfony mechanism for exploring and dumping PHP variables",
  1886. "homepage": "https://symfony.com",
  1887. "keywords": [
  1888. "debug",
  1889. "dump"
  1890. ]
  1891. },
  1892. {
  1893. "name": "tightenco/collect",
  1894. "version": "v5.7.27",
  1895. "version_normalized": "5.7.27.0",
  1896. "source": {
  1897. "type": "git",
  1898. "url": "https://github.com/tightenco/collect.git",
  1899. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00"
  1900. },
  1901. "dist": {
  1902. "type": "zip",
  1903. "url": "https://api.github.com/repos/tightenco/collect/zipball/c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  1904. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  1905. "shasum": ""
  1906. },
  1907. "require": {
  1908. "php": "^7.1.3",
  1909. "symfony/var-dumper": ">=3.4 <5"
  1910. },
  1911. "require-dev": {
  1912. "mockery/mockery": "^1.0",
  1913. "nesbot/carbon": "^1.26.3",
  1914. "phpunit/phpunit": "^7.0"
  1915. },
  1916. "time": "2019-02-13T19:40:13+00:00",
  1917. "type": "library",
  1918. "installation-source": "dist",
  1919. "autoload": {
  1920. "files": [
  1921. "src/Collect/Support/helpers.php",
  1922. "src/Collect/Support/alias.php"
  1923. ],
  1924. "psr-4": {
  1925. "Tightenco\\Collect\\": "src/Collect"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "authors": [
  1933. {
  1934. "name": "Taylor Otwell",
  1935. "email": "taylorotwell@gmail.com"
  1936. }
  1937. ],
  1938. "description": "Collect - Illuminate Collections as a separate package.",
  1939. "keywords": [
  1940. "collection",
  1941. "laravel"
  1942. ]
  1943. }
  1944. ]