![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/Corals/modules/Payment/Stripe/config/ |
<?php return [ 'name' => 'Stripe', 'key' => 'payment_stripe', 'support_subscription' => true, 'support_ecommerce' => true, 'support_marketplace' => true, 'support_online_refund' => true, 'manage_remote_plan' => true, 'require_token_confirm' => true, 'manage_remote_product' => false, 'manage_remote_sku' => false, 'manage_remote_order' => false, 'supports_swap' => true, 'supports_swap_in_grace_period' => true, 'require_invoice_creation' => true, 'require_plan_activation' => false, 'capture_payment_method' => false, 'require_default_payment_set' => false, 'can_update_payment' => true, 'create_remote_customer' => true, 'require_payment_token' => false, 'support_reservation' => true, 'support_connect_account' => true, 'settings' => [ 'live_public_key' => [ 'label' => 'Stripe::labels.settings.live_public_key', 'type' => 'text', 'required' => false, ], 'live_secret_key' => [ 'label' => 'Stripe::labels.settings.live_secret', 'type' => 'text', 'required' => false, ], 'live_webhook_key' => [ 'label' => 'Stripe::labels.settings.live_webhook', 'type' => 'text', 'required' => false, ], 'live_connect_client_id' => [ 'label' => 'Stripe::labels.settings.live_connect_client_id', 'type' => 'text', 'required' => false, ], 'sandbox_mode' => [ 'label' => 'Stripe::labels.settings.sandbox_mode', 'type' => 'boolean' ], 'sandbox_public_key' => [ 'label' => 'Stripe::labels.settings.sandbox_public_key', 'type' => 'text', 'required' => false, ], 'sandbox_secret_key' => [ 'label' => 'Stripe::labels.settings.sandbox_secret', 'type' => 'text', 'required' => false, ], 'sandbox_webhook_key' => [ 'label' => 'Stripe::labels.settings.sandbox_webhook', 'type' => 'text', 'required' => false, ], 'sandbox_connect_client_id' => [ 'label' => 'Stripe::labels.settings.sandbox_connect_client_id', 'type' => 'text', 'required' => false, ], 'connect_enabled' => [ 'label' => 'Stripe::labels.settings.connect_enabled', 'type' => 'boolean' ], ], 'events' => [ 'invoice.created' => \Corals\Modules\Payment\Stripe\Job\HandleInvoiceCreated::class, 'invoice.payment_succeeded' => \Corals\Modules\Payment\Stripe\Job\HandleInvoicePaymentSucceeded::class, 'invoice.payment_failed' => \Corals\Modules\Payment\Stripe\Job\HandleInvoicePaymentFailed::class, 'customer.subscription.deleted' => \Corals\Modules\Payment\Stripe\Job\HandleCustomerSubscriptionDeleted::class, 'customer.subscription.trial_will_end' => \Corals\Modules\Payment\Stripe\Job\HandleCustomerTrialWillEnd::class, ], 'webhook_handler' => \Corals\Modules\Payment\Stripe\Gateway::class, ];