Files
orderPRO/composer.json

20 lines
400 B
JSON

{
"name": "orderpro/app",
"description": "orderPRO - lightweight order management panel",
"type": "project",
"license": "proprietary",
"require": {
"php": "^8.4"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"scripts": {
"serve": "php -S localhost:8000 -t public public/index.php",
"migrate": "php bin/migrate.php",
"cron": "php bin/cron.php"
}
}