Closed
Description
[Symfony\Component\Debug\Exception\FatalThrowableError]
Cannot use object of type Illuminate\Console\Scheduling\Schedule as array
After in composer update does not wok .
php artisan command does not work after installing this package.
I removed this package from composer.json . Then it was normal like before.
my composer.json file
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"laravelcollective/html": "5.1.*",
"zizaco/entrust": "dev-laravel-5",
"ellipsesynergie/api-response": "^0.12.1",
"oriceon/oauth-5-laravel": "dev-master",
"guzzlehttp/guzzle": "4.0",
"nesbot/carbon": "~1.18",
"paypal/rest-api-sdk-php": "*",
"webup/laravel-sendinblue": "^1.0",
"pion/laravel-chunk-upload": "^0.3.1"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"laracasts/generators": "^1.1",
"barryvdh/laravel-ide-helper": "^2.1"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan ide-helper:generate",
"php artisan optimize"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}