When trying to create a new laravel project, The following error appears on the CLI:
Could not open input file: artisan
Script php artisan clear-compiled handling the post-install-cmd event returned with an error
I am using the latest version of XAMPP v3.2.1 with PHP 5.5.15 and with mcrypt enabled (made sure of that by issuing the command php -m). And I am running windows 8.1


php artisan ...was called, it was some sort of option for thephpcommand. Turns out it refers to a file namedartisanwhich is in the root of your laravel project. It should really be calledartisan.phpsince it is an actual php script but the extension is omitted for brevity purposes. - Flame