- Implemented OrdersRepository for handling order data with pagination, filtering, and sorting capabilities. - Added methods for retrieving order status options, quick stats, and detailed order information. - Created OrderStatusRepository for managing order status groups and statuses, including CRUD operations and sorting. - Introduced a bootstrap file for test environment setup and autoloading.
29 lines
586 B
JSON
29 lines
586 B
JSON
{
|
|
"name": "orderpro/app",
|
|
"description": "orderPRO - lightweight order management panel",
|
|
"type": "project",
|
|
"license": "proprietary",
|
|
"require": {
|
|
"php": "^8.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^11.5"
|
|
},
|
|
"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"
|
|
}
|
|
}
|