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

Upgraded composer deps #3328

Merged
merged 1 commit into from
Nov 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 33 additions & 24 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,47 +24,53 @@
"email": "[email protected]"
}
],
"replace": {
"paragonie/random_compat": "*",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since Cachet requires PHP 7.1, we can prevent the installation of this package by saying we "replace" it. Similar for the mbstring polyfill, since we require the actual extension.

"symfony/polyfill-mbstring": "*"
},
"require": {
"php": "^7.1.3",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-xml": "*",
"alt-three/badger": "^5.0",
"alt-three/bus": "^4.0",
"alt-three/emoji": "^6.0",
"alt-three/throttle": "^3.0",
"alt-three/twitter": "^3.0",
"alt-three/validator": "^4.0",
"alt-three/badger": "^5.1",
"alt-three/bus": "^4.1",
"alt-three/emoji": "^6.1",
"alt-three/throttle": "^3.1",
"alt-three/twitter": "^3.1",
"alt-three/validator": "^4.1",
"aws/aws-sdk-php": "^3.7",
"barryvdh/laravel-cors": "^0.11.0",
"doctrine/dbal": "2.8.0",
"doctrine/dbal": "2.8.*",
"fideloper/proxy": "^4.0",
"graham-campbell/binput": "^5.0",
"graham-campbell/exceptions": "^11.0",
"graham-campbell/markdown": "^10.0",
"guzzlehttp/guzzle": "^6.2.1",
"jenssegers/date": "^3.2",
"graham-campbell/binput": "^5.1",
"graham-campbell/exceptions": "^11.1",
"graham-campbell/markdown": "^10.2",
"guzzlehttp/guzzle": "^6.3.3",
"jenssegers/date": "^3.4",
"laravel/framework": "5.6.*",
"laravel/tinker": "^1.0",
"laravolt/avatar": "^1.8",
"mccool/laravel-auto-presenter": "^7.0",
"nexmo/client": "@beta",
"mccool/laravel-auto-presenter": "^7.1",
"nexmo/client": "^1.5",
"pragmarx/google2fa": "^0.7.1",
"predis/predis": "^1.1",
"roumen/feed": "^2.10",
"twig/twig": "^1"
"twig/twig": "^1.35"
},
"require-dev": {
"ext-sqlite3": "*",
"alt-three/testbench": "^4.0",
"barryvdh/laravel-debugbar": "^3.0",
"filp/whoops": "^2.1",
"fzaninotto/faker": "^1.6",
"graham-campbell/analyzer": "^2.0",
"barryvdh/laravel-debugbar": "^3.2",
"filp/whoops": "^2.3",
"fzaninotto/faker": "^1.8",
"graham-campbell/analyzer": "^2.1",
"graham-campbell/testbench-core": "^3.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0",
"symfony/css-selector": "^3.1",
"symfony/dom-crawler": "^3.1",
"tightenco/mailthief": "^0.3.2"
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.4",
"symfony/css-selector": "^4.0",
"symfony/dom-crawler": "^4.0",
"tightenco/mailthief": "^0.3.14"
},
"suggest": {
"ext-apc": "APC Support cache driver."
Expand Down Expand Up @@ -98,6 +104,9 @@
]
},
"config": {
"platform": {
"php": "7.1.3"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This ensures that all dependencies are compatible with php 7.1.3, and not just the current system platform when generating the lock file.

},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
Expand Down
Loading