L
L
Leopandro2015-12-07 14:31:46
PHP
Leopandro, 2015-12-07 14:31:46

How to change installation path in composer?

Here is composer.json

{
    "name": "yiisoft/yii2-app-basic",
    "description": "Yii 2 Basic Project Template",
    "keywords": ["yii2", "framework", "basic", "project template"],
    "homepage": "http://www.yiiframework.com/",
    "type": "project",
    "license": "BSD-3-Clause",
    "support": {
        "issues": "https://github.com/yiisoft/yii2/issues?state=open",
        "forum": "http://www.yiiframework.com/forum/",
        "wiki": "http://www.yiiframework.com/wiki/",
        "irc": "irc://irc.freenode.net/yii",
        "source": "https://github.com/yiisoft/yii2"
    },
    "minimum-stability": "dev",
    "prefer-stable" : true,
    "repositories": {
        "Leopandro": {
            "type": "package",
            "package": {
                "name": "Leopandro/yii2-user",
                "version": "dev-master",
                "source": {
                    "url": "https://github.com/Leopandro/yii2-user",
                    "type": "git",
                    "reference":"dd41fccbab926f3719a378ddd698e7976f57eca5"
                }
            }
        }
    },
    "require": {
        "php": ">=5.4.0",
        "yiisoft/yii2": ">=2.0.5",
        "yiisoft/yii2-bootstrap": "*",
        "yiisoft/yii2-swiftmailer": "*",
        "Leopandro/yii2-user": "dev-master",
        "execut/yii2-widget-bootstraptreeview": "dev-master",
        "2amigos/yii2-file-upload-widget": "~1.0",
        "kartik-v/yii2-widget-select2": "@dev",
        "paulzi/yii2-adjacency-list": "^1.0"
    },
    "require-dev": {
        "yiisoft/yii2-codeception": "*",
        "yiisoft/yii2-debug": "*",
        "yiisoft/yii2-gii": "*",
        "yiisoft/yii2-faker": "*"
    },
    "autoload": {
        "psr-0": {
            "Leopandro": "vendor/Leopandro/yii2-user/"
        }
    },
    "config": {
        "process-timeout": 1800
    },
    "scripts": {
        "post-create-project-cmd": [
            "yii\\composer\\Installer::postCreateProject"
        ]
    },
    "extra": {
        "yii\\composer\\Installer::postCreateProject": {
            "setPermission": [
                {
                    "runtime": "0777",
                    "web/assets": "0777",
                    "yii": "0755"
                }
            ],
            "generateCookieValidationKey": [
                "config/web.php"
            ]
        },
        "asset-installer-paths": {
            "npm-asset-library": "vendor/npm",
            "bower-asset-library": "vendor/bower"
        }
    },
}

I need it to be installed not in leopandro/yii2-soft but in dektrium/yii2-soft. How to do it? I did not find a single example on the Internet, only dry documentation in English.
Tried like this:
"name":{
        "name": "dektrium/yii2-user"
    },
    "replace":{
        "Leopandro/yii2-user":"dev-master"
    }

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander N++, 2015-12-07
@sanchezzzhak

just fork the project and create a packagist at packagist.org/packages/kak/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question