PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Saturday, January 22, 2022

[FIXED] Add directory using Composer

 January 22, 2022     composer-php, php     No comments   

Issue

I wanted to get several Git repositories then place it on a certain directory on my Git-tracked project. My current project structure:

- custom
- plugins
- file.txt

When the user do a composer install, I wanted it to fetch this Git repo then place it under new directory on my project named provisioning.

- custom
- plugins
- provisioning
  - nginx
- file.txt

Am I using the Composer the right way?


Solution

By default, the composer will install dependencies to vendor directory. If you need to install everything into directory names provisioning the use

"config": {
    "vendor-dir": "plugins"
},

in your composer.json file and then run composer install command

Further details in How to specify Composer install path?



Answered By - Prasad Paranjape
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing