33 lines
722 B
JSON
33 lines
722 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",
|
|
"phpmailer/phpmailer": "^7.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|