0
私はjQueryのを望んでいたし、コマンドラインで composer require components/jquery ^1.11
jqueryが不要なPHPパッケージをインストールする必要があるのはなぜですか?
に入った。しかし、ログは私を示しています
Package operations: 4 installs, 0 updates, 0 removals
- Installing symfony/process (v3.2.7): Loading from cache
- Installing kriswallsmith/assetic (v1.4.0): Loading from cache
- Installing robloach/component-installer (0.2.3): Loading from cache
- Installing components/jquery (1.11.0): Loading from cache
なぜComposerは、私がインストールすることを意図したことがないPHP関連のパッケージをインストールしますか?そして、どうすれば不要なパッケージを取り除くことができますか?より良い/クリーナーのインストール方法はありますか?しかし、robloach/component-installer
はあまりにもいくつかの追加パッケージが必要
"require": {
"robloach/component-installer": "*"
},
、 も:
おかげでたくさん見ることができます。依存関係のない純粋なjQueryのみをインストールする方法を教えてください。まったく可能ですか? – Hexodus
'composer require components/jquery'が今度はインストールするでしょう - 必要な依存関係を必要としないバージョン3.2、https://github.com/components/jquery/blob/master/composer.json – hassan
ありがとうハッサン! ;) – Hexodus