https://github.com/karser/custominstaller
Custom installer
https://github.com/karser/custominstaller
Last synced: about 1 year ago
JSON representation
Custom installer
- Host: GitHub
- URL: https://github.com/karser/custominstaller
- Owner: karser
- Created: 2013-02-06T08:42:27.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-03-14T14:57:09.000Z (over 11 years ago)
- Last Synced: 2025-02-14T04:47:57.961Z (over 1 year ago)
- Language: PHP
- Size: 164 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CustomInstaller
===============
This installer for composer packages allows you to specify custom install path per package in Symfony2.
Inspired by [this](https://github.com/composer/installers/pull/30) discussion.
## Installation
Add the code in your composer.json:
```js
{
"require": {
"karser/custom-installer": "dev-master"
}
}
```
Now tell composer to download the library by running the command:
``` bash
$ php ./composer.phar update
```
## Usage
```js
"extra": {
"installer-paths": {
"src/": ["karser/*-bundle"]
}
}
```