Since I upgraded Laravel to 5.2, Scrutinizer throws an error saying that it couldn't be analyzed:
My composer.json
is:
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "5.2.*",
I already tried to exclude the vendor folder, but this didn't help:
filter:
paths:
- 'app/*'
excluded_paths:
- 'app/views/*'
- 'app/config/*'
- 'app/database/*'
- 'vendor/*'
Why does this happen and how can I tell Scrutinizer to ignore this package?