Laravel5 illuminate composer messagebag package

102 views Asked by At

I'd like to install the illuminate/support/messagebag but can't seem to find a composer address to do this.

Is this still available for Laravel5 and if so, what composer details do I need to use?

1

There are 1 answers

3
zeratulmdq On

If you need a general purpouse message package, you can try this one here, if you just need a Flash message bag, you can try this one

EDIT: As I said in the comments, I thought you needed another one. MessageBag is there, wasn't removed. I've done a fresh installation and I got it working. Check my composer.json, there's nothing rare in there, just laravel:

"require": {
    "php": ">=5.5.9",
    "laravel/framework": "5.1.*"
},
"require-dev": {
    "fzaninotto/faker": "~1.4",
    "mockery/mockery": "0.9.*",
    "phpunit/phpunit": "~4.0",
    "phpspec/phpspec": "~2.1"
},

Maybe there's a problem with your installation, but it should be there.