-
Notifications
You must be signed in to change notification settings - Fork 794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
connect-api-examples/connect-examples/v2/php_payment requires php 8.0.0 (should be 7.1) #323
Comments
% for pkg in apimatic/jsonmapper apimatic/unirest-php brick/math phpoption/phpoption ramsey/collection ramsey/uuid square/square symfony/polyfill-ctype symfony/polyfill-php81 vlucas/phpdotenv Looks like ramsey/uuid is the culprit % composer show ramsey/uuid support autoload requires requires (dev) suggests replaces |
if (!(PHP_VERSION_ID >= 80000)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 8.0.0". You are running ' . PHP_VERSION . '.';
}
Huh? README says 7.1 or greater
If I run php_payment on php 8.0.8 all is good. PHP 7.4.21 results in the php version check failing.
The text was updated successfully, but these errors were encountered: