Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Register on Packagist #7

Open
cebe opened this issue Jun 14, 2014 · 12 comments
Open

Register on Packagist #7

cebe opened this issue Jun 14, 2014 · 12 comments

Comments

@cebe
Copy link

cebe commented Jun 14, 2014

Just seen that the package is not on packagist, so it can not be installed easily.
Can someone add it there? https://packagist.org/packages/submit

@Ragazzo
Copy link

Ragazzo commented Jun 15, 2014

Could be useful.

Also FYI, since Yii special architecture features - exit , echo, header and other, i would rather suggest to use PhpBrowser for functional in this case.

@badams
Copy link

badams commented Jul 10, 2014

How does one install this? I've tried adding the git repo to my composer.json file

{
    "repositories": [
        {
            "type" : "vcs",
            "url" : "http://github.com/Codeception/YiiBridge"
        }
    ],

    "require-dev": {
        "codeception/codeception": "2.0.2",
        "codeception/YiiBridge": "*"
    }
}

But I just get the following error

Problem 1

  • The requested package codeception/yiibridge could not be found in any version, there may be a typo in the package name.

@lucor
Copy link

lucor commented Jul 28, 2014

@badams change the "url" value:
"url" : "https://github.com/Codeception/YiiBridge.git"

@dilumdarshana
Copy link

Still getting the same issue even with the given url.

@badams
Copy link

badams commented Jul 29, 2014

@dilumdarshana I got it working with the following.

{
    "minimum-stability": "dev",
    "repositories": [
        {
             "type" : "vcs",
             "url" : "https://github.com/Codeception/YiiBridge",
             "reference": "origin/master"
        }
    ],
    "require-dev": {
        "codeception/codeception": "2.0.2",
        "codeception/YiiBridge": "dev-master"
    }
}

@dilumdarshana
Copy link

@badams Great... Thanks... It is working with the following as well,

{
"repositories": [
{
"type" : "vcs",
"url" : "https://github.com/Codeception/YiiBridge"
}
],
"require-dev": {
"codeception/codeception": "dev-master",
"codeception/YiiBridge": "dev-master"
}
}

@ghost
Copy link

ghost commented Aug 25, 2014

So any news on this ?

@Ragazzo
Copy link

Ragazzo commented Aug 25, 2014

@DavertMik can you look on this one please ?

@drewpc
Copy link

drewpc commented Sep 25, 2014

I attempted to submit it to Packages and got this error:

"The package name codeception/YiiBridge is invalid, it should not contain uppercase characters. We suggest using codeception/yii-bridge instead."

@konstin
Copy link

konstin commented Oct 8, 2016

For anyone who might still have that problem: It is registered as "codeception/yii-bridge". So you can install it with composer require codeception/yii-bridge

@freezy-sk
Copy link

@konstin but it points to forked repository https://github.com/lubobill1990/codeception-yii-bridge

@konstin
Copy link

konstin commented Sep 26, 2018

@freezy-sk As apparently codeception themselves won't do it, I'm fine with this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants