composer.lock 112 KB

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