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.0KB

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