- Refactored AuthService to use UserRepository for user authentication. - Added .env file for environment configuration. - Created migration system with Migrator and ConnectionFactory classes. - Added database migration files for creating users table. - Implemented settings controller for managing database migrations. - Developed user repository for user data handling. - Created users controller for user management interface. - Added frontend standards and migration documentation. - Introduced reusable UI components and jQuery alerts module.
19 lines
368 B
JSON
19 lines
368 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"
|
|
}
|
|
}
|