installed.json 113 KB

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