{ "name": "laravel/laravel", "description": "The Laravel Framework.", "keywords": ["framework", "laravel"], "license": "MIT", "require": { "laravel/framework": "4.1.*" }, "autoload": { "classmap": [ "app/commands", "app/controllers", "app/models", "app/database/migrations", "app/database/seeds", "app/tests/TestCase.php" ] }, "scripts": { "post-install-cmd": [ "php artisan clear-compiled", "php artisan optimize" ], "post-update-cmd": [ "php artisan clear-compiled", "php artisan optimize" ], "post-create-project-cmd": [ "php artisan key:generate" ] }, "config": { "preferred-install": "dist" }, "minimum-stability": "stable" }
I'am executing this in my windows console:
php composer.json create-project test2
I just get the above string and nothing happens? how to properly run the composer.json to create a project?
You should put the composer. json file in your website's root directory. Then, in your terminal, go to the folder where you put the file (e.g. cd C:\xampp\htdocs\mywebsite ) and then type composer install . That should be it.
You must download composer:
curl -sS https://getcomposer.org/installer | php
or
php -r "readfile('https://getcomposer.org/installer');" | php
and next you should run if you have composer.json file:
composer.phar install
or if you want create new project
composer.phar create-project
use composer update
in the same folder that has composer.json
, when the composer command (eg. test with composer --version
) already exists in your terminal.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With