Files
Brain/tekdek-employees-api/composer.json

29 lines
696 B
JSON

{
"name": "tekdek/employees-api",
"description": "TekDek Employees API — backend for the team page",
"type": "project",
"license": "proprietary",
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"TekDek\\Employees\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TekDek\\Employees\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --configuration phpunit.xml",
"test:coverage": "phpunit --configuration phpunit.xml --coverage-html coverage"
}
}