[Solved] Symfony\Component\Debug\Exception\FatalThrowableError Parse error: syntax error, unexpected ‘->’ (T_OBJECT_OPERATOR) [duplicate]

Symfony\Component\Debug\Exception\FatalThrowableError Parse error: syntax error, unexpected ‘->’ (T_OBJECT_OPERATOR) [duplicate] solved Symfony\Component\Debug\Exception\FatalThrowableError Parse error: syntax error, unexpected ‘->’ (T_OBJECT_OPERATOR) [duplicate]

[Solved] Keeping composer.json updated and maintained

You have one central, very wrong sentence: e.g. what do i do when my composer.json says “require”: { “php”: “>=5.3.3”, “symfony/symfony”: “~2.4”, but downloads php 7.4 and symfony 4.3 instead? is this ok? Or do i ineed need to maintain my composer.json file? Wrong, Composer will not install any version of PHP, but will warn … Read more

[Solved] Installation of package.json

This is the same type of issue as #17. It’s not related to Minishlink/web-push. One of your dependancies is stuck in the past with paragonie/random_compat v1.1.5. You should check which one and ask the owner to update the composer.json. To fix this temporarily, in your composer.json, on your dev machine put: “paragonie/random_compat”: “dev-master as 1.1.5”, … Read more

[Solved] laravel/framework 9.x-dev requires php ^8.0 -> your PHP version (7.4.13) does not satisfy that requirement [closed]

Composer is telling you what is wrong. It wants PHP8 and you offer php7.4, so it doesnt install. From the comments it also says that laravel 9 is in development. As you’re stuggling with this, I dont recommend using that version and go one back, using 8. What I recommend doing (and what I’ve been … Read more