Blame view

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