installed.json 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588
  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": "monolog/monolog",
  1020. "version": "1.26.1",
  1021. "version_normalized": "1.26.1.0",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/Seldaek/monolog.git",
  1025. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1030. "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "php": ">=5.3.0",
  1035. "psr/log": "~1.0"
  1036. },
  1037. "provide": {
  1038. "psr/log-implementation": "1.0.0"
  1039. },
  1040. "require-dev": {
  1041. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1042. "doctrine/couchdb": "~1.0@dev",
  1043. "graylog2/gelf-php": "~1.0",
  1044. "php-amqplib/php-amqplib": "~2.4",
  1045. "php-console/php-console": "^3.1.3",
  1046. "phpstan/phpstan": "^0.12.59",
  1047. "phpunit/phpunit": "~4.5",
  1048. "ruflin/elastica": ">=0.90 <3.0",
  1049. "sentry/sentry": "^0.13",
  1050. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1051. },
  1052. "suggest": {
  1053. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1054. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1055. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1056. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1057. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1058. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1059. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1060. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1061. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1062. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1063. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1064. },
  1065. "time": "2021-05-28T08:32:12+00:00",
  1066. "type": "library",
  1067. "installation-source": "dist",
  1068. "autoload": {
  1069. "psr-4": {
  1070. "Monolog\\": "src/Monolog"
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "Jordi Boggiano",
  1080. "email": "j.boggiano@seld.be",
  1081. "homepage": "http://seld.be"
  1082. }
  1083. ],
  1084. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1085. "homepage": "http://github.com/Seldaek/monolog",
  1086. "keywords": [
  1087. "log",
  1088. "logging",
  1089. "psr-3"
  1090. ],
  1091. "support": {
  1092. "issues": "https://github.com/Seldaek/monolog/issues",
  1093. "source": "https://github.com/Seldaek/monolog/tree/1.26.1"
  1094. },
  1095. "funding": [
  1096. {
  1097. "url": "https://github.com/Seldaek",
  1098. "type": "github"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "install-path": "../monolog/monolog"
  1106. },
  1107. {
  1108. "name": "myclabs/php-enum",
  1109. "version": "1.8.0",
  1110. "version_normalized": "1.8.0.0",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/myclabs/php-enum.git",
  1114. "reference": "46cf3d8498b095bd33727b13fd5707263af99421"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/46cf3d8498b095bd33727b13fd5707263af99421",
  1119. "reference": "46cf3d8498b095bd33727b13fd5707263af99421",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "ext-json": "*",
  1124. "php": "^7.3 || ^8.0"
  1125. },
  1126. "require-dev": {
  1127. "phpunit/phpunit": "^9.5",
  1128. "squizlabs/php_codesniffer": "1.*",
  1129. "vimeo/psalm": "^4.5.1"
  1130. },
  1131. "time": "2021-02-15T16:11:48+00:00",
  1132. "type": "library",
  1133. "installation-source": "dist",
  1134. "autoload": {
  1135. "psr-4": {
  1136. "MyCLabs\\Enum\\": "src/"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "authors": [
  1144. {
  1145. "name": "PHP Enum contributors",
  1146. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  1147. }
  1148. ],
  1149. "description": "PHP Enum implementation",
  1150. "homepage": "http://github.com/myclabs/php-enum",
  1151. "keywords": [
  1152. "enum"
  1153. ],
  1154. "support": {
  1155. "issues": "https://github.com/myclabs/php-enum/issues",
  1156. "source": "https://github.com/myclabs/php-enum/tree/1.8.0"
  1157. },
  1158. "funding": [
  1159. {
  1160. "url": "https://github.com/mnapoli",
  1161. "type": "github"
  1162. },
  1163. {
  1164. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1165. "type": "tidelift"
  1166. }
  1167. ],
  1168. "install-path": "../myclabs/php-enum"
  1169. },
  1170. {
  1171. "name": "nekonomokochan/php-json-logger",
  1172. "version": "v1.3.1",
  1173. "version_normalized": "1.3.1.0",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/nekonomokochan/php-json-logger.git",
  1177. "reference": "6df126a82940a00d8ea2da6e0b7c58e3e57eb132"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/nekonomokochan/php-json-logger/zipball/6df126a82940a00d8ea2da6e0b7c58e3e57eb132",
  1182. "reference": "6df126a82940a00d8ea2da6e0b7c58e3e57eb132",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "monolog/monolog": "^1.24",
  1187. "php": "~7.1",
  1188. "ramsey/uuid": "^3.8"
  1189. },
  1190. "require-dev": {
  1191. "friendsofphp/php-cs-fixer": "^2.14",
  1192. "php": "~7.1",
  1193. "php-coveralls/php-coveralls": "^2.1",
  1194. "phpunit/phpcov": "^5.0",
  1195. "phpunit/phpunit": "^7.5"
  1196. },
  1197. "time": "2019-02-18T06:07:14+00:00",
  1198. "type": "library",
  1199. "installation-source": "dist",
  1200. "autoload": {
  1201. "psr-4": {
  1202. "Nekonomokochan\\PhpJsonLogger\\": "src/PhpJsonLogger"
  1203. }
  1204. },
  1205. "notification-url": "https://packagist.org/downloads/",
  1206. "license": [
  1207. "MIT"
  1208. ],
  1209. "authors": [
  1210. {
  1211. "name": "keitakn",
  1212. "email": "keita.koga.work@gmail.com"
  1213. }
  1214. ],
  1215. "description": "LoggingLibrary for PHP. Output by JSON Format",
  1216. "support": {
  1217. "issues": "https://github.com/nekonomokochan/php-json-logger/issues",
  1218. "source": "https://github.com/nekonomokochan/php-json-logger/tree/feature/issue63"
  1219. },
  1220. "install-path": "../nekonomokochan/php-json-logger"
  1221. },
  1222. {
  1223. "name": "nikic/fast-route",
  1224. "version": "v1.3.0",
  1225. "version_normalized": "1.3.0.0",
  1226. "source": {
  1227. "type": "git",
  1228. "url": "https://github.com/nikic/FastRoute.git",
  1229. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1230. },
  1231. "dist": {
  1232. "type": "zip",
  1233. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1234. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1235. "shasum": ""
  1236. },
  1237. "require": {
  1238. "php": ">=5.4.0"
  1239. },
  1240. "require-dev": {
  1241. "phpunit/phpunit": "^4.8.35|~5.7"
  1242. },
  1243. "time": "2018-02-13T20:26:39+00:00",
  1244. "type": "library",
  1245. "installation-source": "dist",
  1246. "autoload": {
  1247. "psr-4": {
  1248. "FastRoute\\": "src/"
  1249. },
  1250. "files": [
  1251. "src/functions.php"
  1252. ]
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "BSD-3-Clause"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Nikita Popov",
  1261. "email": "nikic@php.net"
  1262. }
  1263. ],
  1264. "description": "Fast request router for PHP",
  1265. "keywords": [
  1266. "router",
  1267. "routing"
  1268. ],
  1269. "install-path": "../nikic/fast-route"
  1270. },
  1271. {
  1272. "name": "paquettg/php-html-parser",
  1273. "version": "3.1.1",
  1274. "version_normalized": "3.1.1.0",
  1275. "source": {
  1276. "type": "git",
  1277. "url": "https://github.com/paquettg/php-html-parser.git",
  1278. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629"
  1279. },
  1280. "dist": {
  1281. "type": "zip",
  1282. "url": "https://api.github.com/repos/paquettg/php-html-parser/zipball/4e01a438ad5961cc2d7427eb9798d213c8a12629",
  1283. "reference": "4e01a438ad5961cc2d7427eb9798d213c8a12629",
  1284. "shasum": ""
  1285. },
  1286. "require": {
  1287. "ext-curl": "*",
  1288. "ext-mbstring": "*",
  1289. "ext-zlib": "*",
  1290. "guzzlehttp/guzzle": "^7.0",
  1291. "guzzlehttp/psr7": "^1.6",
  1292. "myclabs/php-enum": "^1.7",
  1293. "paquettg/string-encode": "~1.0.0",
  1294. "php": ">=7.2",
  1295. "php-http/httplug": "^2.1"
  1296. },
  1297. "require-dev": {
  1298. "friendsofphp/php-cs-fixer": "^2.16",
  1299. "infection/infection": "^0.13.4",
  1300. "mockery/mockery": "^1.2",
  1301. "phan/phan": "^2.4",
  1302. "phpunit/phpunit": "^7.5.1"
  1303. },
  1304. "time": "2020-11-01T20:34:43+00:00",
  1305. "type": "library",
  1306. "installation-source": "dist",
  1307. "autoload": {
  1308. "psr-4": {
  1309. "PHPHtmlParser\\": "src/PHPHtmlParser"
  1310. }
  1311. },
  1312. "notification-url": "https://packagist.org/downloads/",
  1313. "license": [
  1314. "MIT"
  1315. ],
  1316. "authors": [
  1317. {
  1318. "name": "Gilles Paquette",
  1319. "email": "paquettg@gmail.com",
  1320. "homepage": "http://gillespaquette.ca"
  1321. }
  1322. ],
  1323. "description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
  1324. "homepage": "https://github.com/paquettg/php-html-parser",
  1325. "keywords": [
  1326. "dom",
  1327. "html",
  1328. "parser"
  1329. ],
  1330. "support": {
  1331. "issues": "https://github.com/paquettg/php-html-parser/issues",
  1332. "source": "https://github.com/paquettg/php-html-parser/tree/3.1.1"
  1333. },
  1334. "funding": [
  1335. {
  1336. "url": "https://tidelift.com/funding/github/packagist/paquettg/php-html-parser",
  1337. "type": "tidelift"
  1338. }
  1339. ],
  1340. "install-path": "../paquettg/php-html-parser"
  1341. },
  1342. {
  1343. "name": "paquettg/string-encode",
  1344. "version": "1.0.1",
  1345. "version_normalized": "1.0.1.0",
  1346. "source": {
  1347. "type": "git",
  1348. "url": "https://github.com/paquettg/string-encoder.git",
  1349. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee"
  1350. },
  1351. "dist": {
  1352. "type": "zip",
  1353. "url": "https://api.github.com/repos/paquettg/string-encoder/zipball/a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  1354. "reference": "a8708e9fac9d5ddfc8fc2aac6004e2cd05d80fee",
  1355. "shasum": ""
  1356. },
  1357. "require": {
  1358. "php": ">=7.1"
  1359. },
  1360. "require-dev": {
  1361. "phpunit/phpunit": "^7.5.1"
  1362. },
  1363. "time": "2018-12-21T02:25:09+00:00",
  1364. "type": "library",
  1365. "installation-source": "dist",
  1366. "autoload": {
  1367. "psr-0": {
  1368. "stringEncode": "src/"
  1369. }
  1370. },
  1371. "notification-url": "https://packagist.org/downloads/",
  1372. "license": [
  1373. "MIT"
  1374. ],
  1375. "authors": [
  1376. {
  1377. "name": "Gilles Paquette",
  1378. "email": "paquettg@gmail.com",
  1379. "homepage": "http://gillespaquette.ca"
  1380. }
  1381. ],
  1382. "description": "Facilitating the process of altering string encoding in PHP.",
  1383. "homepage": "https://github.com/paquettg/string-encoder",
  1384. "keywords": [
  1385. "charset",
  1386. "encoding",
  1387. "string"
  1388. ],
  1389. "support": {
  1390. "issues": "https://github.com/paquettg/string-encoder/issues",
  1391. "source": "https://github.com/paquettg/string-encoder/tree/1.0.1"
  1392. },
  1393. "install-path": "../paquettg/string-encode"
  1394. },
  1395. {
  1396. "name": "paragonie/constant_time_encoding",
  1397. "version": "v2.2.2",
  1398. "version_normalized": "2.2.2.0",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/paragonie/constant_time_encoding.git",
  1402. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  1407. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "php": "^7"
  1412. },
  1413. "require-dev": {
  1414. "phpunit/phpunit": "^6|^7",
  1415. "vimeo/psalm": "^1"
  1416. },
  1417. "time": "2018-03-10T19:47:49+00:00",
  1418. "type": "library",
  1419. "installation-source": "dist",
  1420. "autoload": {
  1421. "psr-4": {
  1422. "ParagonIE\\ConstantTime\\": "src/"
  1423. }
  1424. },
  1425. "notification-url": "https://packagist.org/downloads/",
  1426. "license": [
  1427. "MIT"
  1428. ],
  1429. "authors": [
  1430. {
  1431. "name": "Paragon Initiative Enterprises",
  1432. "email": "security@paragonie.com",
  1433. "homepage": "https://paragonie.com",
  1434. "role": "Maintainer"
  1435. },
  1436. {
  1437. "name": "Steve 'Sc00bz' Thomas",
  1438. "email": "steve@tobtu.com",
  1439. "homepage": "https://www.tobtu.com",
  1440. "role": "Original Developer"
  1441. }
  1442. ],
  1443. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  1444. "keywords": [
  1445. "base16",
  1446. "base32",
  1447. "base32_decode",
  1448. "base32_encode",
  1449. "base64",
  1450. "base64_decode",
  1451. "base64_encode",
  1452. "bin2hex",
  1453. "encoding",
  1454. "hex",
  1455. "hex2bin",
  1456. "rfc4648"
  1457. ],
  1458. "install-path": "../paragonie/constant_time_encoding"
  1459. },
  1460. {
  1461. "name": "paragonie/random_compat",
  1462. "version": "v9.99.100",
  1463. "version_normalized": "9.99.100.0",
  1464. "source": {
  1465. "type": "git",
  1466. "url": "https://github.com/paragonie/random_compat.git",
  1467. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  1468. },
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1472. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "php": ">= 7"
  1477. },
  1478. "require-dev": {
  1479. "phpunit/phpunit": "4.*|5.*",
  1480. "vimeo/psalm": "^1"
  1481. },
  1482. "suggest": {
  1483. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1484. },
  1485. "time": "2020-10-15T08:29:30+00:00",
  1486. "type": "library",
  1487. "installation-source": "dist",
  1488. "notification-url": "https://packagist.org/downloads/",
  1489. "license": [
  1490. "MIT"
  1491. ],
  1492. "authors": [
  1493. {
  1494. "name": "Paragon Initiative Enterprises",
  1495. "email": "security@paragonie.com",
  1496. "homepage": "https://paragonie.com"
  1497. }
  1498. ],
  1499. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1500. "keywords": [
  1501. "csprng",
  1502. "polyfill",
  1503. "pseudorandom",
  1504. "random"
  1505. ],
  1506. "support": {
  1507. "email": "info@paragonie.com",
  1508. "issues": "https://github.com/paragonie/random_compat/issues",
  1509. "source": "https://github.com/paragonie/random_compat"
  1510. },
  1511. "install-path": "../paragonie/random_compat"
  1512. },
  1513. {
  1514. "name": "paragonie/sodium_compat",
  1515. "version": "v1.6.4",
  1516. "version_normalized": "1.6.4.0",
  1517. "source": {
  1518. "type": "git",
  1519. "url": "https://github.com/paragonie/sodium_compat.git",
  1520. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c"
  1521. },
  1522. "dist": {
  1523. "type": "zip",
  1524. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/3f2fd07977541b4d630ea0365ad0eceddee5179c",
  1525. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c",
  1526. "shasum": ""
  1527. },
  1528. "require": {
  1529. "paragonie/random_compat": ">=1",
  1530. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7"
  1531. },
  1532. "require-dev": {
  1533. "phpunit/phpunit": "^3|^4|^5"
  1534. },
  1535. "suggest": {
  1536. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  1537. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  1538. },
  1539. "time": "2018-08-29T22:02:48+00:00",
  1540. "type": "library",
  1541. "installation-source": "dist",
  1542. "autoload": {
  1543. "files": [
  1544. "autoload.php"
  1545. ]
  1546. },
  1547. "notification-url": "https://packagist.org/downloads/",
  1548. "license": [
  1549. "ISC"
  1550. ],
  1551. "authors": [
  1552. {
  1553. "name": "Paragon Initiative Enterprises",
  1554. "email": "security@paragonie.com"
  1555. },
  1556. {
  1557. "name": "Frank Denis",
  1558. "email": "jedisct1@pureftpd.org"
  1559. }
  1560. ],
  1561. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  1562. "keywords": [
  1563. "Authentication",
  1564. "BLAKE2b",
  1565. "ChaCha20",
  1566. "ChaCha20-Poly1305",
  1567. "Chapoly",
  1568. "Curve25519",
  1569. "Ed25519",
  1570. "EdDSA",
  1571. "Edwards-curve Digital Signature Algorithm",
  1572. "Elliptic Curve Diffie-Hellman",
  1573. "Poly1305",
  1574. "Pure-PHP cryptography",
  1575. "RFC 7748",
  1576. "RFC 8032",
  1577. "Salpoly",
  1578. "Salsa20",
  1579. "X25519",
  1580. "XChaCha20-Poly1305",
  1581. "XSalsa20-Poly1305",
  1582. "Xchacha20",
  1583. "Xsalsa20",
  1584. "aead",
  1585. "cryptography",
  1586. "ecdh",
  1587. "elliptic curve",
  1588. "elliptic curve cryptography",
  1589. "encryption",
  1590. "libsodium",
  1591. "php",
  1592. "public-key cryptography",
  1593. "secret-key cryptography",
  1594. "side-channel resistant"
  1595. ],
  1596. "install-path": "../paragonie/sodium_compat"
  1597. },
  1598. {
  1599. "name": "php-http/httplug",
  1600. "version": "2.2.0",
  1601. "version_normalized": "2.2.0.0",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/php-http/httplug.git",
  1605. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/php-http/httplug/zipball/191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  1610. "reference": "191a0a1b41ed026b717421931f8d3bd2514ffbf9",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "php": "^7.1 || ^8.0",
  1615. "php-http/promise": "^1.1",
  1616. "psr/http-client": "^1.0",
  1617. "psr/http-message": "^1.0"
  1618. },
  1619. "require-dev": {
  1620. "friends-of-phpspec/phpspec-code-coverage": "^4.1",
  1621. "phpspec/phpspec": "^5.1 || ^6.0"
  1622. },
  1623. "time": "2020-07-13T15:43:23+00:00",
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "2.x-dev"
  1628. }
  1629. },
  1630. "installation-source": "dist",
  1631. "autoload": {
  1632. "psr-4": {
  1633. "Http\\Client\\": "src/"
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "MIT"
  1639. ],
  1640. "authors": [
  1641. {
  1642. "name": "Eric GELOEN",
  1643. "email": "geloen.eric@gmail.com"
  1644. },
  1645. {
  1646. "name": "Márk Sági-Kazár",
  1647. "email": "mark.sagikazar@gmail.com",
  1648. "homepage": "https://sagikazarmark.hu"
  1649. }
  1650. ],
  1651. "description": "HTTPlug, the HTTP client abstraction for PHP",
  1652. "homepage": "http://httplug.io",
  1653. "keywords": [
  1654. "client",
  1655. "http"
  1656. ],
  1657. "support": {
  1658. "issues": "https://github.com/php-http/httplug/issues",
  1659. "source": "https://github.com/php-http/httplug/tree/master"
  1660. },
  1661. "install-path": "../php-http/httplug"
  1662. },
  1663. {
  1664. "name": "php-http/promise",
  1665. "version": "1.1.0",
  1666. "version_normalized": "1.1.0.0",
  1667. "source": {
  1668. "type": "git",
  1669. "url": "https://github.com/php-http/promise.git",
  1670. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  1671. },
  1672. "dist": {
  1673. "type": "zip",
  1674. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  1675. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  1676. "shasum": ""
  1677. },
  1678. "require": {
  1679. "php": "^7.1 || ^8.0"
  1680. },
  1681. "require-dev": {
  1682. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  1683. "phpspec/phpspec": "^5.1.2 || ^6.2"
  1684. },
  1685. "time": "2020-07-07T09:29:14+00:00",
  1686. "type": "library",
  1687. "extra": {
  1688. "branch-alias": {
  1689. "dev-master": "1.1-dev"
  1690. }
  1691. },
  1692. "installation-source": "dist",
  1693. "autoload": {
  1694. "psr-4": {
  1695. "Http\\Promise\\": "src/"
  1696. }
  1697. },
  1698. "notification-url": "https://packagist.org/downloads/",
  1699. "license": [
  1700. "MIT"
  1701. ],
  1702. "authors": [
  1703. {
  1704. "name": "Joel Wurtz",
  1705. "email": "joel.wurtz@gmail.com"
  1706. },
  1707. {
  1708. "name": "Márk Sági-Kazár",
  1709. "email": "mark.sagikazar@gmail.com"
  1710. }
  1711. ],
  1712. "description": "Promise used for asynchronous HTTP requests",
  1713. "homepage": "http://httplug.io",
  1714. "keywords": [
  1715. "promise"
  1716. ],
  1717. "support": {
  1718. "issues": "https://github.com/php-http/promise/issues",
  1719. "source": "https://github.com/php-http/promise/tree/1.1.0"
  1720. },
  1721. "install-path": "../php-http/promise"
  1722. },
  1723. {
  1724. "name": "phpmailer/phpmailer",
  1725. "version": "v6.5.0",
  1726. "version_normalized": "6.5.0.0",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/PHPMailer/PHPMailer.git",
  1730. "reference": "a5b5c43e50b7fba655f793ad27303cd74c57363c"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/a5b5c43e50b7fba655f793ad27303cd74c57363c",
  1735. "reference": "a5b5c43e50b7fba655f793ad27303cd74c57363c",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "ext-ctype": "*",
  1740. "ext-filter": "*",
  1741. "ext-hash": "*",
  1742. "php": ">=5.5.0"
  1743. },
  1744. "require-dev": {
  1745. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  1746. "doctrine/annotations": "^1.2",
  1747. "phpcompatibility/php-compatibility": "^9.3.5",
  1748. "roave/security-advisories": "dev-latest",
  1749. "squizlabs/php_codesniffer": "^3.5.6",
  1750. "yoast/phpunit-polyfills": "^0.2.0"
  1751. },
  1752. "suggest": {
  1753. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  1754. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  1755. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  1756. "psr/log": "For optional PSR-3 debug logging",
  1757. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  1758. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  1759. },
  1760. "time": "2021-06-16T14:33:43+00:00",
  1761. "type": "library",
  1762. "installation-source": "dist",
  1763. "autoload": {
  1764. "psr-4": {
  1765. "PHPMailer\\PHPMailer\\": "src/"
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "LGPL-2.1-only"
  1771. ],
  1772. "authors": [
  1773. {
  1774. "name": "Marcus Bointon",
  1775. "email": "phpmailer@synchromedia.co.uk"
  1776. },
  1777. {
  1778. "name": "Jim Jagielski",
  1779. "email": "jimjag@gmail.com"
  1780. },
  1781. {
  1782. "name": "Andy Prevost",
  1783. "email": "codeworxtech@users.sourceforge.net"
  1784. },
  1785. {
  1786. "name": "Brent R. Matzelle"
  1787. }
  1788. ],
  1789. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  1790. "support": {
  1791. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  1792. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.0"
  1793. },
  1794. "funding": [
  1795. {
  1796. "url": "https://github.com/Synchro",
  1797. "type": "github"
  1798. }
  1799. ],
  1800. "install-path": "../phpmailer/phpmailer"
  1801. },
  1802. {
  1803. "name": "pragmarx/google2fa",
  1804. "version": "v3.0.3",
  1805. "version_normalized": "3.0.3.0",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/antonioribeiro/google2fa.git",
  1809. "reference": "6949226739e4424f40031e6f1c96b1fd64047335"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6949226739e4424f40031e6f1c96b1fd64047335",
  1814. "reference": "6949226739e4424f40031e6f1c96b1fd64047335",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "paragonie/constant_time_encoding": "~1.0|~2.0",
  1819. "paragonie/random_compat": ">=1",
  1820. "php": ">=5.4",
  1821. "symfony/polyfill-php56": "~1.2"
  1822. },
  1823. "require-dev": {
  1824. "bacon/bacon-qr-code": "~1.0",
  1825. "phpunit/phpunit": "~4|~5|~6"
  1826. },
  1827. "suggest": {
  1828. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  1829. },
  1830. "time": "2018-08-29T13:28:06+00:00",
  1831. "type": "library",
  1832. "extra": {
  1833. "component": "package",
  1834. "branch-alias": {
  1835. "dev-master": "2.0-dev"
  1836. }
  1837. },
  1838. "installation-source": "dist",
  1839. "autoload": {
  1840. "psr-4": {
  1841. "PragmaRX\\Google2FA\\": "src/",
  1842. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  1843. }
  1844. },
  1845. "notification-url": "https://packagist.org/downloads/",
  1846. "license": [
  1847. "MIT"
  1848. ],
  1849. "authors": [
  1850. {
  1851. "name": "Antonio Carlos Ribeiro",
  1852. "email": "acr@antoniocarlosribeiro.com",
  1853. "role": "Creator & Designer"
  1854. }
  1855. ],
  1856. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  1857. "keywords": [
  1858. "2fa",
  1859. "Authentication",
  1860. "Two Factor Authentication",
  1861. "google2fa",
  1862. "laravel"
  1863. ],
  1864. "install-path": "../pragmarx/google2fa"
  1865. },
  1866. {
  1867. "name": "psr/container",
  1868. "version": "1.1.1",
  1869. "version_normalized": "1.1.1.0",
  1870. "source": {
  1871. "type": "git",
  1872. "url": "https://github.com/php-fig/container.git",
  1873. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  1874. },
  1875. "dist": {
  1876. "type": "zip",
  1877. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  1878. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  1879. "shasum": ""
  1880. },
  1881. "require": {
  1882. "php": ">=7.2.0"
  1883. },
  1884. "time": "2021-03-05T17:36:06+00:00",
  1885. "type": "library",
  1886. "installation-source": "dist",
  1887. "autoload": {
  1888. "psr-4": {
  1889. "Psr\\Container\\": "src/"
  1890. }
  1891. },
  1892. "notification-url": "https://packagist.org/downloads/",
  1893. "license": [
  1894. "MIT"
  1895. ],
  1896. "authors": [
  1897. {
  1898. "name": "PHP-FIG",
  1899. "homepage": "https://www.php-fig.org/"
  1900. }
  1901. ],
  1902. "description": "Common Container Interface (PHP FIG PSR-11)",
  1903. "homepage": "https://github.com/php-fig/container",
  1904. "keywords": [
  1905. "PSR-11",
  1906. "container",
  1907. "container-interface",
  1908. "container-interop",
  1909. "psr"
  1910. ],
  1911. "support": {
  1912. "issues": "https://github.com/php-fig/container/issues",
  1913. "source": "https://github.com/php-fig/container/tree/1.1.1"
  1914. },
  1915. "install-path": "../psr/container"
  1916. },
  1917. {
  1918. "name": "psr/http-client",
  1919. "version": "1.0.1",
  1920. "version_normalized": "1.0.1.0",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/php-fig/http-client.git",
  1924. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1929. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "php": "^7.0 || ^8.0",
  1934. "psr/http-message": "^1.0"
  1935. },
  1936. "time": "2020-06-29T06:28:15+00:00",
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-master": "1.0.x-dev"
  1941. }
  1942. },
  1943. "installation-source": "dist",
  1944. "autoload": {
  1945. "psr-4": {
  1946. "Psr\\Http\\Client\\": "src/"
  1947. }
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "PHP-FIG",
  1956. "homepage": "http://www.php-fig.org/"
  1957. }
  1958. ],
  1959. "description": "Common interface for HTTP clients",
  1960. "homepage": "https://github.com/php-fig/http-client",
  1961. "keywords": [
  1962. "http",
  1963. "http-client",
  1964. "psr",
  1965. "psr-18"
  1966. ],
  1967. "support": {
  1968. "source": "https://github.com/php-fig/http-client/tree/master"
  1969. },
  1970. "install-path": "../psr/http-client"
  1971. },
  1972. {
  1973. "name": "psr/http-factory",
  1974. "version": "1.0.1",
  1975. "version_normalized": "1.0.1.0",
  1976. "source": {
  1977. "type": "git",
  1978. "url": "https://github.com/php-fig/http-factory.git",
  1979. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1980. },
  1981. "dist": {
  1982. "type": "zip",
  1983. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1984. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1985. "shasum": ""
  1986. },
  1987. "require": {
  1988. "php": ">=7.0.0",
  1989. "psr/http-message": "^1.0"
  1990. },
  1991. "time": "2019-04-30T12:38:16+00:00",
  1992. "type": "library",
  1993. "extra": {
  1994. "branch-alias": {
  1995. "dev-master": "1.0.x-dev"
  1996. }
  1997. },
  1998. "installation-source": "dist",
  1999. "autoload": {
  2000. "psr-4": {
  2001. "Psr\\Http\\Message\\": "src/"
  2002. }
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "MIT"
  2007. ],
  2008. "authors": [
  2009. {
  2010. "name": "PHP-FIG",
  2011. "homepage": "http://www.php-fig.org/"
  2012. }
  2013. ],
  2014. "description": "Common interfaces for PSR-7 HTTP message factories",
  2015. "keywords": [
  2016. "factory",
  2017. "http",
  2018. "message",
  2019. "psr",
  2020. "psr-17",
  2021. "psr-7",
  2022. "request",
  2023. "response"
  2024. ],
  2025. "install-path": "../psr/http-factory"
  2026. },
  2027. {
  2028. "name": "psr/http-message",
  2029. "version": "1.0.1",
  2030. "version_normalized": "1.0.1.0",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/php-fig/http-message.git",
  2034. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2039. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2040. "shasum": ""
  2041. },
  2042. "require": {
  2043. "php": ">=5.3.0"
  2044. },
  2045. "time": "2016-08-06T14:39:51+00:00",
  2046. "type": "library",
  2047. "extra": {
  2048. "branch-alias": {
  2049. "dev-master": "1.0.x-dev"
  2050. }
  2051. },
  2052. "installation-source": "dist",
  2053. "autoload": {
  2054. "psr-4": {
  2055. "Psr\\Http\\Message\\": "src/"
  2056. }
  2057. },
  2058. "notification-url": "https://packagist.org/downloads/",
  2059. "license": [
  2060. "MIT"
  2061. ],
  2062. "authors": [
  2063. {
  2064. "name": "PHP-FIG",
  2065. "homepage": "http://www.php-fig.org/"
  2066. }
  2067. ],
  2068. "description": "Common interface for HTTP messages",
  2069. "homepage": "https://github.com/php-fig/http-message",
  2070. "keywords": [
  2071. "http",
  2072. "http-message",
  2073. "psr",
  2074. "psr-7",
  2075. "request",
  2076. "response"
  2077. ],
  2078. "install-path": "../psr/http-message"
  2079. },
  2080. {
  2081. "name": "psr/http-server-handler",
  2082. "version": "1.0.1",
  2083. "version_normalized": "1.0.1.0",
  2084. "source": {
  2085. "type": "git",
  2086. "url": "https://github.com/php-fig/http-server-handler.git",
  2087. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  2088. },
  2089. "dist": {
  2090. "type": "zip",
  2091. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  2092. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  2093. "shasum": ""
  2094. },
  2095. "require": {
  2096. "php": ">=7.0",
  2097. "psr/http-message": "^1.0"
  2098. },
  2099. "time": "2018-10-30T16:46:14+00:00",
  2100. "type": "library",
  2101. "extra": {
  2102. "branch-alias": {
  2103. "dev-master": "1.0.x-dev"
  2104. }
  2105. },
  2106. "installation-source": "dist",
  2107. "autoload": {
  2108. "psr-4": {
  2109. "Psr\\Http\\Server\\": "src/"
  2110. }
  2111. },
  2112. "notification-url": "https://packagist.org/downloads/",
  2113. "license": [
  2114. "MIT"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "PHP-FIG",
  2119. "homepage": "http://www.php-fig.org/"
  2120. }
  2121. ],
  2122. "description": "Common interface for HTTP server-side request handler",
  2123. "keywords": [
  2124. "handler",
  2125. "http",
  2126. "http-interop",
  2127. "psr",
  2128. "psr-15",
  2129. "psr-7",
  2130. "request",
  2131. "response",
  2132. "server"
  2133. ],
  2134. "install-path": "../psr/http-server-handler"
  2135. },
  2136. {
  2137. "name": "psr/http-server-middleware",
  2138. "version": "1.0.1",
  2139. "version_normalized": "1.0.1.0",
  2140. "source": {
  2141. "type": "git",
  2142. "url": "https://github.com/php-fig/http-server-middleware.git",
  2143. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  2144. },
  2145. "dist": {
  2146. "type": "zip",
  2147. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  2148. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  2149. "shasum": ""
  2150. },
  2151. "require": {
  2152. "php": ">=7.0",
  2153. "psr/http-message": "^1.0",
  2154. "psr/http-server-handler": "^1.0"
  2155. },
  2156. "time": "2018-10-30T17:12:04+00:00",
  2157. "type": "library",
  2158. "extra": {
  2159. "branch-alias": {
  2160. "dev-master": "1.0.x-dev"
  2161. }
  2162. },
  2163. "installation-source": "dist",
  2164. "autoload": {
  2165. "psr-4": {
  2166. "Psr\\Http\\Server\\": "src/"
  2167. }
  2168. },
  2169. "notification-url": "https://packagist.org/downloads/",
  2170. "license": [
  2171. "MIT"
  2172. ],
  2173. "authors": [
  2174. {
  2175. "name": "PHP-FIG",
  2176. "homepage": "http://www.php-fig.org/"
  2177. }
  2178. ],
  2179. "description": "Common interface for HTTP server-side middleware",
  2180. "keywords": [
  2181. "http",
  2182. "http-interop",
  2183. "middleware",
  2184. "psr",
  2185. "psr-15",
  2186. "psr-7",
  2187. "request",
  2188. "response"
  2189. ],
  2190. "install-path": "../psr/http-server-middleware"
  2191. },
  2192. {
  2193. "name": "psr/log",
  2194. "version": "1.1.4",
  2195. "version_normalized": "1.1.4.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/php-fig/log.git",
  2199. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2204. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "php": ">=5.3.0"
  2209. },
  2210. "time": "2021-05-03T11:20:27+00:00",
  2211. "type": "library",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-master": "1.1.x-dev"
  2215. }
  2216. },
  2217. "installation-source": "dist",
  2218. "autoload": {
  2219. "psr-4": {
  2220. "Psr\\Log\\": "Psr/Log/"
  2221. }
  2222. },
  2223. "notification-url": "https://packagist.org/downloads/",
  2224. "license": [
  2225. "MIT"
  2226. ],
  2227. "authors": [
  2228. {
  2229. "name": "PHP-FIG",
  2230. "homepage": "https://www.php-fig.org/"
  2231. }
  2232. ],
  2233. "description": "Common interface for logging libraries",
  2234. "homepage": "https://github.com/php-fig/log",
  2235. "keywords": [
  2236. "log",
  2237. "psr",
  2238. "psr-3"
  2239. ],
  2240. "support": {
  2241. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2242. },
  2243. "install-path": "../psr/log"
  2244. },
  2245. {
  2246. "name": "psr/simple-cache",
  2247. "version": "1.0.1",
  2248. "version_normalized": "1.0.1.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/php-fig/simple-cache.git",
  2252. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2257. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2258. "shasum": ""
  2259. },
  2260. "require": {
  2261. "php": ">=5.3.0"
  2262. },
  2263. "time": "2017-10-23T01:57:42+00:00",
  2264. "type": "library",
  2265. "extra": {
  2266. "branch-alias": {
  2267. "dev-master": "1.0.x-dev"
  2268. }
  2269. },
  2270. "installation-source": "dist",
  2271. "autoload": {
  2272. "psr-4": {
  2273. "Psr\\SimpleCache\\": "src/"
  2274. }
  2275. },
  2276. "notification-url": "https://packagist.org/downloads/",
  2277. "license": [
  2278. "MIT"
  2279. ],
  2280. "authors": [
  2281. {
  2282. "name": "PHP-FIG",
  2283. "homepage": "http://www.php-fig.org/"
  2284. }
  2285. ],
  2286. "description": "Common interfaces for simple caching",
  2287. "keywords": [
  2288. "cache",
  2289. "caching",
  2290. "psr",
  2291. "psr-16",
  2292. "simple-cache"
  2293. ],
  2294. "install-path": "../psr/simple-cache"
  2295. },
  2296. {
  2297. "name": "pusher/pusher-php-server",
  2298. "version": "v4.1.5",
  2299. "version_normalized": "4.1.5.0",
  2300. "source": {
  2301. "type": "git",
  2302. "url": "https://github.com/pusher/pusher-http-php.git",
  2303. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9"
  2304. },
  2305. "dist": {
  2306. "type": "zip",
  2307. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/251f22602320c1b1aff84798fe74f3f7ee0504a9",
  2308. "reference": "251f22602320c1b1aff84798fe74f3f7ee0504a9",
  2309. "shasum": ""
  2310. },
  2311. "require": {
  2312. "ext-curl": "*",
  2313. "paragonie/sodium_compat": "^1.6",
  2314. "php": "^7.1|^8.0",
  2315. "psr/log": "^1.0"
  2316. },
  2317. "require-dev": {
  2318. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  2319. },
  2320. "time": "2020-12-09T09:38:19+00:00",
  2321. "type": "library",
  2322. "extra": {
  2323. "branch-alias": {
  2324. "dev-master": "3.4-dev"
  2325. }
  2326. },
  2327. "installation-source": "dist",
  2328. "autoload": {
  2329. "psr-4": {
  2330. "Pusher\\": "src/"
  2331. }
  2332. },
  2333. "notification-url": "https://packagist.org/downloads/",
  2334. "license": [
  2335. "MIT"
  2336. ],
  2337. "description": "Library for interacting with the Pusher REST API",
  2338. "keywords": [
  2339. "events",
  2340. "messaging",
  2341. "php-pusher-server",
  2342. "publish",
  2343. "push",
  2344. "pusher",
  2345. "real time",
  2346. "real-time",
  2347. "realtime",
  2348. "rest",
  2349. "trigger"
  2350. ],
  2351. "support": {
  2352. "issues": "https://github.com/pusher/pusher-http-php/issues",
  2353. "source": "https://github.com/pusher/pusher-http-php/tree/v4.1.5"
  2354. },
  2355. "install-path": "../pusher/pusher-php-server"
  2356. },
  2357. {
  2358. "name": "ralouphie/getallheaders",
  2359. "version": "3.0.3",
  2360. "version_normalized": "3.0.3.0",
  2361. "source": {
  2362. "type": "git",
  2363. "url": "https://github.com/ralouphie/getallheaders.git",
  2364. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2365. },
  2366. "dist": {
  2367. "type": "zip",
  2368. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2369. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2370. "shasum": ""
  2371. },
  2372. "require": {
  2373. "php": ">=5.6"
  2374. },
  2375. "require-dev": {
  2376. "php-coveralls/php-coveralls": "^2.1",
  2377. "phpunit/phpunit": "^5 || ^6.5"
  2378. },
  2379. "time": "2019-03-08T08:55:37+00:00",
  2380. "type": "library",
  2381. "installation-source": "dist",
  2382. "autoload": {
  2383. "files": [
  2384. "src/getallheaders.php"
  2385. ]
  2386. },
  2387. "notification-url": "https://packagist.org/downloads/",
  2388. "license": [
  2389. "MIT"
  2390. ],
  2391. "authors": [
  2392. {
  2393. "name": "Ralph Khattar",
  2394. "email": "ralph.khattar@gmail.com"
  2395. }
  2396. ],
  2397. "description": "A polyfill for getallheaders.",
  2398. "install-path": "../ralouphie/getallheaders"
  2399. },
  2400. {
  2401. "name": "ramsey/uuid",
  2402. "version": "3.9.6",
  2403. "version_normalized": "3.9.6.0",
  2404. "source": {
  2405. "type": "git",
  2406. "url": "https://github.com/ramsey/uuid.git",
  2407. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3"
  2408. },
  2409. "dist": {
  2410. "type": "zip",
  2411. "url": "https://api.github.com/repos/ramsey/uuid/zipball/ffa80ab953edd85d5b6c004f96181a538aad35a3",
  2412. "reference": "ffa80ab953edd85d5b6c004f96181a538aad35a3",
  2413. "shasum": ""
  2414. },
  2415. "require": {
  2416. "ext-json": "*",
  2417. "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
  2418. "php": "^5.4 | ^7.0 | ^8.0",
  2419. "symfony/polyfill-ctype": "^1.8"
  2420. },
  2421. "replace": {
  2422. "rhumsaa/uuid": "self.version"
  2423. },
  2424. "require-dev": {
  2425. "codeception/aspect-mock": "^1 | ^2",
  2426. "doctrine/annotations": "^1.2",
  2427. "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
  2428. "mockery/mockery": "^0.9.11 | ^1",
  2429. "moontoast/math": "^1.1",
  2430. "nikic/php-parser": "<=4.5.0",
  2431. "paragonie/random-lib": "^2",
  2432. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  2433. "php-parallel-lint/php-parallel-lint": "^1.3",
  2434. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  2435. "squizlabs/php_codesniffer": "^3.5",
  2436. "yoast/phpunit-polyfills": "^1.0"
  2437. },
  2438. "suggest": {
  2439. "ext-ctype": "Provides support for PHP Ctype functions",
  2440. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  2441. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  2442. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  2443. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  2444. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2445. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  2446. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2447. },
  2448. "time": "2021-09-25T23:07:42+00:00",
  2449. "type": "library",
  2450. "extra": {
  2451. "branch-alias": {
  2452. "dev-master": "3.x-dev"
  2453. }
  2454. },
  2455. "installation-source": "dist",
  2456. "autoload": {
  2457. "psr-4": {
  2458. "Ramsey\\Uuid\\": "src/"
  2459. },
  2460. "files": [
  2461. "src/functions.php"
  2462. ]
  2463. },
  2464. "notification-url": "https://packagist.org/downloads/",
  2465. "license": [
  2466. "MIT"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "Ben Ramsey",
  2471. "email": "ben@benramsey.com",
  2472. "homepage": "https://benramsey.com"
  2473. },
  2474. {
  2475. "name": "Marijn Huizendveld",
  2476. "email": "marijn.huizendveld@gmail.com"
  2477. },
  2478. {
  2479. "name": "Thibaud Fabre",
  2480. "email": "thibaud@aztech.io"
  2481. }
  2482. ],
  2483. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  2484. "homepage": "https://github.com/ramsey/uuid",
  2485. "keywords": [
  2486. "guid",
  2487. "identifier",
  2488. "uuid"
  2489. ],
  2490. "support": {
  2491. "issues": "https://github.com/ramsey/uuid/issues",
  2492. "rss": "https://github.com/ramsey/uuid/releases.atom",
  2493. "source": "https://github.com/ramsey/uuid",
  2494. "wiki": "https://github.com/ramsey/uuid/wiki"
  2495. },
  2496. "funding": [
  2497. {
  2498. "url": "https://github.com/ramsey",
  2499. "type": "github"
  2500. },
  2501. {
  2502. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  2503. "type": "tidelift"
  2504. }
  2505. ],
  2506. "install-path": "../ramsey/uuid"
  2507. },
  2508. {
  2509. "name": "rmccue/requests",
  2510. "version": "v1.8.0",
  2511. "version_normalized": "1.8.0.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/WordPress/Requests.git",
  2515. "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/WordPress/Requests/zipball/afbe4790e4def03581c4a0963a1e8aa01f6030f1",
  2520. "reference": "afbe4790e4def03581c4a0963a1e8aa01f6030f1",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "php": ">=5.2"
  2525. },
  2526. "require-dev": {
  2527. "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
  2528. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  2529. "php-parallel-lint/php-parallel-lint": "^1.3",
  2530. "phpcompatibility/php-compatibility": "^9.0",
  2531. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
  2532. "requests/test-server": "dev-master",
  2533. "squizlabs/php_codesniffer": "^3.5",
  2534. "wp-coding-standards/wpcs": "^2.0"
  2535. },
  2536. "time": "2021-04-27T11:05:25+00:00",
  2537. "type": "library",
  2538. "installation-source": "dist",
  2539. "autoload": {
  2540. "psr-0": {
  2541. "Requests": "library/"
  2542. }
  2543. },
  2544. "notification-url": "https://packagist.org/downloads/",
  2545. "license": [
  2546. "ISC"
  2547. ],
  2548. "authors": [
  2549. {
  2550. "name": "Ryan McCue",
  2551. "homepage": "http://ryanmccue.info"
  2552. }
  2553. ],
  2554. "description": "A HTTP library written in PHP, for human beings.",
  2555. "homepage": "http://github.com/WordPress/Requests",
  2556. "keywords": [
  2557. "curl",
  2558. "fsockopen",
  2559. "http",
  2560. "idna",
  2561. "ipv6",
  2562. "iri",
  2563. "sockets"
  2564. ],
  2565. "support": {
  2566. "issues": "https://github.com/WordPress/Requests/issues",
  2567. "source": "https://github.com/WordPress/Requests/tree/v1.8.0"
  2568. },
  2569. "install-path": "../rmccue/requests"
  2570. },
  2571. {
  2572. "name": "slim/psr7",
  2573. "version": "1.3.0",
  2574. "version_normalized": "1.3.0.0",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/slimphp/Slim-Psr7.git",
  2578. "reference": "235d2e5a5ee1ad4b97b96870f37f3091b22fffd7"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/235d2e5a5ee1ad4b97b96870f37f3091b22fffd7",
  2583. "reference": "235d2e5a5ee1ad4b97b96870f37f3091b22fffd7",
  2584. "shasum": ""
  2585. },
  2586. "require": {
  2587. "fig/http-message-util": "^1.1.4",
  2588. "php": "^7.2 || ^8.0",
  2589. "psr/http-factory": "^1.0",
  2590. "psr/http-message": "^1.0",
  2591. "ralouphie/getallheaders": "^3",
  2592. "symfony/polyfill-php80": "^1.18"
  2593. },
  2594. "provide": {
  2595. "psr/http-factory-implementation": "1.0",
  2596. "psr/http-message-implementation": "1.0"
  2597. },
  2598. "require-dev": {
  2599. "adriansuter/php-autoload-override": "^1.2",
  2600. "ext-json": "*",
  2601. "http-interop/http-factory-tests": "^0.7.0",
  2602. "php-http/psr7-integration-tests": "dev-master",
  2603. "phpstan/phpstan": "^0.12",
  2604. "phpunit/phpunit": "^8.5 || ^9.3",
  2605. "squizlabs/php_codesniffer": "^3.5",
  2606. "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
  2607. },
  2608. "time": "2020-11-28T06:28:46+00:00",
  2609. "type": "library",
  2610. "installation-source": "dist",
  2611. "autoload": {
  2612. "psr-4": {
  2613. "Slim\\Psr7\\": "src"
  2614. }
  2615. },
  2616. "notification-url": "https://packagist.org/downloads/",
  2617. "license": [
  2618. "MIT"
  2619. ],
  2620. "authors": [
  2621. {
  2622. "name": "Josh Lockhart",
  2623. "email": "hello@joshlockhart.com",
  2624. "homepage": "http://joshlockhart.com"
  2625. },
  2626. {
  2627. "name": "Andrew Smith",
  2628. "email": "a.smith@silentworks.co.uk",
  2629. "homepage": "http://silentworks.co.uk"
  2630. },
  2631. {
  2632. "name": "Rob Allen",
  2633. "email": "rob@akrabat.com",
  2634. "homepage": "http://akrabat.com"
  2635. },
  2636. {
  2637. "name": "Pierre Berube",
  2638. "email": "pierre@lgse.com",
  2639. "homepage": "http://www.lgse.com"
  2640. }
  2641. ],
  2642. "description": "Strict PSR-7 implementation",
  2643. "homepage": "https://www.slimframework.com",
  2644. "keywords": [
  2645. "http",
  2646. "psr-7",
  2647. "psr7"
  2648. ],
  2649. "support": {
  2650. "issues": "https://github.com/slimphp/Slim-Psr7/issues",
  2651. "source": "https://github.com/slimphp/Slim-Psr7/tree/1.3.0"
  2652. },
  2653. "install-path": "../slim/psr7"
  2654. },
  2655. {
  2656. "name": "slim/slim",
  2657. "version": "4.7.1",
  2658. "version_normalized": "4.7.1.0",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://github.com/slimphp/Slim.git",
  2662. "reference": "0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://api.github.com/repos/slimphp/Slim/zipball/0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f",
  2667. "reference": "0905e0775f8c1cfb3bbcfabeb6588dcfd8b82d3f",
  2668. "shasum": ""
  2669. },
  2670. "require": {
  2671. "ext-json": "*",
  2672. "nikic/fast-route": "^1.3",
  2673. "php": "^7.2 || ^8.0",
  2674. "psr/container": "^1.0",
  2675. "psr/http-factory": "^1.0",
  2676. "psr/http-message": "^1.0",
  2677. "psr/http-server-handler": "^1.0",
  2678. "psr/http-server-middleware": "^1.0",
  2679. "psr/log": "^1.1"
  2680. },
  2681. "require-dev": {
  2682. "adriansuter/php-autoload-override": "^1.2",
  2683. "ext-simplexml": "*",
  2684. "guzzlehttp/psr7": "^1.7",
  2685. "http-interop/http-factory-guzzle": "^1.0",
  2686. "laminas/laminas-diactoros": "^2.4",
  2687. "nyholm/psr7": "^1.3",
  2688. "nyholm/psr7-server": "^1.0.1",
  2689. "phpspec/prophecy": "^1.12",
  2690. "phpstan/phpstan": "^0.12.58",
  2691. "phpunit/phpunit": "^8.5.13",
  2692. "slim/http": "^1.2",
  2693. "slim/psr7": "^1.3",
  2694. "squizlabs/php_codesniffer": "^3.5",
  2695. "weirdan/prophecy-shim": "^1.0 || ^2.0.2"
  2696. },
  2697. "suggest": {
  2698. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  2699. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  2700. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  2701. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  2702. },
  2703. "time": "2020-12-01T19:41:22+00:00",
  2704. "type": "library",
  2705. "installation-source": "dist",
  2706. "autoload": {
  2707. "psr-4": {
  2708. "Slim\\": "Slim"
  2709. }
  2710. },
  2711. "notification-url": "https://packagist.org/downloads/",
  2712. "license": [
  2713. "MIT"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "Josh Lockhart",
  2718. "email": "hello@joshlockhart.com",
  2719. "homepage": "https://joshlockhart.com"
  2720. },
  2721. {
  2722. "name": "Andrew Smith",
  2723. "email": "a.smith@silentworks.co.uk",
  2724. "homepage": "http://silentworks.co.uk"
  2725. },
  2726. {
  2727. "name": "Rob Allen",
  2728. "email": "rob@akrabat.com",
  2729. "homepage": "http://akrabat.com"
  2730. },
  2731. {
  2732. "name": "Pierre Berube",
  2733. "email": "pierre@lgse.com",
  2734. "homepage": "http://www.lgse.com"
  2735. },
  2736. {
  2737. "name": "Gabriel Manricks",
  2738. "email": "gmanricks@me.com",
  2739. "homepage": "http://gabrielmanricks.com"
  2740. }
  2741. ],
  2742. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  2743. "homepage": "https://www.slimframework.com",
  2744. "keywords": [
  2745. "api",
  2746. "framework",
  2747. "micro",
  2748. "router"
  2749. ],
  2750. "support": {
  2751. "docs": "https://www.slimframework.com/docs/v4/",
  2752. "forum": "https://discourse.slimframework.com/",
  2753. "irc": "irc://irc.freenode.net:6667/slimphp",
  2754. "issues": "https://github.com/slimphp/Slim/issues",
  2755. "rss": "https://www.slimframework.com/blog/feed.rss",
  2756. "slack": "https://slimphp.slack.com/",
  2757. "source": "https://github.com/slimphp/Slim",
  2758. "wiki": "https://github.com/slimphp/Slim/wiki"
  2759. },
  2760. "funding": [
  2761. {
  2762. "url": "https://opencollective.com/slimphp",
  2763. "type": "open_collective"
  2764. },
  2765. {
  2766. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  2767. "type": "tidelift"
  2768. }
  2769. ],
  2770. "install-path": "../slim/slim"
  2771. },
  2772. {
  2773. "name": "symfony/deprecation-contracts",
  2774. "version": "v2.1.3",
  2775. "version_normalized": "2.1.3.0",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/symfony/deprecation-contracts.git",
  2779. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  2784. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  2785. "shasum": ""
  2786. },
  2787. "require": {
  2788. "php": ">=7.1"
  2789. },
  2790. "time": "2020-06-06T08:49:21+00:00",
  2791. "type": "library",
  2792. "extra": {
  2793. "branch-alias": {
  2794. "dev-master": "2.1-dev"
  2795. },
  2796. "thanks": {
  2797. "name": "symfony/contracts",
  2798. "url": "https://github.com/symfony/contracts"
  2799. }
  2800. },
  2801. "installation-source": "dist",
  2802. "autoload": {
  2803. "files": [
  2804. "function.php"
  2805. ]
  2806. },
  2807. "notification-url": "https://packagist.org/downloads/",
  2808. "license": [
  2809. "MIT"
  2810. ],
  2811. "authors": [
  2812. {
  2813. "name": "Nicolas Grekas",
  2814. "email": "p@tchwork.com"
  2815. },
  2816. {
  2817. "name": "Symfony Community",
  2818. "homepage": "https://symfony.com/contributors"
  2819. }
  2820. ],
  2821. "description": "A generic function and convention to trigger deprecation notices",
  2822. "homepage": "https://symfony.com",
  2823. "install-path": "../symfony/deprecation-contracts"
  2824. },
  2825. {
  2826. "name": "symfony/finder",
  2827. "version": "v5.1.3",
  2828. "version_normalized": "5.1.3.0",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/symfony/finder.git",
  2832. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187",
  2837. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "php": ">=7.2.5"
  2842. },
  2843. "time": "2020-05-20T17:43:50+00:00",
  2844. "type": "library",
  2845. "extra": {
  2846. "branch-alias": {
  2847. "dev-master": "5.1-dev"
  2848. }
  2849. },
  2850. "installation-source": "dist",
  2851. "autoload": {
  2852. "psr-4": {
  2853. "Symfony\\Component\\Finder\\": ""
  2854. },
  2855. "exclude-from-classmap": [
  2856. "/Tests/"
  2857. ]
  2858. },
  2859. "notification-url": "https://packagist.org/downloads/",
  2860. "license": [
  2861. "MIT"
  2862. ],
  2863. "authors": [
  2864. {
  2865. "name": "Fabien Potencier",
  2866. "email": "fabien@symfony.com"
  2867. },
  2868. {
  2869. "name": "Symfony Community",
  2870. "homepage": "https://symfony.com/contributors"
  2871. }
  2872. ],
  2873. "description": "Symfony Finder Component",
  2874. "homepage": "https://symfony.com",
  2875. "install-path": "../symfony/finder"
  2876. },
  2877. {
  2878. "name": "symfony/polyfill-ctype",
  2879. "version": "v1.22.1",
  2880. "version_normalized": "1.22.1.0",
  2881. "source": {
  2882. "type": "git",
  2883. "url": "https://github.com/symfony/polyfill-ctype.git",
  2884. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  2885. },
  2886. "dist": {
  2887. "type": "zip",
  2888. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  2889. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  2890. "shasum": ""
  2891. },
  2892. "require": {
  2893. "php": ">=7.1"
  2894. },
  2895. "suggest": {
  2896. "ext-ctype": "For best performance"
  2897. },
  2898. "time": "2021-01-07T16:49:33+00:00",
  2899. "type": "library",
  2900. "extra": {
  2901. "branch-alias": {
  2902. "dev-main": "1.22-dev"
  2903. },
  2904. "thanks": {
  2905. "name": "symfony/polyfill",
  2906. "url": "https://github.com/symfony/polyfill"
  2907. }
  2908. },
  2909. "installation-source": "dist",
  2910. "autoload": {
  2911. "psr-4": {
  2912. "Symfony\\Polyfill\\Ctype\\": ""
  2913. },
  2914. "files": [
  2915. "bootstrap.php"
  2916. ]
  2917. },
  2918. "notification-url": "https://packagist.org/downloads/",
  2919. "license": [
  2920. "MIT"
  2921. ],
  2922. "authors": [
  2923. {
  2924. "name": "Gert de Pagter",
  2925. "email": "BackEndTea@gmail.com"
  2926. },
  2927. {
  2928. "name": "Symfony Community",
  2929. "homepage": "https://symfony.com/contributors"
  2930. }
  2931. ],
  2932. "description": "Symfony polyfill for ctype functions",
  2933. "homepage": "https://symfony.com",
  2934. "keywords": [
  2935. "compatibility",
  2936. "ctype",
  2937. "polyfill",
  2938. "portable"
  2939. ],
  2940. "support": {
  2941. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  2942. },
  2943. "funding": [
  2944. {
  2945. "url": "https://symfony.com/sponsor",
  2946. "type": "custom"
  2947. },
  2948. {
  2949. "url": "https://github.com/fabpot",
  2950. "type": "github"
  2951. },
  2952. {
  2953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2954. "type": "tidelift"
  2955. }
  2956. ],
  2957. "install-path": "../symfony/polyfill-ctype"
  2958. },
  2959. {
  2960. "name": "symfony/polyfill-mbstring",
  2961. "version": "v1.22.1",
  2962. "version_normalized": "1.22.1.0",
  2963. "source": {
  2964. "type": "git",
  2965. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2966. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  2967. },
  2968. "dist": {
  2969. "type": "zip",
  2970. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  2971. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  2972. "shasum": ""
  2973. },
  2974. "require": {
  2975. "php": ">=7.1"
  2976. },
  2977. "suggest": {
  2978. "ext-mbstring": "For best performance"
  2979. },
  2980. "time": "2021-01-22T09:19:47+00:00",
  2981. "type": "library",
  2982. "extra": {
  2983. "branch-alias": {
  2984. "dev-main": "1.22-dev"
  2985. },
  2986. "thanks": {
  2987. "name": "symfony/polyfill",
  2988. "url": "https://github.com/symfony/polyfill"
  2989. }
  2990. },
  2991. "installation-source": "dist",
  2992. "autoload": {
  2993. "psr-4": {
  2994. "Symfony\\Polyfill\\Mbstring\\": ""
  2995. },
  2996. "files": [
  2997. "bootstrap.php"
  2998. ]
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "MIT"
  3003. ],
  3004. "authors": [
  3005. {
  3006. "name": "Nicolas Grekas",
  3007. "email": "p@tchwork.com"
  3008. },
  3009. {
  3010. "name": "Symfony Community",
  3011. "homepage": "https://symfony.com/contributors"
  3012. }
  3013. ],
  3014. "description": "Symfony polyfill for the Mbstring extension",
  3015. "homepage": "https://symfony.com",
  3016. "keywords": [
  3017. "compatibility",
  3018. "mbstring",
  3019. "polyfill",
  3020. "portable",
  3021. "shim"
  3022. ],
  3023. "support": {
  3024. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  3025. },
  3026. "funding": [
  3027. {
  3028. "url": "https://symfony.com/sponsor",
  3029. "type": "custom"
  3030. },
  3031. {
  3032. "url": "https://github.com/fabpot",
  3033. "type": "github"
  3034. },
  3035. {
  3036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3037. "type": "tidelift"
  3038. }
  3039. ],
  3040. "install-path": "../symfony/polyfill-mbstring"
  3041. },
  3042. {
  3043. "name": "symfony/polyfill-php56",
  3044. "version": "v1.9.0",
  3045. "version_normalized": "1.9.0.0",
  3046. "source": {
  3047. "type": "git",
  3048. "url": "https://github.com/symfony/polyfill-php56.git",
  3049. "reference": "7b4fc009172cc0196535b0328bd1226284a28000"
  3050. },
  3051. "dist": {
  3052. "type": "zip",
  3053. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000",
  3054. "reference": "7b4fc009172cc0196535b0328bd1226284a28000",
  3055. "shasum": ""
  3056. },
  3057. "require": {
  3058. "php": ">=5.3.3",
  3059. "symfony/polyfill-util": "~1.0"
  3060. },
  3061. "time": "2018-08-06T14:22:27+00:00",
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-master": "1.9-dev"
  3066. }
  3067. },
  3068. "installation-source": "dist",
  3069. "autoload": {
  3070. "psr-4": {
  3071. "Symfony\\Polyfill\\Php56\\": ""
  3072. },
  3073. "files": [
  3074. "bootstrap.php"
  3075. ]
  3076. },
  3077. "notification-url": "https://packagist.org/downloads/",
  3078. "license": [
  3079. "MIT"
  3080. ],
  3081. "authors": [
  3082. {
  3083. "name": "Nicolas Grekas",
  3084. "email": "p@tchwork.com"
  3085. },
  3086. {
  3087. "name": "Symfony Community",
  3088. "homepage": "https://symfony.com/contributors"
  3089. }
  3090. ],
  3091. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  3092. "homepage": "https://symfony.com",
  3093. "keywords": [
  3094. "compatibility",
  3095. "polyfill",
  3096. "portable",
  3097. "shim"
  3098. ],
  3099. "install-path": "../symfony/polyfill-php56"
  3100. },
  3101. {
  3102. "name": "symfony/polyfill-php72",
  3103. "version": "v1.22.1",
  3104. "version_normalized": "1.22.1.0",
  3105. "source": {
  3106. "type": "git",
  3107. "url": "https://github.com/symfony/polyfill-php72.git",
  3108. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  3109. },
  3110. "dist": {
  3111. "type": "zip",
  3112. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3113. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  3114. "shasum": ""
  3115. },
  3116. "require": {
  3117. "php": ">=7.1"
  3118. },
  3119. "time": "2021-01-07T16:49:33+00:00",
  3120. "type": "library",
  3121. "extra": {
  3122. "branch-alias": {
  3123. "dev-main": "1.22-dev"
  3124. },
  3125. "thanks": {
  3126. "name": "symfony/polyfill",
  3127. "url": "https://github.com/symfony/polyfill"
  3128. }
  3129. },
  3130. "installation-source": "dist",
  3131. "autoload": {
  3132. "psr-4": {
  3133. "Symfony\\Polyfill\\Php72\\": ""
  3134. },
  3135. "files": [
  3136. "bootstrap.php"
  3137. ]
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "MIT"
  3142. ],
  3143. "authors": [
  3144. {
  3145. "name": "Nicolas Grekas",
  3146. "email": "p@tchwork.com"
  3147. },
  3148. {
  3149. "name": "Symfony Community",
  3150. "homepage": "https://symfony.com/contributors"
  3151. }
  3152. ],
  3153. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3154. "homepage": "https://symfony.com",
  3155. "keywords": [
  3156. "compatibility",
  3157. "polyfill",
  3158. "portable",
  3159. "shim"
  3160. ],
  3161. "support": {
  3162. "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.1"
  3163. },
  3164. "funding": [
  3165. {
  3166. "url": "https://symfony.com/sponsor",
  3167. "type": "custom"
  3168. },
  3169. {
  3170. "url": "https://github.com/fabpot",
  3171. "type": "github"
  3172. },
  3173. {
  3174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3175. "type": "tidelift"
  3176. }
  3177. ],
  3178. "install-path": "../symfony/polyfill-php72"
  3179. },
  3180. {
  3181. "name": "symfony/polyfill-php80",
  3182. "version": "v1.22.1",
  3183. "version_normalized": "1.22.1.0",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/symfony/polyfill-php80.git",
  3187. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3192. "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "php": ">=7.1"
  3197. },
  3198. "time": "2021-01-07T16:49:33+00:00",
  3199. "type": "library",
  3200. "extra": {
  3201. "branch-alias": {
  3202. "dev-main": "1.22-dev"
  3203. },
  3204. "thanks": {
  3205. "name": "symfony/polyfill",
  3206. "url": "https://github.com/symfony/polyfill"
  3207. }
  3208. },
  3209. "installation-source": "dist",
  3210. "autoload": {
  3211. "psr-4": {
  3212. "Symfony\\Polyfill\\Php80\\": ""
  3213. },
  3214. "files": [
  3215. "bootstrap.php"
  3216. ],
  3217. "classmap": [
  3218. "Resources/stubs"
  3219. ]
  3220. },
  3221. "notification-url": "https://packagist.org/downloads/",
  3222. "license": [
  3223. "MIT"
  3224. ],
  3225. "authors": [
  3226. {
  3227. "name": "Ion Bazan",
  3228. "email": "ion.bazan@gmail.com"
  3229. },
  3230. {
  3231. "name": "Nicolas Grekas",
  3232. "email": "p@tchwork.com"
  3233. },
  3234. {
  3235. "name": "Symfony Community",
  3236. "homepage": "https://symfony.com/contributors"
  3237. }
  3238. ],
  3239. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3240. "homepage": "https://symfony.com",
  3241. "keywords": [
  3242. "compatibility",
  3243. "polyfill",
  3244. "portable",
  3245. "shim"
  3246. ],
  3247. "support": {
  3248. "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1"
  3249. },
  3250. "funding": [
  3251. {
  3252. "url": "https://symfony.com/sponsor",
  3253. "type": "custom"
  3254. },
  3255. {
  3256. "url": "https://github.com/fabpot",
  3257. "type": "github"
  3258. },
  3259. {
  3260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3261. "type": "tidelift"
  3262. }
  3263. ],
  3264. "install-path": "../symfony/polyfill-php80"
  3265. },
  3266. {
  3267. "name": "symfony/polyfill-util",
  3268. "version": "v1.9.0",
  3269. "version_normalized": "1.9.0.0",
  3270. "source": {
  3271. "type": "git",
  3272. "url": "https://github.com/symfony/polyfill-util.git",
  3273. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581"
  3274. },
  3275. "dist": {
  3276. "type": "zip",
  3277. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  3278. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  3279. "shasum": ""
  3280. },
  3281. "require": {
  3282. "php": ">=5.3.3"
  3283. },
  3284. "time": "2018-08-06T14:22:27+00:00",
  3285. "type": "library",
  3286. "extra": {
  3287. "branch-alias": {
  3288. "dev-master": "1.9-dev"
  3289. }
  3290. },
  3291. "installation-source": "dist",
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Symfony\\Polyfill\\Util\\": ""
  3295. }
  3296. },
  3297. "notification-url": "https://packagist.org/downloads/",
  3298. "license": [
  3299. "MIT"
  3300. ],
  3301. "authors": [
  3302. {
  3303. "name": "Nicolas Grekas",
  3304. "email": "p@tchwork.com"
  3305. },
  3306. {
  3307. "name": "Symfony Community",
  3308. "homepage": "https://symfony.com/contributors"
  3309. }
  3310. ],
  3311. "description": "Symfony utilities for portability of PHP codes",
  3312. "homepage": "https://symfony.com",
  3313. "keywords": [
  3314. "compat",
  3315. "compatibility",
  3316. "polyfill",
  3317. "shim"
  3318. ],
  3319. "install-path": "../symfony/polyfill-util"
  3320. },
  3321. {
  3322. "name": "symfony/var-dumper",
  3323. "version": "v4.2.3",
  3324. "version_normalized": "4.2.3.0",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/symfony/var-dumper.git",
  3328. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/223bda89f9be41cf7033eeaf11bc61a280489c17",
  3333. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "php": "^7.1.3",
  3338. "symfony/polyfill-mbstring": "~1.0",
  3339. "symfony/polyfill-php72": "~1.5"
  3340. },
  3341. "conflict": {
  3342. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3343. "symfony/console": "<3.4"
  3344. },
  3345. "require-dev": {
  3346. "ext-iconv": "*",
  3347. "symfony/console": "~3.4|~4.0",
  3348. "symfony/process": "~3.4|~4.0",
  3349. "twig/twig": "~1.34|~2.4"
  3350. },
  3351. "suggest": {
  3352. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3353. "ext-intl": "To show region name in time zone dump",
  3354. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3355. },
  3356. "time": "2019-01-30T11:44:30+00:00",
  3357. "bin": [
  3358. "Resources/bin/var-dump-server"
  3359. ],
  3360. "type": "library",
  3361. "extra": {
  3362. "branch-alias": {
  3363. "dev-master": "4.2-dev"
  3364. }
  3365. },
  3366. "installation-source": "dist",
  3367. "autoload": {
  3368. "files": [
  3369. "Resources/functions/dump.php"
  3370. ],
  3371. "psr-4": {
  3372. "Symfony\\Component\\VarDumper\\": ""
  3373. },
  3374. "exclude-from-classmap": [
  3375. "/Tests/"
  3376. ]
  3377. },
  3378. "notification-url": "https://packagist.org/downloads/",
  3379. "license": [
  3380. "MIT"
  3381. ],
  3382. "authors": [
  3383. {
  3384. "name": "Nicolas Grekas",
  3385. "email": "p@tchwork.com"
  3386. },
  3387. {
  3388. "name": "Symfony Community",
  3389. "homepage": "https://symfony.com/contributors"
  3390. }
  3391. ],
  3392. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3393. "homepage": "https://symfony.com",
  3394. "keywords": [
  3395. "debug",
  3396. "dump"
  3397. ],
  3398. "install-path": "../symfony/var-dumper"
  3399. },
  3400. {
  3401. "name": "symfony/yaml",
  3402. "version": "v5.1.3",
  3403. "version_normalized": "5.1.3.0",
  3404. "source": {
  3405. "type": "git",
  3406. "url": "https://github.com/symfony/yaml.git",
  3407. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23"
  3408. },
  3409. "dist": {
  3410. "type": "zip",
  3411. "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23",
  3412. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23",
  3413. "shasum": ""
  3414. },
  3415. "require": {
  3416. "php": ">=7.2.5",
  3417. "symfony/deprecation-contracts": "^2.1",
  3418. "symfony/polyfill-ctype": "~1.8"
  3419. },
  3420. "conflict": {
  3421. "symfony/console": "<4.4"
  3422. },
  3423. "require-dev": {
  3424. "symfony/console": "^4.4|^5.0"
  3425. },
  3426. "suggest": {
  3427. "symfony/console": "For validating YAML files using the lint command"
  3428. },
  3429. "time": "2020-05-20T17:43:50+00:00",
  3430. "bin": [
  3431. "Resources/bin/yaml-lint"
  3432. ],
  3433. "type": "library",
  3434. "extra": {
  3435. "branch-alias": {
  3436. "dev-master": "5.1-dev"
  3437. }
  3438. },
  3439. "installation-source": "dist",
  3440. "autoload": {
  3441. "psr-4": {
  3442. "Symfony\\Component\\Yaml\\": ""
  3443. },
  3444. "exclude-from-classmap": [
  3445. "/Tests/"
  3446. ]
  3447. },
  3448. "notification-url": "https://packagist.org/downloads/",
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "Fabien Potencier",
  3455. "email": "fabien@symfony.com"
  3456. },
  3457. {
  3458. "name": "Symfony Community",
  3459. "homepage": "https://symfony.com/contributors"
  3460. }
  3461. ],
  3462. "description": "Symfony Yaml Component",
  3463. "homepage": "https://symfony.com",
  3464. "install-path": "../symfony/yaml"
  3465. },
  3466. {
  3467. "name": "tightenco/collect",
  3468. "version": "v5.7.27",
  3469. "version_normalized": "5.7.27.0",
  3470. "source": {
  3471. "type": "git",
  3472. "url": "https://github.com/tightenco/collect.git",
  3473. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00"
  3474. },
  3475. "dist": {
  3476. "type": "zip",
  3477. "url": "https://api.github.com/repos/tightenco/collect/zipball/c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  3478. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  3479. "shasum": ""
  3480. },
  3481. "require": {
  3482. "php": "^7.1.3",
  3483. "symfony/var-dumper": ">=3.4 <5"
  3484. },
  3485. "require-dev": {
  3486. "mockery/mockery": "^1.0",
  3487. "nesbot/carbon": "^1.26.3",
  3488. "phpunit/phpunit": "^7.0"
  3489. },
  3490. "time": "2019-02-13T19:40:13+00:00",
  3491. "type": "library",
  3492. "installation-source": "dist",
  3493. "autoload": {
  3494. "files": [
  3495. "src/Collect/Support/helpers.php",
  3496. "src/Collect/Support/alias.php"
  3497. ],
  3498. "psr-4": {
  3499. "Tightenco\\Collect\\": "src/Collect"
  3500. }
  3501. },
  3502. "notification-url": "https://packagist.org/downloads/",
  3503. "license": [
  3504. "MIT"
  3505. ],
  3506. "authors": [
  3507. {
  3508. "name": "Taylor Otwell",
  3509. "email": "taylorotwell@gmail.com"
  3510. }
  3511. ],
  3512. "description": "Collect - Illuminate Collections as a separate package.",
  3513. "keywords": [
  3514. "collection",
  3515. "laravel"
  3516. ],
  3517. "install-path": "../tightenco/collect"
  3518. },
  3519. {
  3520. "name": "zircote/swagger-php",
  3521. "version": "3.0.4",
  3522. "version_normalized": "3.0.4.0",
  3523. "source": {
  3524. "type": "git",
  3525. "url": "https://github.com/zircote/swagger-php.git",
  3526. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b"
  3527. },
  3528. "dist": {
  3529. "type": "zip",
  3530. "url": "https://api.github.com/repos/zircote/swagger-php/zipball/fa47d62c22c95272625624fbf8109fa46ffac43b",
  3531. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b",
  3532. "shasum": ""
  3533. },
  3534. "require": {
  3535. "doctrine/annotations": "*",
  3536. "php": ">=7.2",
  3537. "symfony/finder": ">=2.2",
  3538. "symfony/yaml": ">=3.3"
  3539. },
  3540. "require-dev": {
  3541. "phpunit/phpunit": ">=8",
  3542. "squizlabs/php_codesniffer": ">=3.3",
  3543. "zendframework/zend-form": "<2.8"
  3544. },
  3545. "time": "2020-05-07T09:10:49+00:00",
  3546. "bin": [
  3547. "bin/openapi"
  3548. ],
  3549. "type": "library",
  3550. "installation-source": "dist",
  3551. "autoload": {
  3552. "psr-4": {
  3553. "OpenApi\\": "src"
  3554. },
  3555. "files": [
  3556. "src/functions.php"
  3557. ]
  3558. },
  3559. "notification-url": "https://packagist.org/downloads/",
  3560. "license": [
  3561. "Apache-2.0"
  3562. ],
  3563. "authors": [
  3564. {
  3565. "name": "Robert Allen",
  3566. "email": "zircote@gmail.com",
  3567. "homepage": "http://www.zircote.com"
  3568. },
  3569. {
  3570. "name": "Bob Fanger",
  3571. "email": "bfanger@gmail.com",
  3572. "homepage": "http://bfanger.nl"
  3573. }
  3574. ],
  3575. "description": "swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations",
  3576. "homepage": "https://github.com/zircote/swagger-php/",
  3577. "keywords": [
  3578. "api",
  3579. "json",
  3580. "rest",
  3581. "service discovery"
  3582. ],
  3583. "install-path": "../zircote/swagger-php"
  3584. }
  3585. ],
  3586. "dev": true,
  3587. "dev-package-names": []
  3588. }