installed.json 117 KB

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