-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 934 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "eventum/cli",
"description": "Eventum CLI Working over Eventum XMLRPC",
"type": "project",
"license": "GPL-2.0",
"authors": [
{
"name": "Elan Ruusamäe",
"email": "glen@delfi.ee",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://eventum.github.io/composer/"
}
],
"config": {
"platform": {
"php": "5.3.29"
},
"sort-packages": true
},
"require": {
"php": "^5.3.9 || ^7.0",
"ext-fileinfo": "*",
"ext-json": "*",
"bit3/php-callback-filter-iterator-polyfill": "~1.2",
"dnoegel/php-xdg-base-dir": "~0.1",
"eventum/rpc": "^4.2",
"kherge/amend": "^3.0.0",
"symfony/console": "^2.7 || ^3.0 || ^4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36",
"symfony/var-dumper": "^2.8"
},
"autoload": {
"psr-4" : {
"Eventum\\Console\\" : "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Eventum\\Console\\Test\\" : "tests/"
}
}
}