- Converted tasks.md to focus on quality assurance fixes
- 13 executable tasks across 4 phases
- Parallel optimization saves 55 minutes
- Agent specialization for each task type
- Production readiness validation included
- CHECKLIST.md with real-time progress tracking
Ready for Master Orchestrator automation 🎛️
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"name": "perfex/desk-moloni",
|
|
"description": "Desk-Moloni v3.0 - Bidirectional sync between Perfex CRM and Moloni ERP",
|
|
"version": "3.0.1",
|
|
"type": "perfex-module",
|
|
"require": {
|
|
"php": "^8.3"
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "^2.1",
|
|
"phpunit/phpunit": "^12.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"DeskMoloni\\": "libraries/",
|
|
"DeskMoloni\\Models\\": "models/",
|
|
"DeskMoloni\\Controllers\\": "controllers/",
|
|
"DeskMoloni\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit --configuration phpunit.xml",
|
|
"test:unit": "phpunit --testsuite unit",
|
|
"test:integration": "phpunit --testsuite integration",
|
|
"test:feature": "phpunit --testsuite feature",
|
|
"test:contract": "phpunit --testsuite contract",
|
|
"test-coverage": "phpunit --configuration phpunit.xml --coverage-html coverage-html --coverage-text --coverage-xml coverage-xml"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true,
|
|
"classmap-authoritative": true,
|
|
"apcu-autoloader": true
|
|
}
|
|
}
|