First, initial commit

This commit is contained in:
Meritoo
2017-09-19 20:46:11 +02:00
commit 08fd482dd9
42 changed files with 8956 additions and 0 deletions

32
composer.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "meritoo/limesurvey-api-client",
"description": "Client of LimeSurvey API",
"type": "library",
"license": "MIT",
"version": "0.0.1",
"authors": [
{
"name": "Meritoo",
"email": "github@meritoo.pl"
}
],
"require": {
"fguillot/json-rpc": "^1.2",
"meritoo/common-library": "~0.0.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.4.3",
"squizlabs/php_codesniffer": "^2.8",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"pdepend/pdepend": "^2.5",
"phploc/phploc": "^4.0",
"friendsofphp/php-cs-fixer": "^2.5"
},
"autoload": {
"psr-4": {
"Meritoo\\LimeSurvey\\": "src/Meritoo/LimeSurvey/",
"Meritoo\\LimeSurvey\\Test\\": "tests/Meritoo/LimeSurvey/Test/"
}
}
}