-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
49 lines (49 loc) · 1.39 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "modxcms/teleport",
"description": "An extensible scripting and packaging toolkit for MODX Revolution",
"license": "MIT",
"authors": [
{
"name": "Jason Coward",
"email": "jason@opengeek.com",
"homepage": "http://www.opengeek.com/",
"role": "Developer"
}
],
"require": {
"symfony/finder": "^2.2.0",
"symfony/filesystem": "^2.4.0",
"react/event-loop": "^0.4",
"react/http": "^0.4",
"react/promise": "^2.1",
"react/child-process": "^0.4"
},
"require-dev": {
"symfony/process": "^2.1"
},
"suggest": {
"aws/aws-sdk-php": "Require this with ^2.0 version constraint to enable registration of an S3 stream wrapper.",
"ext-libevent": "It is critical to have this or ext-ev if you plan to use the server or endpoint listener.",
"ext-ev": "It is critical to have this or ext-libevent if you plan to use the server or endpoint listener."
},
"bin": [
"bin/compile",
"bin/compile.php",
"bin/endpoint",
"bin/endpoint.php",
"bin/server",
"bin/server.php",
"bin/teleport",
"bin/teleport.php"
],
"autoload": {
"psr-0": {
"Teleport": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}