1. Run these commands in terminal's root
>$ php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
>$ php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
Installer verified
>$ sudo php composer-setup.php
>$ php -r "unlink('composer-setup.php');"
2. To verify composer is installed or not
> $ composer
if installed display => Composer version 1.6.5
***
Usage:
command [options] [arguments]
Options:
-h, --help Display this help message
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
-n, --no-interaction Do not ask any interactive question
--profile Display timing and memory usage information
--no-plugins Whether to disable plugins.
-d, --working-dir=WORKING-DIR If specified, use the given directory as working directory.
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Available commands:
about Shows the short information about Composer.
archive Creates an archive of this composer package.
browse Opens the package's repository URL or homepage in your browser.
check-platform-reqs Check that platform requirements are satisfied.
clear-cache Clears composer's internal package cache.
clearcache Clears composer's internal package cache.
config Sets config options.
create-project Creates new project from a package into given directory.
depends Shows which packages cause the given package to be installed.
diagnose Diagnoses the system to identify common errors.
dump-autoload Dumps the autoloader.
dumpautoload Dumps the autoloader.
exec Executes a vendored binary/script.
global Allows running commands in the global composer dir ($COMPOSER_HOME).
help Displays help for a command
home Opens the package's repository URL or homepage in your browser.
info Shows information about packages.
init Creates a basic composer.json file in current directory.
install Installs the project dependencies from the composer.lock file if present, or falls back on the composer.json.
licenses Shows information about licenses of dependencies.
list Lists commands
outdated Shows a list of installed packages that have updates available, including their latest version.
prohibits Shows which packages prevent the given package from being installed.
remove Removes a package from the require or require-dev.
require Adds required packages to your composer.json and installs them.
run-script Runs the scripts defined in composer.json.
search Searches for packages.
self-update Updates composer.phar to the latest version.
selfupdate Updates composer.phar to the latest version.
show Shows information about packages.
status Shows a list of locally modified packages.
suggests Shows package suggestions.
update Upgrades your dependencies to the latest version according to composer.json, and updates the composer.lock file.
upgrade Upgrades your dependencies to the latest version according to composer.json, and updates the composer.lock file.
validate Validates a composer.json and composer.lock.
why Shows which packages cause the given package to be installed.
why-not Shows which packages prevent the given package from being installed.
***
3. Create Directory anywhere in your system and Run below command to install laravel
> composer create-project laravel/laravel --prefer-dist
4. Go to laravel directory and run below command to open project
> php artisan serve
OR
> sudo php artisan serve --host 192.168.1.48 --port 8000
(if want to open in requested port)
5. Open browser with url 192.168.1.48:8000 <-Project Homepage
_______________________________________________________________________________________________________
>ntf-29@NTF-29:~/Desktop$ composer create-project laravel/laravel --prefer-dist
Installing laravel/laravel (v5.5.28)
- Installing laravel/laravel (v5.5.28): Loading from cache
Created project in /home/ntf-29/Desktop/laravel
@php -r "file_exists('.env') || copy('.env.example', '.env');"
Loading composer repositories with package information
Updating dependencies (including require-dev)
< Your requirements could not be resolved to an installable set of packages.
>ntf-29@NTF-29:~/Desktop$ sudo apt-get install php7.0-mbstring
<Creating config file /etc/php/7.0/mods-available/mbstring.ini with new version
Processing triggers for libapache2-mod-php7.0 (7.0.32-4+ubuntu14.04.1+deb.sury.org+1) ...
>ntf-29@NTF-29:~/Desktop$ sudo apt-get install php7.0-xml
<Creating config file /etc/php/7.0/mods-available/xsl.ini with new version
Processing triggers for libapache2-mod-php7.0 (7.0.32-4+ubuntu14.04.1+deb.sury.org+1) ...
>ntf-29@NTF-29:~/Desktop$ cd laravel/
>ntf-29@NTF-29:~/Desktop/laravel$ composer update
<@php artisan package:discover
Discovered Package: fideloper/proxy
Discovered Package: laravel/tinker
Discovered Package: nesbot/carbon
Package manifest generated successfully.>
>ntf-29@NTF-29:~/Desktop/laravel$ php artisan key:generate
>ntf-29@NTF-29:~/Desktop/laravel$ php artisan serve
<
Run port<http://127.0.0.1:8000
_______________________________________________________
>
> Routing
< https://laravel.com/docs/5.7/routing
>
Blade is the simple, yet powerful templating engine provided with Laravel. Unlike other popular PHP templating engines, Blade does not restrict you from using plain PHP code in your views. In fact, all Blade views are compiled into plain PHP code and cached until they are modified, meaning Blade adds essentially zero overhead to your application. Blade view files use the .blade.php file extension and are typically stored in the resources/views directory.
Comments
Post a Comment