yoesoff

install symfony dengan composer

Jan 10th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.03 KB | None | 0 0
  1. ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs  
  2. ╰─➤  composer create-project symfony/skeleton my_symfony                                                                                                             1
  3. Installing symfony/skeleton (v4.2.1.1)
  4.   - Installing symfony/skeleton (v4.2.1.1): Downloading (100%)        
  5. Created project in my_symfony
  6. Loading composer repositories with package information
  7. Installing dependencies (including require-dev) from lock file
  8. Package operations: 22 installs, 0 updates, 0 removals
  9.   - Installing symfony/flex (v1.1.8): Loading from cache
  10.  
  11. Prefetching 12 packages 🎶
  12.   - Downloading (100%)
  13.  
  14.   - Installing psr/cache (1.0.1): Loading from cache
  15.   - Installing psr/container (1.0.0): Loading from cache
  16.   - Installing psr/simple-cache (1.0.1): Loading from cache
  17.   - Installing symfony/polyfill-mbstring (v1.10.0): Loading from cache
  18.   - Installing symfony/contracts (v1.0.2): Loading from cache
  19.   - Installing symfony/console (v4.2.1): Loading from cache
  20.   - Installing symfony/dotenv (v4.2.1): Loading from cache
  21.   - Installing symfony/routing (v4.2.1): Loading from cache
  22.   - Installing symfony/http-foundation (v4.2.1): Loading from cache
  23.   - Installing symfony/event-dispatcher (v4.2.1): Loading from cache
  24.   - Installing psr/log (1.1.0): Loading from cache
  25.   - Installing symfony/debug (v4.2.1): Loading from cache
  26.   - Installing symfony/http-kernel (v4.2.1): Loading from cache
  27.   - Installing symfony/finder (v4.2.1): Loading from cache
  28.   - Installing symfony/filesystem (v4.2.1): Loading from cache
  29.   - Installing symfony/dependency-injection (v4.2.1): Loading from cache
  30.   - Installing symfony/config (v4.2.1): Loading from cache
  31.   - Installing symfony/var-exporter (v4.2.1): Loading from cache
  32.   - Installing symfony/cache (v4.2.1): Loading from cache
  33.   - Installing symfony/framework-bundle (v4.2.1): Loading from cache
  34.   - Installing symfony/yaml (v4.2.1): Loading from cache
  35. Generating autoload files
  36. Symfony operations: 4 recipes (878b40bed0447dc3cb9fc33ba60b3a23)
  37.   - Configuring symfony/flex (>=1.0): From github.com/symfony/recipes:master
  38.   - Configuring symfony/framework-bundle (>=4.2): From github.com/symfony/recipes:master
  39.   - Configuring symfony/console (>=3.3): From github.com/symfony/recipes:master
  40.   - Configuring symfony/routing (>=4.2): From github.com/symfony/recipes:master
  41. Executing script cache:clear [OK]
  42. Executing script assets:install public [OK]
  43.  
  44. Some files may have been created or updated to configure your new packages.
  45. Please review, edit and commit them: these files are yours.
  46.  
  47.              
  48.  What's next?
  49.              
  50.  
  51.  * Run your application:
  52.    1. Change to the project directory
  53.    2. Create your code repository with the git init command
  54.    3. Run composer require server --dev to install the development web server,
  55.       or configure another supported web server https://symfony.com/doc/current/setup/web_server_configuration.html
  56.  
  57.  * Read the documentation at https://symfony.com/doc
  58.  
  59. ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs  
  60. ╰─➤  cd my_symfony              
  61. ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs/my_symfony  
  62. ╰─➤  php -S 127.0.0.1:8000 -t public
  63. PHP 7.2.10-0ubuntu0.18.04.1 Development Server started at Thu Jan 10 16:20:57 2019
  64. Listening on http://127.0.0.1:8000
  65. Document root is /home/yoesoff/Documents/labs/my_symfony/public
  66. Press Ctrl-C to quit.
  67. [Thu Jan 10 16:21:10 2019] 127.0.0.1:43288 [404]: /
  68. [Thu Jan 10 16:21:11 2019] 127.0.0.1:43290 [404]: /favicon.ico - No such file or directory
  69. ^C%                                                                                                                                                                      ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs/my_symfony  
  70. ╰─➤  ls
  71. bin  composer.json  composer.lock  config  public  src  symfony.lock  var  vendor
  72. ╭─yoesoff@yoesoff-ThinkPad-X220 ~/Documents/labs/my_symfony  
  73. ╰─➤  ls
  74. bin  composer.json  composer.lock  config  public  src  symfony.lock  var  vendor
Advertisement
Add Comment
Please, Sign In to add comment