adamwathan / laravel-preset

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do you install this?

naknode opened this issue Β· comments

I'm not extremely new to Laravel (read: I just finish Jeffrey's 100-episode forum series) but I have no idea how to install this. Maybe I'm missing something but I don't see installation instructions...

And before you shout at me, yes I have tried googling and nothing came up.

Sorry if this isn't the right place.

commented

Because this repo isn't on packagist you can't composer require it.
You'll have to add the repo in composer.json:

"require-dev": {
    "adamwathan/laravel-preset" : "dev-master"
},
"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/adamwathan/laravel-preset"
    }
]

Run composer update and then install the preset with php artisan preset nothingworks 🀘

Thank you! I very much appreciate it. πŸ‘‹

Yep @nikje94 nailed it! I should obviously add this to the README πŸ€¦β€β™‚οΈ

hey, is there any reason why you dont put it on packagist?

I was holding off in case I could come up with a cooler name πŸ˜„

I was holding off in case I could come up with a cooler name πŸ˜„

Maybe like nothingworks/breakwind-preset πŸ˜›

Can the php artisan preset nothingworks be added to the "scripts" composer block?