- Add SendSmsMessage class for encapsulating SMS message data. - Create KavehNegarProvider and RanginehProvider classes implementing SmsProviderInterface for sending SMS. - Implement SmsLogRepository and SmsTemplateRepository for managing SMS logs and templates. - Develop SendSmsHandler for handling SMS sending messages. - Create SmsService to manage SMS dispatching and logging. - Add UserProfileController for managing user profiles with CRUD operations. - Implement UserProfile entity and repository for user profile data management. - Update symfony.lock and bootstrap.php for project dependencies and environment setup.
65 lines
1.6 KiB
Bash
65 lines
1.6 KiB
Bash
###> symfony/framework-bundle ###
|
|
APP_ENV=dev
|
|
APP_SECRET=clinic_pro_secret_change_in_prod
|
|
APP_SHARE_DIR=var/share
|
|
###< symfony/framework-bundle ###
|
|
|
|
###> symfony/routing ###
|
|
DEFAULT_URI=https://clinic-pro.ddev.site
|
|
###< symfony/routing ###
|
|
|
|
###> doctrine/doctrine-bundle ###
|
|
DATABASE_URL="mysql://db:db@db:3306/db?serverVersion=8.0&charset=utf8mb4"
|
|
###< doctrine/doctrine-bundle ###
|
|
|
|
###> lexik/jwt-authentication-bundle ###
|
|
JWT_SECRET_KEY=%kernel.project_dir%/config/jwt/private.pem
|
|
JWT_PUBLIC_KEY=%kernel.project_dir%/config/jwt/public.pem
|
|
JWT_PASSPHRASE=5778180ab122fbb3253d84f4137dbc1672109bab9ad051d3d40fb1c2be3e242d
|
|
###< lexik/jwt-authentication-bundle ###
|
|
|
|
###> nelmio/cors-bundle ###
|
|
CORS_ALLOW_ORIGIN='^https?://(clinic-pro\.ddev\.site|localhost|127\.0\.0\.1)(:[0-9]+)?$'
|
|
###< nelmio/cors-bundle ###
|
|
|
|
###> symfony/messenger ###
|
|
MESSENGER_TRANSPORT_DSN=redis://redis:6379/messages
|
|
###< symfony/messenger ###
|
|
|
|
###> Redis ###
|
|
REDIS_URL=redis://redis:6379
|
|
###< Redis ###
|
|
|
|
###> Auth ###
|
|
REFRESH_TOKEN_TTL=2592000
|
|
OTP_TTL=1200
|
|
###< Auth ###
|
|
|
|
###> SMS ###
|
|
KAVENEGAR_API_KEY=change_me
|
|
RANGINEH_API_KEY=change_me
|
|
SMS_PROVIDER=kavenegar
|
|
###< SMS ###
|
|
|
|
###> File Upload ###
|
|
MAX_FILE_SIZE_BYTES=5242880
|
|
UPLOAD_DIR=var/uploads
|
|
###< File Upload ###
|
|
|
|
###> Payment ###
|
|
ALLOWED_FRONTEND_HOSTS=clinic-pro.ddev.site,localhost
|
|
###< Payment ###
|
|
|
|
# Payment
|
|
MELLAT_TERMINAL_ID=00000000
|
|
MELLAT_USERNAME=testuser
|
|
MELLAT_PASSWORD=testpass
|
|
SEP_TERMINAL_ID=00000000
|
|
APP_BASE_URL=https://clinic-pro.ddev.site
|
|
|
|
# SMS
|
|
KAVENEGAR_API_KEY=test_key
|
|
KAVENEGAR_SENDER=1000596446
|
|
RANGINEH_API_KEY=test_key
|
|
RANGINEH_SENDER=3000
|