installed.json 98 KB

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