26 lines
596 B
JSON
26 lines
596 B
JSON
{
|
|
"name": "nat-as/ressourcenbarometer-server",
|
|
"description": "Encrypted SQLite questionnaire API",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"ext-json": "*",
|
|
"ext-openssl": "*",
|
|
"ext-pdo": "*",
|
|
"ext-pdo_sqlite": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^11.5"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"test:coverage": "phpunit --coverage-text",
|
|
"test:ci": "php tests/check-coverage.php 40"
|
|
}
|
|
}
|