Няма описание

composer.json 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.3.0",
  17. "symfony/console": "~2.3.10|~2.4.2|~2.5",
  18. "nikic/php-parser": "~1.0",
  19. "dnoegel/php-xdg-base-dir": "0.1",
  20. "jakub-onderka/php-console-highlighter": "0.3.*"
  21. },
  22. "require-dev": {
  23. "phpunit/phpunit": "~3.7|~4.0",
  24. "symfony/finder": "~2.1",
  25. "squizlabs/php_codesniffer": "~2.0",
  26. "fabpot/php-cs-fixer": "~1.3"
  27. },
  28. "suggest": {
  29. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  30. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  31. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  32. "ext-pdo-sqlite": "The doc command requires SQLite to work."
  33. },
  34. "autoload": {
  35. "files": ["src/Psy/functions.php"],
  36. "psr-0": {
  37. "Psy\\": "src/"
  38. }
  39. },
  40. "bin": ["bin/psysh"],
  41. "extra": {
  42. "branch-alias": {
  43. "dev-develop": "0.3.x-dev"
  44. }
  45. }
  46. }