You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered a conflict with composer when trying to run the package on the latest Laravel release (v9.49.0) or the soon-to-be-released version 10. Specifically, pmatseykanets/artisan-beans v4.2.0 requires illuminate/support ~6.0|~7.0|~8.0, but illuminate/support[v8.0.0, ..., v8.11.2] requires PHP ^7.3, which is not satisfied by the PHP version (8.0.27) I'm using.
Upon reviewing the package's source code, I found that its requirements are set to "php": "^7.2|^8.0" and "illuminate/support": "~6.0|~7.0|~8.0". According to Laravel's upgrade documentation, the package's code should be compatible with versions 9 and 10.
To address the issue, I plan to add versions 9 and 10 to the composer requirements and test if everything is still working as expected.
The text was updated successfully, but these errors were encountered:
I encountered a conflict with composer when trying to run the package on the latest Laravel release (v9.49.0) or the soon-to-be-released version 10. Specifically, pmatseykanets/artisan-beans v4.2.0 requires illuminate/support ~6.0|~7.0|~8.0, but illuminate/support[v8.0.0, ..., v8.11.2] requires PHP ^7.3, which is not satisfied by the PHP version (8.0.27) I'm using.
Upon reviewing the package's source code, I found that its requirements are set to "php": "^7.2|^8.0" and "illuminate/support": "~6.0|~7.0|~8.0". According to Laravel's upgrade documentation, the package's code should be compatible with versions 9 and 10.
To address the issue, I plan to add versions 9 and 10 to the composer requirements and test if everything is still working as expected.
The text was updated successfully, but these errors were encountered: