Ένα σταθερό framework βασισμένο σε PHP 8.4, MySQL, και jQuery με:
- MVC Architecture
- Modular System με auto-scanning
- Factory Patterns
- RESTful API support
- Multiple input/output formats (JSON, XML, FORM)
project/
├── public/ # Entry point
├── app/
│ └── core/ # Framework core
│ ├── classes/ # Base classes
│ ├── handlers/# URL, Session, Cookie handlers
│ ├── libraries/ # Encrypt, Parser, Sanitizer
│ └── ...
│ └── modules/ # User modules
├── config/ # Configuration & .env
├── tests/ # Unit & Feature tests
└── storage/logs/ # Application logs
- Copy
.env.exampleto.env - Edit
.envwith your database credentials - Run database installer
- Start development server
php -S localhost:8000 -t public/Ανάπτυξη: Σταδιακή δημιουργία framework core + modules