sebdesign / laravel-state-machine

Winzou State Machine service provider for Laravel
MIT License
327 stars 57 forks source link

Dependency for winzou/state-machine with wrong version number #39

Closed rmezhuev closed 4 years ago

rmezhuev commented 4 years ago

In composer.json

    "require": {
        "php": "^7.2.5",
        "illuminate/support": "^7.0",
        "winzou/state-machine": "^0.4.0"
    },

Produces error during installation

 composer require sebdesign/laravel-state-machine

sebdesign/laravel-state-machine v3.0.0 requires winzou/state-machine ^0.4.0 -> no matching package found.

sebdesign commented 4 years ago

Please add the following section to your composer.json:

"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/sebdesign/state-machine"
    }
]
rmezhuev commented 4 years ago

Thank you, for some reason I skipped this part in readme instructions