composer.lock 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436
  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": "a5faec9d74a923c354d912dbfd73cf9b",
  8. "packages": [
  9. {
  10. "name": "adldap2/adldap2",
  11. "version": "v10.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Adldap2/Adldap2.git",
  15. "reference": "1294c92746e3fb3bb59cd7756ca7838a1e705a2a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Adldap2/Adldap2/zipball/1294c92746e3fb3bb59cd7756ca7838a1e705a2a",
  20. "reference": "1294c92746e3fb3bb59cd7756ca7838a1e705a2a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "ext-ldap": "*",
  26. "illuminate/contracts": "~5.0|~6.0|~7.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"
  31. },
  32. "require-dev": {
  33. "mockery/mockery": "~1.0",
  34. "phpunit/phpunit": "~6.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. "time": "2020-05-04T21:10:15+00:00"
  67. },
  68. {
  69. "name": "composer/semver",
  70. "version": "1.4.2",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/composer/semver.git",
  74. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
  79. "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
  80. "shasum": ""
  81. },
  82. "require": {
  83. "php": "^5.3.2 || ^7.0"
  84. },
  85. "require-dev": {
  86. "phpunit/phpunit": "^4.5 || ^5.0.5",
  87. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  88. },
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-master": "1.x-dev"
  93. }
  94. },
  95. "autoload": {
  96. "psr-4": {
  97. "Composer\\Semver\\": "src"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "Nils Adermann",
  107. "email": "naderman@naderman.de",
  108. "homepage": "http://www.naderman.de"
  109. },
  110. {
  111. "name": "Jordi Boggiano",
  112. "email": "j.boggiano@seld.be",
  113. "homepage": "http://seld.be"
  114. },
  115. {
  116. "name": "Rob Bast",
  117. "email": "rob.bast@gmail.com",
  118. "homepage": "http://robbast.nl"
  119. }
  120. ],
  121. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  122. "keywords": [
  123. "semantic",
  124. "semver",
  125. "validation",
  126. "versioning"
  127. ],
  128. "time": "2016-08-30T16:08:34+00:00"
  129. },
  130. {
  131. "name": "dibi/dibi",
  132. "version": "v3.2.4",
  133. "source": {
  134. "type": "git",
  135. "url": "https://github.com/dg/dibi.git",
  136. "reference": "d571460a6f8fa1334a04f7aaa1551bb0f12c2266"
  137. },
  138. "dist": {
  139. "type": "zip",
  140. "url": "https://api.github.com/repos/dg/dibi/zipball/d571460a6f8fa1334a04f7aaa1551bb0f12c2266",
  141. "reference": "d571460a6f8fa1334a04f7aaa1551bb0f12c2266",
  142. "shasum": ""
  143. },
  144. "require": {
  145. "php": ">=5.4.4"
  146. },
  147. "replace": {
  148. "dg/dibi": "*"
  149. },
  150. "require-dev": {
  151. "nette/tester": "~1.7",
  152. "tracy/tracy": "~2.2"
  153. },
  154. "type": "library",
  155. "extra": {
  156. "branch-alias": {
  157. "dev-master": "3.2-dev"
  158. }
  159. },
  160. "autoload": {
  161. "classmap": [
  162. "src/"
  163. ],
  164. "files": [
  165. "src/loader.php"
  166. ]
  167. },
  168. "notification-url": "https://packagist.org/downloads/",
  169. "license": [
  170. "BSD-3-Clause",
  171. "GPL-2.0",
  172. "GPL-3.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "David Grudl",
  177. "homepage": "https://davidgrudl.com"
  178. }
  179. ],
  180. "description": "Dibi is Database Abstraction Library for PHP",
  181. "homepage": "https://dibiphp.com",
  182. "keywords": [
  183. "access",
  184. "database",
  185. "dbal",
  186. "mssql",
  187. "mysql",
  188. "odbc",
  189. "oracle",
  190. "pdo",
  191. "postgresql",
  192. "sqlite",
  193. "sqlsrv"
  194. ],
  195. "time": "2020-03-26T03:05:01+00:00"
  196. },
  197. {
  198. "name": "doctrine/annotations",
  199. "version": "1.10.3",
  200. "source": {
  201. "type": "git",
  202. "url": "https://github.com/doctrine/annotations.git",
  203. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d"
  204. },
  205. "dist": {
  206. "type": "zip",
  207. "url": "https://api.github.com/repos/doctrine/annotations/zipball/5db60a4969eba0e0c197a19c077780aadbc43c5d",
  208. "reference": "5db60a4969eba0e0c197a19c077780aadbc43c5d",
  209. "shasum": ""
  210. },
  211. "require": {
  212. "doctrine/lexer": "1.*",
  213. "ext-tokenizer": "*",
  214. "php": "^7.1 || ^8.0"
  215. },
  216. "require-dev": {
  217. "doctrine/cache": "1.*",
  218. "phpunit/phpunit": "^7.5"
  219. },
  220. "type": "library",
  221. "extra": {
  222. "branch-alias": {
  223. "dev-master": "1.9.x-dev"
  224. }
  225. },
  226. "autoload": {
  227. "psr-4": {
  228. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  229. }
  230. },
  231. "notification-url": "https://packagist.org/downloads/",
  232. "license": [
  233. "MIT"
  234. ],
  235. "authors": [
  236. {
  237. "name": "Guilherme Blanco",
  238. "email": "guilhermeblanco@gmail.com"
  239. },
  240. {
  241. "name": "Roman Borschel",
  242. "email": "roman@code-factory.org"
  243. },
  244. {
  245. "name": "Benjamin Eberlei",
  246. "email": "kontakt@beberlei.de"
  247. },
  248. {
  249. "name": "Jonathan Wage",
  250. "email": "jonwage@gmail.com"
  251. },
  252. {
  253. "name": "Johannes Schmitt",
  254. "email": "schmittjoh@gmail.com"
  255. }
  256. ],
  257. "description": "Docblock Annotations Parser",
  258. "homepage": "http://www.doctrine-project.org",
  259. "keywords": [
  260. "annotations",
  261. "docblock",
  262. "parser"
  263. ],
  264. "time": "2020-05-25T17:24:27+00:00"
  265. },
  266. {
  267. "name": "doctrine/lexer",
  268. "version": "1.2.1",
  269. "source": {
  270. "type": "git",
  271. "url": "https://github.com/doctrine/lexer.git",
  272. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  273. },
  274. "dist": {
  275. "type": "zip",
  276. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  277. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  278. "shasum": ""
  279. },
  280. "require": {
  281. "php": "^7.2 || ^8.0"
  282. },
  283. "require-dev": {
  284. "doctrine/coding-standard": "^6.0",
  285. "phpstan/phpstan": "^0.11.8",
  286. "phpunit/phpunit": "^8.2"
  287. },
  288. "type": "library",
  289. "extra": {
  290. "branch-alias": {
  291. "dev-master": "1.2.x-dev"
  292. }
  293. },
  294. "autoload": {
  295. "psr-4": {
  296. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  297. }
  298. },
  299. "notification-url": "https://packagist.org/downloads/",
  300. "license": [
  301. "MIT"
  302. ],
  303. "authors": [
  304. {
  305. "name": "Guilherme Blanco",
  306. "email": "guilhermeblanco@gmail.com"
  307. },
  308. {
  309. "name": "Roman Borschel",
  310. "email": "roman@code-factory.org"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  318. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  319. "keywords": [
  320. "annotations",
  321. "docblock",
  322. "lexer",
  323. "parser",
  324. "php"
  325. ],
  326. "time": "2020-05-25T17:44:05+00:00"
  327. },
  328. {
  329. "name": "fig/http-message-util",
  330. "version": "1.1.4",
  331. "source": {
  332. "type": "git",
  333. "url": "https://github.com/php-fig/http-message-util.git",
  334. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422"
  335. },
  336. "dist": {
  337. "type": "zip",
  338. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  339. "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422",
  340. "shasum": ""
  341. },
  342. "require": {
  343. "php": "^5.3 || ^7.0"
  344. },
  345. "suggest": {
  346. "psr/http-message": "The package containing the PSR-7 interfaces"
  347. },
  348. "type": "library",
  349. "extra": {
  350. "branch-alias": {
  351. "dev-master": "1.1.x-dev"
  352. }
  353. },
  354. "autoload": {
  355. "psr-4": {
  356. "Fig\\Http\\Message\\": "src/"
  357. }
  358. },
  359. "notification-url": "https://packagist.org/downloads/",
  360. "license": [
  361. "MIT"
  362. ],
  363. "authors": [
  364. {
  365. "name": "PHP-FIG",
  366. "homepage": "http://www.php-fig.org/"
  367. }
  368. ],
  369. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  370. "keywords": [
  371. "http",
  372. "http-message",
  373. "psr",
  374. "psr-7",
  375. "request",
  376. "response"
  377. ],
  378. "time": "2020-02-05T20:36:27+00:00"
  379. },
  380. {
  381. "name": "guzzlehttp/guzzle",
  382. "version": "6.5.2",
  383. "source": {
  384. "type": "git",
  385. "url": "https://github.com/guzzle/guzzle.git",
  386. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82"
  387. },
  388. "dist": {
  389. "type": "zip",
  390. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82",
  391. "reference": "43ece0e75098b7ecd8d13918293029e555a50f82",
  392. "shasum": ""
  393. },
  394. "require": {
  395. "ext-json": "*",
  396. "guzzlehttp/promises": "^1.0",
  397. "guzzlehttp/psr7": "^1.6.1",
  398. "php": ">=5.5"
  399. },
  400. "require-dev": {
  401. "ext-curl": "*",
  402. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  403. "psr/log": "^1.1"
  404. },
  405. "suggest": {
  406. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  407. "psr/log": "Required for using the Log middleware"
  408. },
  409. "type": "library",
  410. "extra": {
  411. "branch-alias": {
  412. "dev-master": "6.5-dev"
  413. }
  414. },
  415. "autoload": {
  416. "psr-4": {
  417. "GuzzleHttp\\": "src/"
  418. },
  419. "files": [
  420. "src/functions_include.php"
  421. ]
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "Michael Dowling",
  430. "email": "mtdowling@gmail.com",
  431. "homepage": "https://github.com/mtdowling"
  432. }
  433. ],
  434. "description": "Guzzle is a PHP HTTP client library",
  435. "homepage": "http://guzzlephp.org/",
  436. "keywords": [
  437. "client",
  438. "curl",
  439. "framework",
  440. "http",
  441. "http client",
  442. "rest",
  443. "web service"
  444. ],
  445. "time": "2019-12-23T11:57:10+00:00"
  446. },
  447. {
  448. "name": "guzzlehttp/promises",
  449. "version": "v1.3.1",
  450. "source": {
  451. "type": "git",
  452. "url": "https://github.com/guzzle/promises.git",
  453. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  454. },
  455. "dist": {
  456. "type": "zip",
  457. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  458. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  459. "shasum": ""
  460. },
  461. "require": {
  462. "php": ">=5.5.0"
  463. },
  464. "require-dev": {
  465. "phpunit/phpunit": "^4.0"
  466. },
  467. "type": "library",
  468. "extra": {
  469. "branch-alias": {
  470. "dev-master": "1.4-dev"
  471. }
  472. },
  473. "autoload": {
  474. "psr-4": {
  475. "GuzzleHttp\\Promise\\": "src/"
  476. },
  477. "files": [
  478. "src/functions_include.php"
  479. ]
  480. },
  481. "notification-url": "https://packagist.org/downloads/",
  482. "license": [
  483. "MIT"
  484. ],
  485. "authors": [
  486. {
  487. "name": "Michael Dowling",
  488. "email": "mtdowling@gmail.com",
  489. "homepage": "https://github.com/mtdowling"
  490. }
  491. ],
  492. "description": "Guzzle promises library",
  493. "keywords": [
  494. "promise"
  495. ],
  496. "time": "2016-12-20T10:07:11+00:00"
  497. },
  498. {
  499. "name": "guzzlehttp/psr7",
  500. "version": "1.6.1",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/guzzle/psr7.git",
  504. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  509. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "php": ">=5.4.0",
  514. "psr/http-message": "~1.0",
  515. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  516. },
  517. "provide": {
  518. "psr/http-message-implementation": "1.0"
  519. },
  520. "require-dev": {
  521. "ext-zlib": "*",
  522. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  523. },
  524. "suggest": {
  525. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "branch-alias": {
  530. "dev-master": "1.6-dev"
  531. }
  532. },
  533. "autoload": {
  534. "psr-4": {
  535. "GuzzleHttp\\Psr7\\": "src/"
  536. },
  537. "files": [
  538. "src/functions_include.php"
  539. ]
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Michael Dowling",
  548. "email": "mtdowling@gmail.com",
  549. "homepage": "https://github.com/mtdowling"
  550. },
  551. {
  552. "name": "Tobias Schultze",
  553. "homepage": "https://github.com/Tobion"
  554. }
  555. ],
  556. "description": "PSR-7 message implementation that also provides common utility methods",
  557. "keywords": [
  558. "http",
  559. "message",
  560. "psr-7",
  561. "request",
  562. "response",
  563. "stream",
  564. "uri",
  565. "url"
  566. ],
  567. "time": "2019-07-01T23:21:34+00:00"
  568. },
  569. {
  570. "name": "illuminate/contracts",
  571. "version": "v5.8.0",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/illuminate/contracts.git",
  575. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/illuminate/contracts/zipball/3e3a9a654adbf798e05491a5dbf90112df1effde",
  580. "reference": "3e3a9a654adbf798e05491a5dbf90112df1effde",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "php": "^7.1.3",
  585. "psr/container": "^1.0",
  586. "psr/simple-cache": "^1.0"
  587. },
  588. "type": "library",
  589. "extra": {
  590. "branch-alias": {
  591. "dev-master": "5.8-dev"
  592. }
  593. },
  594. "autoload": {
  595. "psr-4": {
  596. "Illuminate\\Contracts\\": ""
  597. }
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "MIT"
  602. ],
  603. "authors": [
  604. {
  605. "name": "Taylor Otwell",
  606. "email": "taylor@laravel.com"
  607. }
  608. ],
  609. "description": "The Illuminate Contracts package.",
  610. "homepage": "https://laravel.com",
  611. "time": "2019-02-18T18:37:54+00:00"
  612. },
  613. {
  614. "name": "kryptonit3/couchpotato",
  615. "version": "1.0.0",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/Kryptonit3/CouchPotato.git",
  619. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/Kryptonit3/CouchPotato/zipball/7a1fc892f70f120f74ff005850e923a0f1566376",
  624. "reference": "7a1fc892f70f120f74ff005850e923a0f1566376",
  625. "shasum": ""
  626. },
  627. "require": {
  628. "guzzlehttp/guzzle": "^6.1"
  629. },
  630. "type": "library",
  631. "autoload": {
  632. "psr-4": {
  633. "Kryptonit3\\CouchPotato\\": "src/"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Jesse Szypulski",
  643. "email": "jesse.szypulski@gmail.com"
  644. }
  645. ],
  646. "description": "PHP Wrapper for CouchPotato API",
  647. "time": "2016-02-06T22:02:39+00:00"
  648. },
  649. {
  650. "name": "kryptonit3/sickrage",
  651. "version": "1.0.1",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/Kryptonit3/SickRage.git",
  655. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/Kryptonit3/SickRage/zipball/441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  660. "reference": "441a293b5c219c3cdd1ebebd2bcf4518598f84aa",
  661. "shasum": ""
  662. },
  663. "require": {
  664. "guzzlehttp/guzzle": "^6.1"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-4": {
  669. "Kryptonit3\\SickRage\\": "src/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "Jesse Szypulski",
  679. "email": "jesse.szypulski@gmail.com"
  680. }
  681. ],
  682. "description": "PHP Wrapper for SickRage / SickBeard API",
  683. "time": "2016-08-08T00:57:46+00:00"
  684. },
  685. {
  686. "name": "kryptonit3/sonarr",
  687. "version": "1.0.6.1",
  688. "source": {
  689. "type": "git",
  690. "url": "https://github.com/Kryptonit3/Sonarr.git",
  691. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e"
  692. },
  693. "dist": {
  694. "type": "zip",
  695. "url": "https://api.github.com/repos/Kryptonit3/Sonarr/zipball/e30c5c783a837270bcef81571ca9b95909c52e5e",
  696. "reference": "e30c5c783a837270bcef81571ca9b95909c52e5e",
  697. "shasum": ""
  698. },
  699. "require": {
  700. "guzzlehttp/guzzle": "^6.1"
  701. },
  702. "type": "library",
  703. "autoload": {
  704. "psr-4": {
  705. "Kryptonit3\\Sonarr\\": "src/"
  706. }
  707. },
  708. "notification-url": "https://packagist.org/downloads/",
  709. "license": [
  710. "MIT"
  711. ],
  712. "authors": [
  713. {
  714. "name": "Jesse Szypulski",
  715. "email": "jesse.szypulski@gmail.com"
  716. }
  717. ],
  718. "description": "PHP Sonarr API Wrapper",
  719. "time": "2017-06-30T01:25:49+00:00"
  720. },
  721. {
  722. "name": "lcobucci/jwt",
  723. "version": "3.3.1",
  724. "source": {
  725. "type": "git",
  726. "url": "https://github.com/lcobucci/jwt.git",
  727. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18"
  728. },
  729. "dist": {
  730. "type": "zip",
  731. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  732. "reference": "a11ec5f4b4d75d1fcd04e133dede4c317aac9e18",
  733. "shasum": ""
  734. },
  735. "require": {
  736. "ext-mbstring": "*",
  737. "ext-openssl": "*",
  738. "php": "^5.6 || ^7.0"
  739. },
  740. "require-dev": {
  741. "mikey179/vfsstream": "~1.5",
  742. "phpmd/phpmd": "~2.2",
  743. "phpunit/php-invoker": "~1.1",
  744. "phpunit/phpunit": "^5.7 || ^7.3",
  745. "squizlabs/php_codesniffer": "~2.3"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "branch-alias": {
  750. "dev-master": "3.1-dev"
  751. }
  752. },
  753. "autoload": {
  754. "psr-4": {
  755. "Lcobucci\\JWT\\": "src"
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "BSD-3-Clause"
  761. ],
  762. "authors": [
  763. {
  764. "name": "Luís Otávio Cobucci Oblonczyk",
  765. "email": "lcobucci@gmail.com",
  766. "role": "Developer"
  767. }
  768. ],
  769. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  770. "keywords": [
  771. "JWS",
  772. "jwt"
  773. ],
  774. "time": "2019-05-24T18:30:49+00:00"
  775. },
  776. {
  777. "name": "nikic/fast-route",
  778. "version": "v1.3.0",
  779. "source": {
  780. "type": "git",
  781. "url": "https://github.com/nikic/FastRoute.git",
  782. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  783. },
  784. "dist": {
  785. "type": "zip",
  786. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  787. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  788. "shasum": ""
  789. },
  790. "require": {
  791. "php": ">=5.4.0"
  792. },
  793. "require-dev": {
  794. "phpunit/phpunit": "^4.8.35|~5.7"
  795. },
  796. "type": "library",
  797. "autoload": {
  798. "psr-4": {
  799. "FastRoute\\": "src/"
  800. },
  801. "files": [
  802. "src/functions.php"
  803. ]
  804. },
  805. "notification-url": "https://packagist.org/downloads/",
  806. "license": [
  807. "BSD-3-Clause"
  808. ],
  809. "authors": [
  810. {
  811. "name": "Nikita Popov",
  812. "email": "nikic@php.net"
  813. }
  814. ],
  815. "description": "Fast request router for PHP",
  816. "keywords": [
  817. "router",
  818. "routing"
  819. ],
  820. "time": "2018-02-13T20:26:39+00:00"
  821. },
  822. {
  823. "name": "paragonie/constant_time_encoding",
  824. "version": "v2.2.2",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/paragonie/constant_time_encoding.git",
  828. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  833. "reference": "eccf915f45f911bfb189d1d1638d940ec6ee6e33",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "php": "^7"
  838. },
  839. "require-dev": {
  840. "phpunit/phpunit": "^6|^7",
  841. "vimeo/psalm": "^1"
  842. },
  843. "type": "library",
  844. "autoload": {
  845. "psr-4": {
  846. "ParagonIE\\ConstantTime\\": "src/"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Paragon Initiative Enterprises",
  856. "email": "security@paragonie.com",
  857. "homepage": "https://paragonie.com",
  858. "role": "Maintainer"
  859. },
  860. {
  861. "name": "Steve 'Sc00bz' Thomas",
  862. "email": "steve@tobtu.com",
  863. "homepage": "https://www.tobtu.com",
  864. "role": "Original Developer"
  865. }
  866. ],
  867. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  868. "keywords": [
  869. "base16",
  870. "base32",
  871. "base32_decode",
  872. "base32_encode",
  873. "base64",
  874. "base64_decode",
  875. "base64_encode",
  876. "bin2hex",
  877. "encoding",
  878. "hex",
  879. "hex2bin",
  880. "rfc4648"
  881. ],
  882. "time": "2018-03-10T19:47:49+00:00"
  883. },
  884. {
  885. "name": "paragonie/random_compat",
  886. "version": "v9.99.99",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/paragonie/random_compat.git",
  890. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  895. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "php": "^7"
  900. },
  901. "require-dev": {
  902. "phpunit/phpunit": "4.*|5.*",
  903. "vimeo/psalm": "^1"
  904. },
  905. "suggest": {
  906. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  907. },
  908. "type": "library",
  909. "notification-url": "https://packagist.org/downloads/",
  910. "license": [
  911. "MIT"
  912. ],
  913. "authors": [
  914. {
  915. "name": "Paragon Initiative Enterprises",
  916. "email": "security@paragonie.com",
  917. "homepage": "https://paragonie.com"
  918. }
  919. ],
  920. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  921. "keywords": [
  922. "csprng",
  923. "polyfill",
  924. "pseudorandom",
  925. "random"
  926. ],
  927. "time": "2018-07-02T15:55:56+00:00"
  928. },
  929. {
  930. "name": "paragonie/sodium_compat",
  931. "version": "v1.6.4",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/paragonie/sodium_compat.git",
  935. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/3f2fd07977541b4d630ea0365ad0eceddee5179c",
  940. "reference": "3f2fd07977541b4d630ea0365ad0eceddee5179c",
  941. "shasum": ""
  942. },
  943. "require": {
  944. "paragonie/random_compat": ">=1",
  945. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7"
  946. },
  947. "require-dev": {
  948. "phpunit/phpunit": "^3|^4|^5"
  949. },
  950. "suggest": {
  951. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  952. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  953. },
  954. "type": "library",
  955. "autoload": {
  956. "files": [
  957. "autoload.php"
  958. ]
  959. },
  960. "notification-url": "https://packagist.org/downloads/",
  961. "license": [
  962. "ISC"
  963. ],
  964. "authors": [
  965. {
  966. "name": "Paragon Initiative Enterprises",
  967. "email": "security@paragonie.com"
  968. },
  969. {
  970. "name": "Frank Denis",
  971. "email": "jedisct1@pureftpd.org"
  972. }
  973. ],
  974. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  975. "keywords": [
  976. "Authentication",
  977. "BLAKE2b",
  978. "ChaCha20",
  979. "ChaCha20-Poly1305",
  980. "Chapoly",
  981. "Curve25519",
  982. "Ed25519",
  983. "EdDSA",
  984. "Edwards-curve Digital Signature Algorithm",
  985. "Elliptic Curve Diffie-Hellman",
  986. "Poly1305",
  987. "Pure-PHP cryptography",
  988. "RFC 7748",
  989. "RFC 8032",
  990. "Salpoly",
  991. "Salsa20",
  992. "X25519",
  993. "XChaCha20-Poly1305",
  994. "XSalsa20-Poly1305",
  995. "Xchacha20",
  996. "Xsalsa20",
  997. "aead",
  998. "cryptography",
  999. "ecdh",
  1000. "elliptic curve",
  1001. "elliptic curve cryptography",
  1002. "encryption",
  1003. "libsodium",
  1004. "php",
  1005. "public-key cryptography",
  1006. "secret-key cryptography",
  1007. "side-channel resistant"
  1008. ],
  1009. "time": "2018-08-29T22:02:48+00:00"
  1010. },
  1011. {
  1012. "name": "phpmailer/phpmailer",
  1013. "version": "v6.1.4",
  1014. "source": {
  1015. "type": "git",
  1016. "url": "https://github.com/PHPMailer/PHPMailer.git",
  1017. "reference": "c5e61d0729507049cec9673aa1a679f9adefd683"
  1018. },
  1019. "dist": {
  1020. "type": "zip",
  1021. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/c5e61d0729507049cec9673aa1a679f9adefd683",
  1022. "reference": "c5e61d0729507049cec9673aa1a679f9adefd683",
  1023. "shasum": ""
  1024. },
  1025. "require": {
  1026. "ext-ctype": "*",
  1027. "ext-filter": "*",
  1028. "php": ">=5.5.0"
  1029. },
  1030. "require-dev": {
  1031. "doctrine/annotations": "^1.2",
  1032. "friendsofphp/php-cs-fixer": "^2.2",
  1033. "phpunit/phpunit": "^4.8 || ^5.7"
  1034. },
  1035. "suggest": {
  1036. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  1037. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  1038. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  1039. "psr/log": "For optional PSR-3 debug logging",
  1040. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  1041. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  1042. },
  1043. "type": "library",
  1044. "autoload": {
  1045. "psr-4": {
  1046. "PHPMailer\\PHPMailer\\": "src/"
  1047. }
  1048. },
  1049. "notification-url": "https://packagist.org/downloads/",
  1050. "license": [
  1051. "LGPL-2.1-only"
  1052. ],
  1053. "authors": [
  1054. {
  1055. "name": "Marcus Bointon",
  1056. "email": "phpmailer@synchromedia.co.uk"
  1057. },
  1058. {
  1059. "name": "Jim Jagielski",
  1060. "email": "jimjag@gmail.com"
  1061. },
  1062. {
  1063. "name": "Andy Prevost",
  1064. "email": "codeworxtech@users.sourceforge.net"
  1065. },
  1066. {
  1067. "name": "Brent R. Matzelle"
  1068. }
  1069. ],
  1070. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  1071. "time": "2019-12-10T11:17:38+00:00"
  1072. },
  1073. {
  1074. "name": "pragmarx/google2fa",
  1075. "version": "v3.0.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/antonioribeiro/google2fa.git",
  1079. "reference": "6949226739e4424f40031e6f1c96b1fd64047335"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6949226739e4424f40031e6f1c96b1fd64047335",
  1084. "reference": "6949226739e4424f40031e6f1c96b1fd64047335",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "paragonie/constant_time_encoding": "~1.0|~2.0",
  1089. "paragonie/random_compat": ">=1",
  1090. "php": ">=5.4",
  1091. "symfony/polyfill-php56": "~1.2"
  1092. },
  1093. "require-dev": {
  1094. "bacon/bacon-qr-code": "~1.0",
  1095. "phpunit/phpunit": "~4|~5|~6"
  1096. },
  1097. "suggest": {
  1098. "bacon/bacon-qr-code": "Required to generate inline QR Codes."
  1099. },
  1100. "type": "library",
  1101. "extra": {
  1102. "component": "package",
  1103. "branch-alias": {
  1104. "dev-master": "2.0-dev"
  1105. }
  1106. },
  1107. "autoload": {
  1108. "psr-4": {
  1109. "PragmaRX\\Google2FA\\": "src/",
  1110. "PragmaRX\\Google2FA\\Tests\\": "tests/"
  1111. }
  1112. },
  1113. "notification-url": "https://packagist.org/downloads/",
  1114. "license": [
  1115. "MIT"
  1116. ],
  1117. "authors": [
  1118. {
  1119. "name": "Antonio Carlos Ribeiro",
  1120. "email": "acr@antoniocarlosribeiro.com",
  1121. "role": "Creator & Designer"
  1122. }
  1123. ],
  1124. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  1125. "keywords": [
  1126. "2fa",
  1127. "Authentication",
  1128. "Two Factor Authentication",
  1129. "google2fa",
  1130. "laravel"
  1131. ],
  1132. "time": "2018-08-29T13:28:06+00:00"
  1133. },
  1134. {
  1135. "name": "psr/container",
  1136. "version": "1.0.0",
  1137. "source": {
  1138. "type": "git",
  1139. "url": "https://github.com/php-fig/container.git",
  1140. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1141. },
  1142. "dist": {
  1143. "type": "zip",
  1144. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1145. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1146. "shasum": ""
  1147. },
  1148. "require": {
  1149. "php": ">=5.3.0"
  1150. },
  1151. "type": "library",
  1152. "extra": {
  1153. "branch-alias": {
  1154. "dev-master": "1.0.x-dev"
  1155. }
  1156. },
  1157. "autoload": {
  1158. "psr-4": {
  1159. "Psr\\Container\\": "src/"
  1160. }
  1161. },
  1162. "notification-url": "https://packagist.org/downloads/",
  1163. "license": [
  1164. "MIT"
  1165. ],
  1166. "authors": [
  1167. {
  1168. "name": "PHP-FIG",
  1169. "homepage": "http://www.php-fig.org/"
  1170. }
  1171. ],
  1172. "description": "Common Container Interface (PHP FIG PSR-11)",
  1173. "homepage": "https://github.com/php-fig/container",
  1174. "keywords": [
  1175. "PSR-11",
  1176. "container",
  1177. "container-interface",
  1178. "container-interop",
  1179. "psr"
  1180. ],
  1181. "time": "2017-02-14T16:28:37+00:00"
  1182. },
  1183. {
  1184. "name": "psr/http-factory",
  1185. "version": "1.0.1",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/php-fig/http-factory.git",
  1189. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1194. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1195. "shasum": ""
  1196. },
  1197. "require": {
  1198. "php": ">=7.0.0",
  1199. "psr/http-message": "^1.0"
  1200. },
  1201. "type": "library",
  1202. "extra": {
  1203. "branch-alias": {
  1204. "dev-master": "1.0.x-dev"
  1205. }
  1206. },
  1207. "autoload": {
  1208. "psr-4": {
  1209. "Psr\\Http\\Message\\": "src/"
  1210. }
  1211. },
  1212. "notification-url": "https://packagist.org/downloads/",
  1213. "license": [
  1214. "MIT"
  1215. ],
  1216. "authors": [
  1217. {
  1218. "name": "PHP-FIG",
  1219. "homepage": "http://www.php-fig.org/"
  1220. }
  1221. ],
  1222. "description": "Common interfaces for PSR-7 HTTP message factories",
  1223. "keywords": [
  1224. "factory",
  1225. "http",
  1226. "message",
  1227. "psr",
  1228. "psr-17",
  1229. "psr-7",
  1230. "request",
  1231. "response"
  1232. ],
  1233. "time": "2019-04-30T12:38:16+00:00"
  1234. },
  1235. {
  1236. "name": "psr/http-message",
  1237. "version": "1.0.1",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/php-fig/http-message.git",
  1241. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1246. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "php": ">=5.3.0"
  1251. },
  1252. "type": "library",
  1253. "extra": {
  1254. "branch-alias": {
  1255. "dev-master": "1.0.x-dev"
  1256. }
  1257. },
  1258. "autoload": {
  1259. "psr-4": {
  1260. "Psr\\Http\\Message\\": "src/"
  1261. }
  1262. },
  1263. "notification-url": "https://packagist.org/downloads/",
  1264. "license": [
  1265. "MIT"
  1266. ],
  1267. "authors": [
  1268. {
  1269. "name": "PHP-FIG",
  1270. "homepage": "http://www.php-fig.org/"
  1271. }
  1272. ],
  1273. "description": "Common interface for HTTP messages",
  1274. "homepage": "https://github.com/php-fig/http-message",
  1275. "keywords": [
  1276. "http",
  1277. "http-message",
  1278. "psr",
  1279. "psr-7",
  1280. "request",
  1281. "response"
  1282. ],
  1283. "time": "2016-08-06T14:39:51+00:00"
  1284. },
  1285. {
  1286. "name": "psr/http-server-handler",
  1287. "version": "1.0.1",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/php-fig/http-server-handler.git",
  1291. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1296. "reference": "aff2f80e33b7f026ec96bb42f63242dc50ffcae7",
  1297. "shasum": ""
  1298. },
  1299. "require": {
  1300. "php": ">=7.0",
  1301. "psr/http-message": "^1.0"
  1302. },
  1303. "type": "library",
  1304. "extra": {
  1305. "branch-alias": {
  1306. "dev-master": "1.0.x-dev"
  1307. }
  1308. },
  1309. "autoload": {
  1310. "psr-4": {
  1311. "Psr\\Http\\Server\\": "src/"
  1312. }
  1313. },
  1314. "notification-url": "https://packagist.org/downloads/",
  1315. "license": [
  1316. "MIT"
  1317. ],
  1318. "authors": [
  1319. {
  1320. "name": "PHP-FIG",
  1321. "homepage": "http://www.php-fig.org/"
  1322. }
  1323. ],
  1324. "description": "Common interface for HTTP server-side request handler",
  1325. "keywords": [
  1326. "handler",
  1327. "http",
  1328. "http-interop",
  1329. "psr",
  1330. "psr-15",
  1331. "psr-7",
  1332. "request",
  1333. "response",
  1334. "server"
  1335. ],
  1336. "time": "2018-10-30T16:46:14+00:00"
  1337. },
  1338. {
  1339. "name": "psr/http-server-middleware",
  1340. "version": "1.0.1",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/php-fig/http-server-middleware.git",
  1344. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1349. "reference": "2296f45510945530b9dceb8bcedb5cb84d40c5f5",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": ">=7.0",
  1354. "psr/http-message": "^1.0",
  1355. "psr/http-server-handler": "^1.0"
  1356. },
  1357. "type": "library",
  1358. "extra": {
  1359. "branch-alias": {
  1360. "dev-master": "1.0.x-dev"
  1361. }
  1362. },
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Psr\\Http\\Server\\": "src/"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "authors": [
  1373. {
  1374. "name": "PHP-FIG",
  1375. "homepage": "http://www.php-fig.org/"
  1376. }
  1377. ],
  1378. "description": "Common interface for HTTP server-side middleware",
  1379. "keywords": [
  1380. "http",
  1381. "http-interop",
  1382. "middleware",
  1383. "psr",
  1384. "psr-15",
  1385. "psr-7",
  1386. "request",
  1387. "response"
  1388. ],
  1389. "time": "2018-10-30T17:12:04+00:00"
  1390. },
  1391. {
  1392. "name": "psr/log",
  1393. "version": "1.1.0",
  1394. "source": {
  1395. "type": "git",
  1396. "url": "https://github.com/php-fig/log.git",
  1397. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
  1398. },
  1399. "dist": {
  1400. "type": "zip",
  1401. "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1402. "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
  1403. "shasum": ""
  1404. },
  1405. "require": {
  1406. "php": ">=5.3.0"
  1407. },
  1408. "type": "library",
  1409. "extra": {
  1410. "branch-alias": {
  1411. "dev-master": "1.0.x-dev"
  1412. }
  1413. },
  1414. "autoload": {
  1415. "psr-4": {
  1416. "Psr\\Log\\": "Psr/Log/"
  1417. }
  1418. },
  1419. "notification-url": "https://packagist.org/downloads/",
  1420. "license": [
  1421. "MIT"
  1422. ],
  1423. "authors": [
  1424. {
  1425. "name": "PHP-FIG",
  1426. "homepage": "http://www.php-fig.org/"
  1427. }
  1428. ],
  1429. "description": "Common interface for logging libraries",
  1430. "homepage": "https://github.com/php-fig/log",
  1431. "keywords": [
  1432. "log",
  1433. "psr",
  1434. "psr-3"
  1435. ],
  1436. "time": "2018-11-20T15:27:04+00:00"
  1437. },
  1438. {
  1439. "name": "psr/simple-cache",
  1440. "version": "1.0.1",
  1441. "source": {
  1442. "type": "git",
  1443. "url": "https://github.com/php-fig/simple-cache.git",
  1444. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1445. },
  1446. "dist": {
  1447. "type": "zip",
  1448. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1449. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1450. "shasum": ""
  1451. },
  1452. "require": {
  1453. "php": ">=5.3.0"
  1454. },
  1455. "type": "library",
  1456. "extra": {
  1457. "branch-alias": {
  1458. "dev-master": "1.0.x-dev"
  1459. }
  1460. },
  1461. "autoload": {
  1462. "psr-4": {
  1463. "Psr\\SimpleCache\\": "src/"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "PHP-FIG",
  1473. "homepage": "http://www.php-fig.org/"
  1474. }
  1475. ],
  1476. "description": "Common interfaces for simple caching",
  1477. "keywords": [
  1478. "cache",
  1479. "caching",
  1480. "psr",
  1481. "psr-16",
  1482. "simple-cache"
  1483. ],
  1484. "time": "2017-10-23T01:57:42+00:00"
  1485. },
  1486. {
  1487. "name": "pusher/pusher-php-server",
  1488. "version": "v4.1.1",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/pusher/pusher-http-php.git",
  1492. "reference": "3c05ef64839845b6114396ff8406712cba052750"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/3c05ef64839845b6114396ff8406712cba052750",
  1497. "reference": "3c05ef64839845b6114396ff8406712cba052750",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "ext-curl": "*",
  1502. "paragonie/sodium_compat": "^1.6",
  1503. "php": "^7.1",
  1504. "psr/log": "^1.0"
  1505. },
  1506. "require-dev": {
  1507. "phpunit/phpunit": "^7.2"
  1508. },
  1509. "type": "library",
  1510. "extra": {
  1511. "branch-alias": {
  1512. "dev-master": "3.4-dev"
  1513. }
  1514. },
  1515. "autoload": {
  1516. "psr-4": {
  1517. "Pusher\\": "src/"
  1518. }
  1519. },
  1520. "notification-url": "https://packagist.org/downloads/",
  1521. "license": [
  1522. "MIT"
  1523. ],
  1524. "description": "Library for interacting with the Pusher REST API",
  1525. "keywords": [
  1526. "events",
  1527. "messaging",
  1528. "php-pusher-server",
  1529. "publish",
  1530. "push",
  1531. "pusher",
  1532. "real time",
  1533. "real-time",
  1534. "realtime",
  1535. "rest",
  1536. "trigger"
  1537. ],
  1538. "time": "2019-12-03T13:29:13+00:00"
  1539. },
  1540. {
  1541. "name": "ralouphie/getallheaders",
  1542. "version": "3.0.3",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://github.com/ralouphie/getallheaders.git",
  1546. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  1551. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  1552. "shasum": ""
  1553. },
  1554. "require": {
  1555. "php": ">=5.6"
  1556. },
  1557. "require-dev": {
  1558. "php-coveralls/php-coveralls": "^2.1",
  1559. "phpunit/phpunit": "^5 || ^6.5"
  1560. },
  1561. "type": "library",
  1562. "autoload": {
  1563. "files": [
  1564. "src/getallheaders.php"
  1565. ]
  1566. },
  1567. "notification-url": "https://packagist.org/downloads/",
  1568. "license": [
  1569. "MIT"
  1570. ],
  1571. "authors": [
  1572. {
  1573. "name": "Ralph Khattar",
  1574. "email": "ralph.khattar@gmail.com"
  1575. }
  1576. ],
  1577. "description": "A polyfill for getallheaders.",
  1578. "time": "2019-03-08T08:55:37+00:00"
  1579. },
  1580. {
  1581. "name": "rmccue/requests",
  1582. "version": "v1.7.0",
  1583. "source": {
  1584. "type": "git",
  1585. "url": "https://github.com/rmccue/Requests.git",
  1586. "reference": "87932f52ffad70504d93f04f15690cf16a089546"
  1587. },
  1588. "dist": {
  1589. "type": "zip",
  1590. "url": "https://api.github.com/repos/rmccue/Requests/zipball/87932f52ffad70504d93f04f15690cf16a089546",
  1591. "reference": "87932f52ffad70504d93f04f15690cf16a089546",
  1592. "shasum": ""
  1593. },
  1594. "require": {
  1595. "php": ">=5.2"
  1596. },
  1597. "require-dev": {
  1598. "requests/test-server": "dev-master"
  1599. },
  1600. "type": "library",
  1601. "autoload": {
  1602. "psr-0": {
  1603. "Requests": "library/"
  1604. }
  1605. },
  1606. "notification-url": "https://packagist.org/downloads/",
  1607. "license": [
  1608. "ISC"
  1609. ],
  1610. "authors": [
  1611. {
  1612. "name": "Ryan McCue",
  1613. "homepage": "http://ryanmccue.info"
  1614. }
  1615. ],
  1616. "description": "A HTTP library written in PHP, for human beings.",
  1617. "homepage": "http://github.com/rmccue/Requests",
  1618. "keywords": [
  1619. "curl",
  1620. "fsockopen",
  1621. "http",
  1622. "idna",
  1623. "ipv6",
  1624. "iri",
  1625. "sockets"
  1626. ],
  1627. "time": "2016-10-13T00:11:37+00:00"
  1628. },
  1629. {
  1630. "name": "slim/psr7",
  1631. "version": "1.1.0",
  1632. "source": {
  1633. "type": "git",
  1634. "url": "https://github.com/slimphp/Slim-Psr7.git",
  1635. "reference": "3c76899e707910779f13d7af95fde12310b0a5ae"
  1636. },
  1637. "dist": {
  1638. "type": "zip",
  1639. "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/3c76899e707910779f13d7af95fde12310b0a5ae",
  1640. "reference": "3c76899e707910779f13d7af95fde12310b0a5ae",
  1641. "shasum": ""
  1642. },
  1643. "require": {
  1644. "fig/http-message-util": "^1.1.2",
  1645. "php": "^7.2",
  1646. "psr/http-factory": "^1.0",
  1647. "psr/http-message": "^1.0",
  1648. "ralouphie/getallheaders": "^3"
  1649. },
  1650. "provide": {
  1651. "psr/http-message-implementation": "1.0"
  1652. },
  1653. "require-dev": {
  1654. "adriansuter/php-autoload-override": "^1.0",
  1655. "ext-json": "*",
  1656. "http-interop/http-factory-tests": "^0.6.0",
  1657. "php-http/psr7-integration-tests": "dev-master",
  1658. "phpstan/phpstan": "^0.12",
  1659. "phpunit/phpunit": "^8.5",
  1660. "squizlabs/php_codesniffer": "^3.5"
  1661. },
  1662. "type": "library",
  1663. "autoload": {
  1664. "psr-4": {
  1665. "Slim\\Psr7\\": "src"
  1666. }
  1667. },
  1668. "notification-url": "https://packagist.org/downloads/",
  1669. "license": [
  1670. "MIT"
  1671. ],
  1672. "authors": [
  1673. {
  1674. "name": "Josh Lockhart",
  1675. "email": "hello@joshlockhart.com",
  1676. "homepage": "http://joshlockhart.com"
  1677. },
  1678. {
  1679. "name": "Andrew Smith",
  1680. "email": "a.smith@silentworks.co.uk",
  1681. "homepage": "http://silentworks.co.uk"
  1682. },
  1683. {
  1684. "name": "Rob Allen",
  1685. "email": "rob@akrabat.com",
  1686. "homepage": "http://akrabat.com"
  1687. },
  1688. {
  1689. "name": "Pierre Berube",
  1690. "email": "pierre@lgse.com",
  1691. "homepage": "http://www.lgse.com"
  1692. }
  1693. ],
  1694. "description": "Strict PSR-7 implementation",
  1695. "homepage": "https://www.slimframework.com",
  1696. "keywords": [
  1697. "http",
  1698. "psr-7",
  1699. "psr7"
  1700. ],
  1701. "time": "2020-05-01T14:24:20+00:00"
  1702. },
  1703. {
  1704. "name": "slim/slim",
  1705. "version": "4.0.0",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/slimphp/Slim.git",
  1709. "reference": "2b0ed80b2ab4acfb5e7648797b8202e4d9aea06d"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/slimphp/Slim/zipball/2b0ed80b2ab4acfb5e7648797b8202e4d9aea06d",
  1714. "reference": "2b0ed80b2ab4acfb5e7648797b8202e4d9aea06d",
  1715. "shasum": ""
  1716. },
  1717. "require": {
  1718. "ext-json": "*",
  1719. "nikic/fast-route": "^1.3",
  1720. "php": "^7.1",
  1721. "psr/container": "^1.0",
  1722. "psr/http-factory": "^1.0",
  1723. "psr/http-message": "^1.0",
  1724. "psr/http-server-handler": "^1.0",
  1725. "psr/http-server-middleware": "^1.0"
  1726. },
  1727. "require-dev": {
  1728. "ext-simplexml": "*",
  1729. "guzzlehttp/psr7": "^1.5",
  1730. "http-interop/http-factory-guzzle": "^1.0",
  1731. "nyholm/psr7": "^1.1",
  1732. "nyholm/psr7-server": "^0.3.0",
  1733. "phpspec/prophecy": "^1.8",
  1734. "phpstan/phpstan": "^0.11.5",
  1735. "phpunit/phpunit": "^7.5",
  1736. "slim/http": "^0.7",
  1737. "slim/psr7": "^0.3",
  1738. "squizlabs/php_codesniffer": "^3.4.2",
  1739. "zendframework/zend-diactoros": "^2.1"
  1740. },
  1741. "suggest": {
  1742. "slim/psr7": "Slim PSR-7 implementation. See http://www.slimframework.com/docs/v4/start/installation.html for more information."
  1743. },
  1744. "type": "library",
  1745. "autoload": {
  1746. "psr-4": {
  1747. "Slim\\": "Slim",
  1748. "Slim\\Tests\\": "tests"
  1749. }
  1750. },
  1751. "notification-url": "https://packagist.org/downloads/",
  1752. "license": [
  1753. "MIT"
  1754. ],
  1755. "authors": [
  1756. {
  1757. "name": "Josh Lockhart",
  1758. "email": "hello@joshlockhart.com",
  1759. "homepage": "https://joshlockhart.com"
  1760. },
  1761. {
  1762. "name": "Andrew Smith",
  1763. "email": "a.smith@silentworks.co.uk",
  1764. "homepage": "http://silentworks.co.uk"
  1765. },
  1766. {
  1767. "name": "Rob Allen",
  1768. "email": "rob@akrabat.com",
  1769. "homepage": "http://akrabat.com"
  1770. },
  1771. {
  1772. "name": "Pierre Berube",
  1773. "email": "pierre@lgse.com",
  1774. "homepage": "http://www.lgse.com"
  1775. },
  1776. {
  1777. "name": "Gabriel Manricks",
  1778. "email": "gmanricks@me.com",
  1779. "homepage": "http://gabrielmanricks.com"
  1780. }
  1781. ],
  1782. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  1783. "homepage": "https://slimframework.com",
  1784. "keywords": [
  1785. "api",
  1786. "framework",
  1787. "micro",
  1788. "router"
  1789. ],
  1790. "time": "2019-08-01T16:11:29+00:00"
  1791. },
  1792. {
  1793. "name": "symfony/deprecation-contracts",
  1794. "version": "v2.1.3",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/symfony/deprecation-contracts.git",
  1798. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  1803. "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14",
  1804. "shasum": ""
  1805. },
  1806. "require": {
  1807. "php": ">=7.1"
  1808. },
  1809. "type": "library",
  1810. "extra": {
  1811. "branch-alias": {
  1812. "dev-master": "2.1-dev"
  1813. },
  1814. "thanks": {
  1815. "name": "symfony/contracts",
  1816. "url": "https://github.com/symfony/contracts"
  1817. }
  1818. },
  1819. "autoload": {
  1820. "files": [
  1821. "function.php"
  1822. ]
  1823. },
  1824. "notification-url": "https://packagist.org/downloads/",
  1825. "license": [
  1826. "MIT"
  1827. ],
  1828. "authors": [
  1829. {
  1830. "name": "Nicolas Grekas",
  1831. "email": "p@tchwork.com"
  1832. },
  1833. {
  1834. "name": "Symfony Community",
  1835. "homepage": "https://symfony.com/contributors"
  1836. }
  1837. ],
  1838. "description": "A generic function and convention to trigger deprecation notices",
  1839. "homepage": "https://symfony.com",
  1840. "time": "2020-06-06T08:49:21+00:00"
  1841. },
  1842. {
  1843. "name": "symfony/finder",
  1844. "version": "v5.1.3",
  1845. "source": {
  1846. "type": "git",
  1847. "url": "https://github.com/symfony/finder.git",
  1848. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187"
  1849. },
  1850. "dist": {
  1851. "type": "zip",
  1852. "url": "https://api.github.com/repos/symfony/finder/zipball/4298870062bfc667cb78d2b379be4bf5dec5f187",
  1853. "reference": "4298870062bfc667cb78d2b379be4bf5dec5f187",
  1854. "shasum": ""
  1855. },
  1856. "require": {
  1857. "php": ">=7.2.5"
  1858. },
  1859. "type": "library",
  1860. "extra": {
  1861. "branch-alias": {
  1862. "dev-master": "5.1-dev"
  1863. }
  1864. },
  1865. "autoload": {
  1866. "psr-4": {
  1867. "Symfony\\Component\\Finder\\": ""
  1868. },
  1869. "exclude-from-classmap": [
  1870. "/Tests/"
  1871. ]
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "MIT"
  1876. ],
  1877. "authors": [
  1878. {
  1879. "name": "Fabien Potencier",
  1880. "email": "fabien@symfony.com"
  1881. },
  1882. {
  1883. "name": "Symfony Community",
  1884. "homepage": "https://symfony.com/contributors"
  1885. }
  1886. ],
  1887. "description": "Symfony Finder Component",
  1888. "homepage": "https://symfony.com",
  1889. "time": "2020-05-20T17:43:50+00:00"
  1890. },
  1891. {
  1892. "name": "symfony/polyfill-ctype",
  1893. "version": "v1.18.0",
  1894. "source": {
  1895. "type": "git",
  1896. "url": "https://github.com/symfony/polyfill-ctype.git",
  1897. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
  1898. },
  1899. "dist": {
  1900. "type": "zip",
  1901. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
  1902. "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
  1903. "shasum": ""
  1904. },
  1905. "require": {
  1906. "php": ">=5.3.3"
  1907. },
  1908. "suggest": {
  1909. "ext-ctype": "For best performance"
  1910. },
  1911. "type": "library",
  1912. "extra": {
  1913. "branch-alias": {
  1914. "dev-master": "1.18-dev"
  1915. },
  1916. "thanks": {
  1917. "name": "symfony/polyfill",
  1918. "url": "https://github.com/symfony/polyfill"
  1919. }
  1920. },
  1921. "autoload": {
  1922. "psr-4": {
  1923. "Symfony\\Polyfill\\Ctype\\": ""
  1924. },
  1925. "files": [
  1926. "bootstrap.php"
  1927. ]
  1928. },
  1929. "notification-url": "https://packagist.org/downloads/",
  1930. "license": [
  1931. "MIT"
  1932. ],
  1933. "authors": [
  1934. {
  1935. "name": "Gert de Pagter",
  1936. "email": "BackEndTea@gmail.com"
  1937. },
  1938. {
  1939. "name": "Symfony Community",
  1940. "homepage": "https://symfony.com/contributors"
  1941. }
  1942. ],
  1943. "description": "Symfony polyfill for ctype functions",
  1944. "homepage": "https://symfony.com",
  1945. "keywords": [
  1946. "compatibility",
  1947. "ctype",
  1948. "polyfill",
  1949. "portable"
  1950. ],
  1951. "time": "2020-07-14T12:35:20+00:00"
  1952. },
  1953. {
  1954. "name": "symfony/polyfill-mbstring",
  1955. "version": "v1.14.0",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/symfony/polyfill-mbstring.git",
  1959. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2",
  1964. "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2",
  1965. "shasum": ""
  1966. },
  1967. "require": {
  1968. "php": ">=5.3.3"
  1969. },
  1970. "suggest": {
  1971. "ext-mbstring": "For best performance"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "branch-alias": {
  1976. "dev-master": "1.14-dev"
  1977. }
  1978. },
  1979. "autoload": {
  1980. "psr-4": {
  1981. "Symfony\\Polyfill\\Mbstring\\": ""
  1982. },
  1983. "files": [
  1984. "bootstrap.php"
  1985. ]
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "authors": [
  1992. {
  1993. "name": "Nicolas Grekas",
  1994. "email": "p@tchwork.com"
  1995. },
  1996. {
  1997. "name": "Symfony Community",
  1998. "homepage": "https://symfony.com/contributors"
  1999. }
  2000. ],
  2001. "description": "Symfony polyfill for the Mbstring extension",
  2002. "homepage": "https://symfony.com",
  2003. "keywords": [
  2004. "compatibility",
  2005. "mbstring",
  2006. "polyfill",
  2007. "portable",
  2008. "shim"
  2009. ],
  2010. "time": "2020-01-13T11:15:53+00:00"
  2011. },
  2012. {
  2013. "name": "symfony/polyfill-php56",
  2014. "version": "v1.9.0",
  2015. "source": {
  2016. "type": "git",
  2017. "url": "https://github.com/symfony/polyfill-php56.git",
  2018. "reference": "7b4fc009172cc0196535b0328bd1226284a28000"
  2019. },
  2020. "dist": {
  2021. "type": "zip",
  2022. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/7b4fc009172cc0196535b0328bd1226284a28000",
  2023. "reference": "7b4fc009172cc0196535b0328bd1226284a28000",
  2024. "shasum": ""
  2025. },
  2026. "require": {
  2027. "php": ">=5.3.3",
  2028. "symfony/polyfill-util": "~1.0"
  2029. },
  2030. "type": "library",
  2031. "extra": {
  2032. "branch-alias": {
  2033. "dev-master": "1.9-dev"
  2034. }
  2035. },
  2036. "autoload": {
  2037. "psr-4": {
  2038. "Symfony\\Polyfill\\Php56\\": ""
  2039. },
  2040. "files": [
  2041. "bootstrap.php"
  2042. ]
  2043. },
  2044. "notification-url": "https://packagist.org/downloads/",
  2045. "license": [
  2046. "MIT"
  2047. ],
  2048. "authors": [
  2049. {
  2050. "name": "Nicolas Grekas",
  2051. "email": "p@tchwork.com"
  2052. },
  2053. {
  2054. "name": "Symfony Community",
  2055. "homepage": "https://symfony.com/contributors"
  2056. }
  2057. ],
  2058. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  2059. "homepage": "https://symfony.com",
  2060. "keywords": [
  2061. "compatibility",
  2062. "polyfill",
  2063. "portable",
  2064. "shim"
  2065. ],
  2066. "time": "2018-08-06T14:22:27+00:00"
  2067. },
  2068. {
  2069. "name": "symfony/polyfill-php72",
  2070. "version": "v1.10.0",
  2071. "source": {
  2072. "type": "git",
  2073. "url": "https://github.com/symfony/polyfill-php72.git",
  2074. "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631"
  2075. },
  2076. "dist": {
  2077. "type": "zip",
  2078. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
  2079. "reference": "9050816e2ca34a8e916c3a0ae8b9c2fccf68b631",
  2080. "shasum": ""
  2081. },
  2082. "require": {
  2083. "php": ">=5.3.3"
  2084. },
  2085. "type": "library",
  2086. "extra": {
  2087. "branch-alias": {
  2088. "dev-master": "1.9-dev"
  2089. }
  2090. },
  2091. "autoload": {
  2092. "psr-4": {
  2093. "Symfony\\Polyfill\\Php72\\": ""
  2094. },
  2095. "files": [
  2096. "bootstrap.php"
  2097. ]
  2098. },
  2099. "notification-url": "https://packagist.org/downloads/",
  2100. "license": [
  2101. "MIT"
  2102. ],
  2103. "authors": [
  2104. {
  2105. "name": "Nicolas Grekas",
  2106. "email": "p@tchwork.com"
  2107. },
  2108. {
  2109. "name": "Symfony Community",
  2110. "homepage": "https://symfony.com/contributors"
  2111. }
  2112. ],
  2113. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2114. "homepage": "https://symfony.com",
  2115. "keywords": [
  2116. "compatibility",
  2117. "polyfill",
  2118. "portable",
  2119. "shim"
  2120. ],
  2121. "time": "2018-09-21T13:07:52+00:00"
  2122. },
  2123. {
  2124. "name": "symfony/polyfill-util",
  2125. "version": "v1.9.0",
  2126. "source": {
  2127. "type": "git",
  2128. "url": "https://github.com/symfony/polyfill-util.git",
  2129. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581"
  2130. },
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  2134. "reference": "8e15d04ba3440984d23e7964b2ee1d25c8de1581",
  2135. "shasum": ""
  2136. },
  2137. "require": {
  2138. "php": ">=5.3.3"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "1.9-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "psr-4": {
  2148. "Symfony\\Polyfill\\Util\\": ""
  2149. }
  2150. },
  2151. "notification-url": "https://packagist.org/downloads/",
  2152. "license": [
  2153. "MIT"
  2154. ],
  2155. "authors": [
  2156. {
  2157. "name": "Nicolas Grekas",
  2158. "email": "p@tchwork.com"
  2159. },
  2160. {
  2161. "name": "Symfony Community",
  2162. "homepage": "https://symfony.com/contributors"
  2163. }
  2164. ],
  2165. "description": "Symfony utilities for portability of PHP codes",
  2166. "homepage": "https://symfony.com",
  2167. "keywords": [
  2168. "compat",
  2169. "compatibility",
  2170. "polyfill",
  2171. "shim"
  2172. ],
  2173. "time": "2018-08-06T14:22:27+00:00"
  2174. },
  2175. {
  2176. "name": "symfony/var-dumper",
  2177. "version": "v4.2.3",
  2178. "source": {
  2179. "type": "git",
  2180. "url": "https://github.com/symfony/var-dumper.git",
  2181. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17"
  2182. },
  2183. "dist": {
  2184. "type": "zip",
  2185. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/223bda89f9be41cf7033eeaf11bc61a280489c17",
  2186. "reference": "223bda89f9be41cf7033eeaf11bc61a280489c17",
  2187. "shasum": ""
  2188. },
  2189. "require": {
  2190. "php": "^7.1.3",
  2191. "symfony/polyfill-mbstring": "~1.0",
  2192. "symfony/polyfill-php72": "~1.5"
  2193. },
  2194. "conflict": {
  2195. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  2196. "symfony/console": "<3.4"
  2197. },
  2198. "require-dev": {
  2199. "ext-iconv": "*",
  2200. "symfony/console": "~3.4|~4.0",
  2201. "symfony/process": "~3.4|~4.0",
  2202. "twig/twig": "~1.34|~2.4"
  2203. },
  2204. "suggest": {
  2205. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  2206. "ext-intl": "To show region name in time zone dump",
  2207. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  2208. },
  2209. "bin": [
  2210. "Resources/bin/var-dump-server"
  2211. ],
  2212. "type": "library",
  2213. "extra": {
  2214. "branch-alias": {
  2215. "dev-master": "4.2-dev"
  2216. }
  2217. },
  2218. "autoload": {
  2219. "files": [
  2220. "Resources/functions/dump.php"
  2221. ],
  2222. "psr-4": {
  2223. "Symfony\\Component\\VarDumper\\": ""
  2224. },
  2225. "exclude-from-classmap": [
  2226. "/Tests/"
  2227. ]
  2228. },
  2229. "notification-url": "https://packagist.org/downloads/",
  2230. "license": [
  2231. "MIT"
  2232. ],
  2233. "authors": [
  2234. {
  2235. "name": "Nicolas Grekas",
  2236. "email": "p@tchwork.com"
  2237. },
  2238. {
  2239. "name": "Symfony Community",
  2240. "homepage": "https://symfony.com/contributors"
  2241. }
  2242. ],
  2243. "description": "Symfony mechanism for exploring and dumping PHP variables",
  2244. "homepage": "https://symfony.com",
  2245. "keywords": [
  2246. "debug",
  2247. "dump"
  2248. ],
  2249. "time": "2019-01-30T11:44:30+00:00"
  2250. },
  2251. {
  2252. "name": "symfony/yaml",
  2253. "version": "v5.1.3",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/symfony/yaml.git",
  2257. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://api.github.com/repos/symfony/yaml/zipball/ea342353a3ef4f453809acc4ebc55382231d4d23",
  2262. "reference": "ea342353a3ef4f453809acc4ebc55382231d4d23",
  2263. "shasum": ""
  2264. },
  2265. "require": {
  2266. "php": ">=7.2.5",
  2267. "symfony/deprecation-contracts": "^2.1",
  2268. "symfony/polyfill-ctype": "~1.8"
  2269. },
  2270. "conflict": {
  2271. "symfony/console": "<4.4"
  2272. },
  2273. "require-dev": {
  2274. "symfony/console": "^4.4|^5.0"
  2275. },
  2276. "suggest": {
  2277. "symfony/console": "For validating YAML files using the lint command"
  2278. },
  2279. "bin": [
  2280. "Resources/bin/yaml-lint"
  2281. ],
  2282. "type": "library",
  2283. "extra": {
  2284. "branch-alias": {
  2285. "dev-master": "5.1-dev"
  2286. }
  2287. },
  2288. "autoload": {
  2289. "psr-4": {
  2290. "Symfony\\Component\\Yaml\\": ""
  2291. },
  2292. "exclude-from-classmap": [
  2293. "/Tests/"
  2294. ]
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "MIT"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "Fabien Potencier",
  2303. "email": "fabien@symfony.com"
  2304. },
  2305. {
  2306. "name": "Symfony Community",
  2307. "homepage": "https://symfony.com/contributors"
  2308. }
  2309. ],
  2310. "description": "Symfony Yaml Component",
  2311. "homepage": "https://symfony.com",
  2312. "time": "2020-05-20T17:43:50+00:00"
  2313. },
  2314. {
  2315. "name": "tightenco/collect",
  2316. "version": "v5.7.27",
  2317. "source": {
  2318. "type": "git",
  2319. "url": "https://github.com/tightenco/collect.git",
  2320. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00"
  2321. },
  2322. "dist": {
  2323. "type": "zip",
  2324. "url": "https://api.github.com/repos/tightenco/collect/zipball/c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  2325. "reference": "c1a36a2a8a0aa731c1acdcd83f57724ffe630d00",
  2326. "shasum": ""
  2327. },
  2328. "require": {
  2329. "php": "^7.1.3",
  2330. "symfony/var-dumper": ">=3.4 <5"
  2331. },
  2332. "require-dev": {
  2333. "mockery/mockery": "^1.0",
  2334. "nesbot/carbon": "^1.26.3",
  2335. "phpunit/phpunit": "^7.0"
  2336. },
  2337. "type": "library",
  2338. "autoload": {
  2339. "files": [
  2340. "src/Collect/Support/helpers.php",
  2341. "src/Collect/Support/alias.php"
  2342. ],
  2343. "psr-4": {
  2344. "Tightenco\\Collect\\": "src/Collect"
  2345. }
  2346. },
  2347. "notification-url": "https://packagist.org/downloads/",
  2348. "license": [
  2349. "MIT"
  2350. ],
  2351. "authors": [
  2352. {
  2353. "name": "Taylor Otwell",
  2354. "email": "taylorotwell@gmail.com"
  2355. }
  2356. ],
  2357. "description": "Collect - Illuminate Collections as a separate package.",
  2358. "keywords": [
  2359. "collection",
  2360. "laravel"
  2361. ],
  2362. "time": "2019-02-13T19:40:13+00:00"
  2363. },
  2364. {
  2365. "name": "zircote/swagger-php",
  2366. "version": "3.0.4",
  2367. "source": {
  2368. "type": "git",
  2369. "url": "https://github.com/zircote/swagger-php.git",
  2370. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b"
  2371. },
  2372. "dist": {
  2373. "type": "zip",
  2374. "url": "https://api.github.com/repos/zircote/swagger-php/zipball/fa47d62c22c95272625624fbf8109fa46ffac43b",
  2375. "reference": "fa47d62c22c95272625624fbf8109fa46ffac43b",
  2376. "shasum": ""
  2377. },
  2378. "require": {
  2379. "doctrine/annotations": "*",
  2380. "php": ">=7.2",
  2381. "symfony/finder": ">=2.2",
  2382. "symfony/yaml": ">=3.3"
  2383. },
  2384. "require-dev": {
  2385. "phpunit/phpunit": ">=8",
  2386. "squizlabs/php_codesniffer": ">=3.3",
  2387. "zendframework/zend-form": "<2.8"
  2388. },
  2389. "bin": [
  2390. "bin/openapi"
  2391. ],
  2392. "type": "library",
  2393. "autoload": {
  2394. "psr-4": {
  2395. "OpenApi\\": "src"
  2396. },
  2397. "files": [
  2398. "src/functions.php"
  2399. ]
  2400. },
  2401. "notification-url": "https://packagist.org/downloads/",
  2402. "license": [
  2403. "Apache-2.0"
  2404. ],
  2405. "authors": [
  2406. {
  2407. "name": "Robert Allen",
  2408. "email": "zircote@gmail.com",
  2409. "homepage": "http://www.zircote.com"
  2410. },
  2411. {
  2412. "name": "Bob Fanger",
  2413. "email": "bfanger@gmail.com",
  2414. "homepage": "http://bfanger.nl"
  2415. }
  2416. ],
  2417. "description": "swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations",
  2418. "homepage": "https://github.com/zircote/swagger-php/",
  2419. "keywords": [
  2420. "api",
  2421. "json",
  2422. "rest",
  2423. "service discovery"
  2424. ],
  2425. "time": "2020-05-07T09:10:49+00:00"
  2426. }
  2427. ],
  2428. "packages-dev": [],
  2429. "aliases": [],
  2430. "minimum-stability": "stable",
  2431. "stability-flags": [],
  2432. "prefer-stable": false,
  2433. "prefer-lowest": false,
  2434. "platform": [],
  2435. "platform-dev": []
  2436. }