Files
orderPRO/composer.json
Jacek Pyziak fb60b6d5d7 feat(11-receipt-print): phase 11 complete — receipt preview, print & PDF
Add receipt show/print/pdf endpoints with dompdf integration.
Active preview and PDF links in order Documents tab.

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

31 lines
647 B
JSON

{
"name": "orderpro/app",
"description": "orderPRO - lightweight order management panel",
"type": "project",
"license": "proprietary",
"require": {
"php": "^8.4",
"dompdf/dompdf": "^3.1"
},
"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"
}
}