Deploy: TekDek Employees Portal (Daedalus, Talos, Icarus) - Live at web.tekdek.dev

This commit is contained in:
ParzivalTD
2026-04-11 22:56:05 -04:00
parent ec154881ae
commit 3fc4e146d4
17 changed files with 1448 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{
"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"
}
}