Files
nat-as-server/composer.json
Tom Hempel 810ed24792
Some checks failed
PHPUnit / test (push) Has been cancelled
migration to mysql
2026-07-10 09:57:44 +02:00

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"
}
}