Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Connect your Craft content to [Stripe](https://stripe.com)’s powerful billing

## Requirements

This plugin requires Craft CMS 5.6.0 or later, and a Stripe account with access to developer features.
This plugin requires Craft CMS 5.6.0+ or 6.0.0-alpha.1+ with the `craftcms/yii2-adapter` package, and a Stripe account with access to developer features.

> [!TIP]
> Transitioning from Craft Commerce? Check out the dedicated [migration](#migrating-from-commerce) section.
Expand Down Expand Up @@ -39,7 +39,7 @@ ddev craft plugin/install stripe
The Stripe plugin builds its configuration from three sources:

- [Project config](https://craftcms.com/docs/5.x/system/project-config.html) — Managed via the **Stripe** → **Settings** screen in Craft’s control panel.
- **A plugin config file** — Add a `config/stripe.php` file to your project and return a map of options keyed with properties from the `craft\stripe\models\Settings` class.
- **A plugin config file** — Add a `config/stripe.php` file (or `config/craft/stripe.php` if you’re using Craft CMS v6) to your project and return a map of options keyed with properties from the `craft\stripe\models\Settings` class.
- **Environment variables** — Some options can be set directly as environment variables.

### API Keys
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prefer-stable": true,
"require": {
"php": "^8.2",
"craftcms/cms": "^5.6.0",
"craftcms/cms": "^5.6.0|^6.0.0-alpha.1",
"stripe/stripe-php": "^13|^14"
},
"require-dev": {
Expand Down
Loading