laravel instal error with composer -
i'm trying instal laravel following sure have mcrypt installed
me:~/public_html$ composer create-project laravel/laravel laravel-test installing laravel/laravel (v5.0.22) - installing laravel/laravel (v5.0.22) loading cache created project in laravel-test loading composer repositories package information installing dependencies (including require-dev) lock file requirements not resolved installable set of packages. problem 1 - installation request laravel/framework v5.0.16 -> satisfiable laravel/framework[v5.0.16]. - laravel/framework v5.0.16 requires ext-mcrypt * -> requested php extension mcrypt missing system.
sudo apt-get install php5-mcrypt create auxiliary symlink , enable module:
cd /etc/php5/mods-available ln -sf ../conf.d/mcrypt.ini . php5enmod mcrypt finally, reload apache2 configuration:
service apache2 reload try first , run above code laravel needs mcrypt php extension installed.
Comments
Post a Comment