No Description

composer.json 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "psy/psysh",
  3. "description": "An interactive shell for modern PHP.",
  4. "type": "library",
  5. "keywords": ["console", "interactive", "shell", "repl"],
  6. "homepage": "http://psysh.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Justin Hileman",
  11. "email": "justin@justinhileman.info",
  12. "homepage": "http://justinhileman.com"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.4.0",
  17. "ext-json": "*",
  18. "ext-tokenizer": "*",
  19. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  20. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0",
  21. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  22. "dnoegel/php-xdg-base-dir": "0.1.*",
  23. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0",
  27. "hoa/console": "~2.15|~3.16",
  28. "bamarni/composer-bin-plugin": "^1.2"
  29. },
  30. "suggest": {
  31. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  32. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  33. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  34. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  35. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  36. },
  37. "autoload": {
  38. "files": ["src/functions.php"],
  39. "psr-4": {
  40. "Psy\\": "src/"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "Psy\\Test\\": "test/"
  46. }
  47. },
  48. "bin": ["bin/psysh"],
  49. "extra": {
  50. "branch-alias": {
  51. "dev-develop": "0.9.x-dev"
  52. }
  53. }
  54. }