27 lines
638 B
JSON
27 lines
638 B
JSON
{
|
|
"name": "nat-as/questionnaire-server",
|
|
"description": "Questionnaire API (MySQL or legacy encrypted SQLite)",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=8.2",
|
|
"ext-json": "*",
|
|
"ext-openssl": "*",
|
|
"ext-pdo": "*",
|
|
"ext-pdo_mysql": "*",
|
|
"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"
|
|
}
|
|
}
|