Start
symfony server:start
src/
├── Application/ # Application services / Сервисы приложения
│ └── Service/
├── Domain/ # Domain entities and logic / Доменные сущности и логика
│ ├── Entity/
│ ├── Service/
│ └── ValueObject/
├── Infrastructure/ # Infrastructure layer / Инфраструктурный слой
│
└── Controller/
POST /api/loans/apply
Example
{
"firstName": "John",
"lastName": "Doe",
"age": 30,
"state": "CA",
"ssn": "123-45-6789",
"ficoScore": 700,
"email": "[email protected]",
"phone": "+1234567890",
"monthlyIncome": 5000,
"loanName": "Personal Loan",
"termMonths": 12,
"interestRate": 5.5,
"amount": 10000
}
php bin/phpunit