composer.lock 113 KB

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