Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

install Slim3 beta with composer?

how can I install Slim3 beta with composer? I tried --dev with no luck The official docs say nothing and composer search revealed nothing.

like image 673
sivann Avatar asked Feb 09 '23 13:02

sivann


1 Answers

Run the following command from from commandline.

$ composer require slim/slim:~3.0@dev

Another option is to create a composer.json with the following content.

{
    "require": {
        "slim/slim": "~3.0@dev"
    }
}

After creating the file in the same folder run

$ composer install
like image 94
Mika Tuupola Avatar answered Feb 12 '23 03:02

Mika Tuupola