-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 880 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 880 Bytes
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
{
"name": "gries/mcontrol",
"description": "PHP Library to control a running Minecraft-Server",
"license": "MIT",
"keywords": ["Minecraft", "Admin"],
"type": "library",
"authors": [
{
"name": "Christoph Rosse",
"email": "christoph@rosse.at"
}
],
"require": {
"monolog/monolog": "~1.6",
"doctrine/orm": "~2.4",
"gries/php-source-query-class": "~0.0.2",
"symfony/dom-crawler": "~2.4"
},
"require-dev": {
"phpspec/phpspec": "2.0.*@dev"
},
"suggest": {
"ext-imagick": "To use the ImageToStructureConverter the Imagick extension for php is required."
},
"autoload": {
"psr-0": {"gries\\MControl": "src/"}
},
"minimum-stability": "dev",
"config": {
"bin-dir": "bin"
}
}