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

Update dependencies from DependenCI #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

djneo92nl
Copy link
Owner

There are new versions of your dependencies available!

Package Current Version New Version
friendsofcake/bootstrap-ui 0.6.0 1.2.0
phpunit/phpunit 5.6.0 6.2.2
These versions aren't covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version.
If you have a test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update. Please take a look on the above section if you rely on the composer.lock file for your tests
If you don't have a test suite (you should), you can checkout to this branch (git checkout dependenci32676) and make sure everything is working.


About tests that rely on the composer.lock file

DependenCI doesn't currently support auto-updating the composer.lock file. If your tests do composer install instead of composer update, you'll have to manually update the composer.lock file. You can run composer update nothing --lock to update your lockfile.

Want to disable checking for a specific dependency?

You can add an excluded section into your composer.json to exclude some dependencies from the analysis.

Your composer.json would look like this:

{
    "name": "djneo/poseiden",
    "description": "Easy Home Automation",
    "homepage": "http://remko.ninka",
    "type": "project",
    "license": "MIT",
    "repositories": [
        {
            "type": "vcs",
            "url": "[email protected]:djneo92nl/phpMQTT.git"
        }
    ],
    "require": {
        "php": ">=5.6.9",
        "cakephp/cakephp": "~3.2",
        "mobiledetect/mobiledetectlib": "2.*",
        "cakephp/migrations": "@stable",
        "cakephp/plugin-installer": "*",
        "djneo/phpmqtt": "dev-master",
        "djneo/colorz": "dev-master",
        "friendsofcake/bootstrap-ui": "^1.2.0",
        "sqmk/phue": "^1.6",
        "trntv/probe": "^1.0",
        "andrej-griniuk/cakephp-two-factor-auth": "^1.2",
        "elberth90/yeelight-api-client": "^0.5.0"
    },
    "require-dev": {
        "psy/psysh": "@stable",
        "cakephp/debug_kit": "~3.2",
        "cakephp/bake": "~1.1",
        "phpunit/phpunit": "^6.2.2"
    },
    "suggest": {
        "phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
        "cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
    },
    "autoload": {
        "psr-4": {
            "App\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "App\\Test\\": "tests",
            "Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
        }
    },
    "scripts": {
        "post-install-cmd": "App\\Console\\Installer::postInstall",
        "post-create-project-cmd": "App\\Console\\Installer::postInstall",
        "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
    },
    "minimum-stability": "stable",
    "prefer-stable": true,
    "extra": {
        "dependenci": {
            "excluded": [
                "excluded/dependency"
            ]
        }
    }
}
Not sure how things should work exactly?

If you need help, have a cool idea for DependenCI or just want to say hi, drop us a mail at [email protected].


Powered by DependenCI 💫

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

Successfully merging this pull request may close these issues.

2 participants