llelundberg
llelundberg
Similar problem. When I run php quickstart.php in cli i get: `PHP Warning: count(): Parameter must be an array or an object that implements Countable in C:\xampp\htdocs\familjekalender\vendor\guzzlehttp\guzzle\src\Handler\CurlFactory.php on line 67...
Thank you, that solved the problem. To clarify for others: The composer.json contained: **"require": { "google/apiclient": "2.0" }** Changed to: **"require": { "google/apiclient": "^2.0" }** The problem was caused by...
`composer require "google/apiclient:^2.0"` would work in windows command line. Would it break anything in bash or other consoles?