getcodice / codice

Online note-taking and task-management application
http://codice.eu
MIT License
14 stars 3 forks source link

Update dependencies from DependenCI #41

Closed Sobak closed 7 years ago

Sobak commented 7 years ago

There are new versions of your dependencies available!

Package Current Version New Version
phpunit/phpunit 5.7.0 6.1.3

This 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. If you don't have a test suite (you should), you can checkout to this branch (git checkout dependenci6399) and make sure everything is working.


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 [dependenci@miguelpiedrafita.com](mailto:dependenci@miguelpiedrafita.com).
Want to disable checking for a specific dependency? You can add a Excluded section into your composer.json to exclude some dependencies from the analysis. Your composer.json would look like this: ``` { "name": "codice/codice", "description": "Codice: note taking and task-management web application", "license": "MIT", "type": "project", "require": { "php": ">=5.6.4", "adamwathan/bootforms": "0.8.*", "composer/semver": "^1.4", "laravel/framework": "5.4.*", "league/commonmark": "^0.15", "webuni/commonmark-table-extension": "^0.6.0" }, "require-dev": { "laravel/tinker": "~1.0", "fzaninotto/faker": "~1.4", "mockery/mockery": "0.9.*", "phpunit/phpunit": "^6.1.3", "barryvdh/laravel-ide-helper": "^2.1", "barryvdh/laravel-debugbar": "^2.3" }, "autoload": { "classmap": [ "database" ], "psr-4": { "Codice\\": "app/" }, "files": [ "app/Support/helpers.php" ] }, "autoload-dev": { "classmap": [ "tests/TestCase.php" ] }, "scripts": { "post-root-package-install": [ "php -r \"file_exists('.env') || copy('.env.example', '.env');\"" ], "post-create-project-cmd": [ "php artisan key:generate" ], "post-install-cmd": [ "Illuminate\\Foundation\\ComposerScripts::postInstall", "php artisan optimize" ], "post-update-cmd": [ "Illuminate\\Foundation\\ComposerScripts::postUpdate", "php artisan optimize" ] }, "config": { "preferred-install": "dist", "sort-packages": true }, "dependenci": { "excluded": [ "excluded/dependency" ] } } ```

Powered by DependenCI :octocat: