Files
orderPRO/composer.json
Jacek Pyziak 22fc330055 feat(11-12-accounting): phases 11-12 complete — milestone v0.3 done
Phase 11: Receipt preview, print & PDF via dompdf.
Phase 12: Accounting section with receipt list, filters, pagination,
selectable checkboxes and XLSX export via PhpSpreadsheet.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 21:00:29 +01:00

32 lines
687 B
JSON

{
"name": "orderpro/app",
"description": "orderPRO - lightweight order management panel",
"type": "project",
"license": "proprietary",
"require": {
"php": "^8.4",
"dompdf/dompdf": "^3.1",
"phpoffice/phpspreadsheet": "^5.5"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"dg/bypass-finals": "^1.9"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"serve": "php -S localhost:8000 -t public public/index.php",
"migrate": "php bin/migrate.php",
"cron": "php bin/cron.php",
"test": "vendor/bin/phpunit -c phpunit.xml --testdox"
}
}