4
0

installed.json 117 KB

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