-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 863 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
{
"name": "tomwalder/php-map-reduce",
"type": "library",
"description": "MapReduce Library for PHP",
"keywords": ["MapReduce", "php"],
"homepage": "https://github.com/tomwalder/php-map-reduce",
"license": "Apache-2.0",
"authors": [
{
"name": "Tom Walder",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"league/pipeline": "dev-master",
"tomwalder/php-gds": "dev-master",
"docnet/php-japi": "2.0.x-dev",
"rdlowrey/auryn": "0.15.2",
"monolog/monolog": "1.13.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"classmap": [
"src/"
],
"psr-4": {"Mapr\\": "src/Mapr/"}
},
"include-path": ["src/"]
}