forked from bobthecow/psysh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 957 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "fulore/psysh",
"description": "An interactive shell for modern PHP.",
"type": "library",
"keywords": ["console", "interactive", "shell", "repl"],
"homepage": "https://github.com/fulore/psysh",
"license": "MIT",
"authors": [
{
"name": "Justin Hileman",
"email": "justin@justinhileman.info",
"homepage": "http://justinhileman.com"
}
],
"require": {
"php": ">=5.3.0",
"symfony/console": "~2.1",
"nikic/php-parser": "~0.9.3"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"symfony/finder": "~2.1"
},
"suggest": {
"ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)"
},
"autoload": {
"psr-0": {
"Psy\\": "src/"
}
},
"bin": ["bin/psysh"],
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
}
}
}