Run a composer update. This fixed the issue for another user
http://laravel.io/forum/02-02-2015-getting-symfony-deprecation-message?page=1#reply-20506
I had the same problem (using the latest dev-version).
Change the following in composer.json:
"require": {
"laravel/framework": "~5.0"
},
to:
"require": {
"laravel/framework": "5.0.*@dev"
},
then run both:
composer update
php artisan optimize
The 5.* branch is not released officially, so probably shouldn't be used in production yet. Taylor will release L5 in just a few hours, probably also fixing this issue :)
Thanks a lot, that fixed the problem diden't even need php artisan optimize.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community