BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "biotorrents/gazelle",
  3. "description": "Web framework for private BitTorrent trackers using Ocelot",
  4. "type": "project",
  5. "license": "Unlicense",
  6. "authors": [
  7. {
  8. "name": "What.cd"
  9. },
  10. {
  11. "name": "Oppaitime"
  12. },
  13. {
  14. "name": "BioTorrents.de"
  15. }
  16. ],
  17. "autoload": {
  18. "classmap": [
  19. "classes/"
  20. ],
  21. "files": [
  22. "classes/autoload.php"
  23. ]
  24. },
  25. "config": {
  26. "sort-packages": true
  27. },
  28. "require": {
  29. "php": ">=7.4",
  30. "ext-apcu": "*",
  31. "ext-curl": "*",
  32. "ext-json": "*",
  33. "ext-mbstring": "*",
  34. "ext-memcache": "*",
  35. "ext-mysqli": "*",
  36. "biotorrents/biophp": "dev-master",
  37. "erusev/parsedown": "^1.8.0-beta-7",
  38. "erusev/parsedown-extra": "^0.8.1",
  39. "j7mbo/twitter-api-php": "^1.0.6",
  40. "orpheusnet/bencode-torrent": "^1.1.1",
  41. "robmorgan/phinx": "^0.12.7",
  42. "twig/twig": "^3.3.2"
  43. },
  44. "require-dev": {
  45. "d11wtq/boris": "^1.0.10",
  46. "phpstan/phpstan": "^0.12.92",
  47. "phpunit/phpunit": "^9.5.6",
  48. "squizlabs/php_codesniffer": "^3.6.0"
  49. },
  50. "scripts": {
  51. "phpstan": "phpstan analyse",
  52. "test": "phpunit"
  53. }
  54. }