-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
36 lines (36 loc) · 901 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
{
"name": "meritoo/limesurvey-api-client",
"description": "Client of LimeSurvey API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Meritoo",
"email": "github@meritoo.pl"
}
],
"require": {
"php": ">=5.6",
"fguillot/json-rpc": "^1.2",
"meritoo/common-library": "^0.1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.9",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"pdepend/pdepend": "^2.5",
"phploc/phploc": "^4.0",
"friendsofphp/php-cs-fixer": "^2.6"
},
"autoload": {
"psr-4": {
"Meritoo\\LimeSurvey\\ApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Meritoo\\LimeSurvey\\Test\\ApiClient\\": "tests/"
}
}
}