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

Laravel 7 #73

Closed dhcmega closed 4 years ago

dhcmega commented 4 years ago

Hi! how can I install it with laravel 7? thanks!

eduardoarandah commented 4 years ago

I took a quick look at the code and it looks fine for laravel 7, nothing mentioned in upgrade guide

https://laravel.com/docs/7.x/upgrade

I made the pull request:

https://github.com/kodeine/laravel-meta/pull/74

meanwhile, you can use my fork like this:

    "repositories": [
      {
        "type": "vcs",
        "url" : "https://github.com/eduardoarandah/laravel-meta"
      }
    ],
    "require": {
         ....
        "kodeine/laravel-meta": "dev-master",
        "laravel/framework": "^7.0",
         ....
    },

dont forget to check the upgrade guide, you'll likely will also have to change this file in your codebase:

https://github.com/laravel/laravel/blob/master/app/Exceptions/Handler.php

dhcmega commented 4 years ago

@eduardoarandah Thank you very much for responding and helping!!

kodeine commented 4 years ago

its merged! thanks guys.