Is there way to create PHP Laravel without composer? On documention examples used below:
composer create-project laravel/laravel example-app
Is there way to create PHP Laravel without composer? On documention examples used below:
composer create-project laravel/laravel example-app
No it’s not possible
Why don’t you want to use Composer?
On installation shows this error and I cannot install. Any ideas how to solve?
The PHP exe file you specified did not run correctly: C:\xampp\php\php.exe The php.ini used by your command-line PHP is: C:\xampp\php\php.ini A setting in your php.ini could be causing the problem: Either the 'extension_dir' value is incorrect or a dll does not exist. Program Output: PHP Warning: PHP Startup: Unable to load dynamic library 'zip.so' (tried: C:\xampp\php\ext\zip.so (The specified module could not be found), C:\xampp\php\ext\php_zip.so.dll (The specified module could not be found))
zip.so
is for Linux, not Windows. Fix your php.ini.Unless you are running a very old version of PHP (< 7.2.0), the line in php.ini should be just
extension=zip
, withoutphp_
prefix or any file extension suffix.Show 1 more comment