Implement multi-tenancy support with OAuth2 authentication for tenant admins, Stripe integration for event purchases and credits ledger, new Filament resources for event purchases, updated API routes and middleware for tenant isolation and token guarding, added factories/seeders/migrations for new models (Tenant, EventPurchase, OAuth entities, etc.), enhanced tests, and documentation updates. Removed outdated DemoAchievementsSeeder.
This commit is contained in:
38
manifest.json
Normal file
38
manifest.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"app_name": "Fotospiel Event Credits",
|
||||
"version": "1.0.0",
|
||||
"account": true,
|
||||
"client_id": "ca_your_stripe_connect_client_id",
|
||||
"secret": "sk_your_stripe_connect_secret",
|
||||
"hosting": "remote",
|
||||
"hosting_url": "https://yourdomain.com",
|
||||
"status_page_url": "https://yourdomain.com/stripe/status",
|
||||
"logo_data_url": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==",
|
||||
"ui_extension": {
|
||||
"enabled": false
|
||||
},
|
||||
"connect_settings": {
|
||||
"requested_capabilities": [
|
||||
"transfers"
|
||||
],
|
||||
"requested_scopes": [
|
||||
"read_write_payments"
|
||||
]
|
||||
},
|
||||
"webhooks": [
|
||||
{
|
||||
"url": "https://yourdomain.com/webhooks/stripe",
|
||||
"events": [
|
||||
"checkout.session.completed",
|
||||
"account.updated",
|
||||
"payment_intent.succeeded"
|
||||
],
|
||||
"enabled_events": [
|
||||
"checkout.session.completed"
|
||||
]
|
||||
}
|
||||
],
|
||||
"tango": {
|
||||
"enabled": false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user