We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for all the work on this package, its a real time saver!
I have found an issue with the composer.json, it says it works with lower versions of the illuminate/support package, however it doesn't.
If you look here: https://github.com/tanmuhittin/laravel-google-translate/blob/master/src/TranslationFileTranslators/PhpArrayFileTranslator.php#L59
Str::of()->dirname()
This functionality was added to illuminate/support/Str in version 7.
So, we need to update the composer.json to say we only support version 7. Currently, it shows support from version 5.5 to 7:
laravel-google-translate/composer.json
Line 7 in 2b52183
The text was updated successfully, but these errors were encountered:
I have gotten round this by patching that line in my local package, just switching:
Str::of($file)->dirname()
For
dirname($file)
If you wanted to still include support for older versions.
Sorry, something went wrong.
compatibality fix thanks to #34
a1565d5
No branches or pull requests
Thanks for all the work on this package, its a real time saver!
I have found an issue with the composer.json, it says it works with lower versions of the illuminate/support package, however it doesn't.
If you look here:
https://github.com/tanmuhittin/laravel-google-translate/blob/master/src/TranslationFileTranslators/PhpArrayFileTranslator.php#L59
This functionality was added to illuminate/support/Str in version 7.
So, we need to update the composer.json to say we only support version 7. Currently, it shows support from version 5.5 to 7:
laravel-google-translate/composer.json
Line 7 in 2b52183
The text was updated successfully, but these errors were encountered: