Go to file
2026-04-06 19:36:42 +00:00
bin refactor for the new tree and add todos 2026-02-08 17:41:26 -03:00
public Add status endpoint 2026-04-06 19:36:42 +00:00
src refactor for the new tree and add todos 2026-02-08 17:41:26 -03:00
test refactor for the new tree and add todos 2026-02-08 17:41:26 -03:00
.gitignore first commit 2026-01-29 18:28:39 -03:00
composer.json first commit 2026-01-29 18:28:39 -03:00
package.json first commit 2026-01-29 18:28:39 -03:00
readme.md refactor tree 2026-02-06 21:20:48 -03:00

├── bin │   ├── email-cli │   └── support-cli ├── data │   └── data.db ├── logs ├── public │   └── index.php ├── readme.md ├── src │   ├── Middleware │   ├ |── HmacAuthMiddleware.php │   │   └── RateLImitMiddleware.php │   ├── Controllers │   │   └── RequestController.php │   ├── Model │   │   └── ModelFactory.php │   │   └── LeadModel.php │   ├── Libs │   │   └── ResponseLib.php │   │   ├── ExecLib.php │   │   ├── GuardLib.php │   │   ├── RequestLib.php │   │   └── SanitizationLib.php │   ├── migration │   │   └── schema.sql │   └── Schema │   └── LeadSchema.php └── test ├── hmac_curl.sh └── request.sh