Yaffs site version 1.1
[yaffs-website] / vendor / psy / psysh / composer.json
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.9",
17         "symfony/console": "~2.3.10|^2.4.2|~3.0",
18         "symfony/var-dumper": "~2.7|~3.0",
19         "nikic/php-parser": "~1.3|~2.0|~3.0",
20         "dnoegel/php-xdg-base-dir": "0.1",
21         "jakub-onderka/php-console-highlighter": "0.3.*"
22     },
23     "require-dev": {
24         "phpunit/phpunit": "~4.4|~5.0",
25         "symfony/finder": "~2.1|~3.0",
26         "friendsofphp/php-cs-fixer": "~1.11",
27         "hoa/console": "~3.16|~1.14"
28     },
29     "suggest": {
30         "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
31         "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
32         "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
33         "ext-pdo-sqlite": "The doc command requires SQLite to work.",
34         "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
35     },
36     "autoload": {
37         "files": ["src/Psy/functions.php"],
38         "psr-4": {
39             "Psy\\": "src/Psy/"
40         }
41     },
42     "autoload-dev": {
43         "psr-4": {
44             "Psy\\Test\\": "test/Psy/Test/"
45         }
46     },
47     "bin": ["bin/psysh"],
48     "extra": {
49         "branch-alias": {
50             "dev-develop": "0.8.x-dev"
51         }
52     }
53 }