Laravel API 프로젝트 4단계 - 프로젝트 생성

root@94aba7ed99b7:/var/www/html# laravel new laravel-api

   _                               _
  | |                             | |
  | |     __ _ _ __ __ ___   _____| |
  | |    / _` | '__/ _` \ \ / / _ \ |
  | |___| (_| | | | (_| |\ V /  __/ |
  |______\__,_|_|  \__,_| \_/ \___|_|


 ┌ Would you like to install a starter kit? ────────────────────┐
 │ › ● No starter kit                                           │
 │   ○ Laravel Breeze                                           │
 │   ○ Laravel Jetstream                                        │
 └──────────────────────────────────────────────────────────────┘
 
 ┌ Which testing framework do you prefer? ──────────────────────┐
 │ › ● Pest                                                     │
 │   ○ PHPUnit                                                  │
 └──────────────────────────────────────────────────────────────┘
 
 ┌ Would you like to initialize a Git repository? ──────────────┐
 │ ○ Yes / ● No                                                 │
 └──────────────────────────────────────────────────────────────┘
 
Creating a "laravel/laravel" project at "./laravel-api"
Installing laravel/laravel (v10.3.2)
    Failed to download laravel/laravel from dist: The zip extension and unzip/7z commands are both missing, skipping.
The php.ini used by your command-line PHP is: /usr/local/etc/php/conf.d/docker-php-ext-sodium.ini
    Now trying to download from source
  - Syncing laravel/laravel (v10.3.2) into cache
  - Installing laravel/laravel (v10.3.2): Cloning 1a4d1dc81f from cache
Created project in /var/www/html/laravel-api
> @php -r "file_exists('.env') || copy('.env.example', '.env');"
Loading composer repositories with package information
Updating dependencies
Lock file operations: 111 installs, 0 updates, 0 removals
  - Locking brick/math (0.11.0)
  - Locking carbonphp/carbon-doctrine-types (2.1.0)
61 package suggestions were added by new dependencies, use `composer suggest` to see details.
Generating optimized autoload files
Warning: Ambiguous class resolution, "League\Flysystem\Local\FallbackMimeTypeDetector" was found in both "/var/www/html/laravel-api/vendor/league/flysystem-local/FallbackMimeTypeDetector.php" and "/var/www/html/laravel-api/vendor/league/flysystem/src/Local/FallbackMimeTypeDetector.php", the first will be used.
Warning: Ambiguous class resolution, "League\Flysystem\Local\LocalFilesystemAdapter" was found in both "/var/www/html/laravel-api/vendor/league/flysystem-local/LocalFilesystemAdapter.php" and "/var/www/html/laravel-api/vendor/league/flysystem/src/Local/LocalFilesystemAdapter.php", the first will be used.
Warning: Ambiguous class resolution, "League\Flysystem\Local\LocalFilesystemAdapterTest" was found in both "/var/www/html/laravel-api/vendor/league/flysystem-local/LocalFilesystemAdapterTest.php" and "/var/www/html/laravel-api/vendor/league/flysystem/src/Local/LocalFilesystemAdapterTest.php", the first will be used.
Warning: Ambiguous class resolution, "App\Providers\AppServiceProvider" was found in both "/var/www/html/laravel-api/app/Providers/AppServiceProvider.php" and "/var/www/html/laravel-api/vendor/laravel/pint/app/Providers/AppServiceProvider.php", the first will be used.
> Illuminate\Foundation\ComposerScripts::postAutoloadDump
> @php artisan package:discover --ansi

   INFO  Discovering packages.

  laravel/sail ................................................................................................................................ DONE
  laravel/sanctum ............................................................................................................................. DONE
  laravel/tinker .............................................................................................................................. DONE
  nesbot/carbon ............................................................................................................................... DONE
  nunomaduro/collision ........................................................................................................................ DONE
  nunomaduro/termwind ......................................................................................................................... DONE
  spatie/laravel-ignition ..................................................................................................................... DONE

83 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
> @php artisan vendor:publish --tag=laravel-assets --ansi --force

   INFO  No publishable resources for tag [laravel-assets].

No security vulnerability advisories found.
> @php artisan key:generate --ansi

   INFO  Application key set successfully.

 ┌ Which database will your application use? ───────────────────┐
 │ › ○ MySQL                                                    │
 │   ● MariaDB                                                  │
 │   ○ PostgreSQL                                               │
 │   ○ SQLite                                                   │
 │   ○ SQL Server                                               │
 └──────────────────────────────────────────────────────────────┘
89 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
> @php artisan vendor:publish --tag=laravel-assets --ansi --force

   INFO  No publishable resources for tag [laravel-assets].

No security vulnerability advisories found.

   INFO  Preparing tests directory.

  phpunit.xml ................................................................................................................. File already exists.
  tests/Pest.php ..................................................................................................................... File created.
  tests/TestCase.php .......................................................................................................... File already exists.
  tests/Unit/ExampleTest.php .................................................................................................. File already exists.
  tests/Feature/ExampleTest.php ............................................................................................... File already exists.

   INFO  Application ready in [laravel-api]. You can start your local development using:

➜ cd laravel-api
➜ php artisan serve

  New to Laravel? Check out our bootcamp and documentation. Build something amazing!