kodeine / laravel-meta

Fluent Meta Data for Eloquent Models, as if it is a property on your model
MIT License
400 stars 90 forks source link

Unable to add to Laravel 8 #77

Closed robeygo closed 4 years ago

robeygo commented 4 years ago

Hi guys,

Can this be added to a Laravel 8 app?

JonathanMurre commented 4 years ago

78 is merged, but it does not have a new version yet, so composer won't pick it up. Hope this small think will be resolved quickly.

siamak2 commented 4 years ago

@JonathanMurre I had the same problem when laravel 6 released: https://github.com/kodeine/laravel-meta/issues/65 my temporary solution was to add this to composer.json :

"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/kodeine/laravel-meta"
    }
]

then run composer update kodeine/laravel-meta and composer will now load the package from github instead of packagist. once the new version of laravel-meta released remove it from composer.json

kodeine commented 4 years ago

@siamak2, i've released the new version with those merges.