laracasts / Commander

Easily leverage commands and domain events in your Laravel projects.
https://laracasts.com/series/commands-and-domain-events
MIT License
279 stars 68 forks source link

Laravel 5 #38

Closed MartijnThomas closed 10 years ago

MartijnThomas commented 10 years ago

Jeff,

When can we expect an update for the commander package that can be used in laravel 5? Currently the dependencies on the older versions (Support and Filesystem) prevent Commander from being included in laravel 5 projects.

I know that laravel 5 is currently in heavy development but trying laravel 5 out with this package would be awsome.

A temporary fix could be just updating the dependencies and stability for laravel 5:

{
    "name": "laracasts/commander",
    "description": "Commands and domain events in Laravel",
    "license": "MIT",
    "authors": [
        {
            "name": "Jeffrey Way",
            "email": "jeffrey@laracasts.com"
        }
    ],
    "require": {
        "php": ">=5.4.0",
        "illuminate/support": "~5.0",
        "illuminate/filesystem": "~5.0",
        "mustache/mustache": "~2.6"
    },
    "require-dev": {
        "phpspec/phpspec": "~2.0.0",
        "codeception/codeception": "~2.0.0"
    },
    "autoload": {
        "psr-0": {
            "Laracasts\\Commander": "src/"
        }
    },
    "minimum-stability": "dev"
}
clevonnoel commented 10 years ago

I am waiting on this myself.

JeffreyWay commented 10 years ago

Done. Get version 1.4 or higher.