3cc82e45f0d0376aa1d413e4404f6cf572df7289
Some checks are pending
Telegram Mini App Shop Builder / Compute version metadata (push) Waiting to run
Telegram Mini App Shop Builder / Run Frontend tests (push) Waiting to run
Telegram Mini App Shop Builder / Run Backend tests (push) Waiting to run
Telegram Mini App Shop Builder / Run PHP_CodeSniffer (push) Waiting to run
Telegram Mini App Shop Builder / Build module. (push) Blocked by required conditions
Telegram Mini App Shop Builder / release (push) Blocked by required conditions
Demo code for interviewing
This repository contains a simplified version of one of my personal commercial pet project prepared for technical interviews. Because of that:
- All sensitive data has been renamed and/or deleted. In some places this may break autoloading or other integrations, but the code structure remains intact and suitable for review.
- The Git history has been squashed into a single commit for the same reason.
- The maximum supported PHP version is 7.4. This requirement comes from the external CMS that this project integrates with. Therefore, some modern PHP 8+ features are not used here, although I have experience working with the latest PHP versions.
What the application does
The application integrates with an e-commerce CMS and provides a Telegram Mini App that exposes the product catalog to the end users.
The application uses the external e-commerce database (MySQL) and adds some tables (see backend/src/database/migrations).
Directory structure
The project has monorepo includes frontend (vuejs) and backend (php).
Backend structure main points:
backend - native php code with my framework.
└── src
├── app - the main application code
├── bastion - the admin panel application code
├── cli.php - cli entrypoint
├── composer.json
├── composer.lock
├── configs
├── console - CLI application
├── database
├── framework - self-written php framework
├── phpstan.neon
├── phpunit.xml
├── stubs
└── tests
Description
Languages
PHP
46.4%
Vue
26.6%
JavaScript
25.3%
Shell
0.7%
CSS
0.4%
Other
0.5%