"컴포저 설치된 패키지 목록 조회 composer show"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
3번째 줄: 3번째 줄:
* 설치된 패키지의 이름, 버전, 설명 목록을 표시하는 [[composer 명령어]]
* 설치된 패키지의 이름, 버전, 설명 목록을 표시하는 [[composer 명령어]]


<source lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:/var/www/laravel# composer show
root@zetawiki:/var/www/laravel# composer show
dnoegel/php-xdg-base-dir              0.1    implementation of xdg base directory speci...
dnoegel/php-xdg-base-dir              0.1    implementation of xdg base directory speci...
12번째 줄: 12번째 줄:
vlucas/phpdotenv                      v2.4.0  Loads environment variables from `.env` to...
vlucas/phpdotenv                      v2.4.0  Loads environment variables from `.env` to...
webmozart/assert                      1.2.0  Assertions to validate method input/output...
webmozart/assert                      1.2.0  Assertions to validate method input/output...
</source>
</syntaxhighlight>


==기타==
==기타==
<source lang='console'>
<syntaxhighlight lang='console'>
root@localhost:/var/www/html# composer show | grep illuminate
root@localhost:/var/www/html# composer show | grep illuminate
illuminate/container                  v5.8.35 The Illuminate Container package.
illuminate/container                  v5.8.35 The Illuminate Container package.
23번째 줄: 23번째 줄:
illuminate/support                    v5.8.35 The Illuminate Support package.
illuminate/support                    v5.8.35 The Illuminate Support package.
illuminate/view                      v5.8.24 The Illuminate View package.
illuminate/view                      v5.8.24 The Illuminate View package.
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@localhost:/var/www/html# cat composer.json | grep illuminate
root@localhost:/var/www/html# cat composer.json | grep illuminate
"illuminate/view": "5.8.24",
"illuminate/view": "5.8.24",
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='console'>
root@localhost:/var/www/html# cat composer.lock | grep '"name": "illuminate' -A1
root@localhost:/var/www/html# cat composer.lock | grep '"name": "illuminate' -A1
             "name": "illuminate/container",
             "name": "illuminate/container",
47번째 줄: 47번째 줄:
             "name": "illuminate/view",
             "name": "illuminate/view",
             "version": "v5.8.24",
             "version": "v5.8.24",
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:56 기준 최신판

1 개요[ | ]

composer show
root@zetawiki:/var/www/laravel# composer show
dnoegel/php-xdg-base-dir              0.1     implementation of xdg base directory speci...
doctrine/inflector                    v1.2.0  Common String Manipulations with regard to...
doctrine/instantiator                 1.0.5   A small, lightweight utility to instantiat...
... (생략)
tijsverkoyen/css-to-inline-styles     2.2.0   CssToInlineStyles is a class that enables ...
vlucas/phpdotenv                      v2.4.0  Loads environment variables from `.env` to...
webmozart/assert                      1.2.0   Assertions to validate method input/output...

2 기타[ | ]

root@localhost:/var/www/html# composer show | grep illuminate
illuminate/container                  v5.8.35 The Illuminate Container package.
illuminate/contracts                  v5.8.35 The Illuminate Contracts package.
illuminate/events                     v5.8.35 The Illuminate Events package.
illuminate/filesystem                 v5.8.35 The Illuminate Filesystem package.
illuminate/support                    v5.8.35 The Illuminate Support package.
illuminate/view                       v5.8.24 The Illuminate View package.
root@localhost:/var/www/html# cat composer.json | grep illuminate
		"illuminate/view": "5.8.24",
root@localhost:/var/www/html# cat composer.lock | grep '"name": "illuminate' -A1
            "name": "illuminate/container",
            "version": "v5.8.35",
--
            "name": "illuminate/contracts",
            "version": "v5.8.35",
--
            "name": "illuminate/events",
            "version": "v5.8.35",
--
            "name": "illuminate/filesystem",
            "version": "v5.8.35",
--
            "name": "illuminate/support",
            "version": "v5.8.35",
--
            "name": "illuminate/view",
            "version": "v5.8.24",

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}