mirror of
https://github.com/itflow-org/itflow
synced 2026-04-18 02:25:40 +00:00
10 lines
233 B
PHP
10 lines
233 B
PHP
<?php
|
|
|
|
// see: https://docs.stripe.com/sdks/versioning?lang=php
|
|
|
|
if (\PHP_VERSION_ID < 70200) {
|
|
throw new RuntimeException(
|
|
'The Stripe SDK requires PHP 7.2.0 or later. You are running PHP ' . \PHP_VERSION . '.'
|
|
);
|
|
}
|