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

Improved param injection #822

Merged
merged 4 commits into from
Jan 1, 2019
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
12 changes: 6 additions & 6 deletions .scenarios.lock/symfony2/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@
"require": {
"symfony/console": "^2.8",
"php": ">=5.5.0",
"league/container": "^2.2",
"consolidation/log": "~1",
"consolidation/annotated-command": "^2.11.0",
"consolidation/config": "^1.0.10",
"consolidation/annotated-command": "^2.10.2",
"consolidation/log": "^1.1.1",
"consolidation/output-formatters": "^3.1.13",
"consolidation/self-update": "^1",
"grasmash/yaml-expander": "^1.3",
"symfony/finder": "^2.5|^3|^4",
"symfony/process": "^2.5|^3|^4",
"league/container": "^2.2",
"symfony/event-dispatcher": "^2.5|^3|^4",
"symfony/filesystem": "^2.5|^3|^4",
"symfony/event-dispatcher": "^2.5|^3|^4"
"symfony/finder": "^2.5|^3|^4",
"symfony/process": "^2.5|^3|^4"
},
"require-dev": {
"g1a/composer-test-scenarios": "^3",
Expand Down
12 changes: 6 additions & 6 deletions .scenarios.lock/symfony4/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@
"require": {
"symfony/console": "^4",
"php": ">=5.5.0",
"league/container": "^2.2",
"consolidation/log": "~1",
"consolidation/annotated-command": "^2.11.0",
"consolidation/config": "^1.0.10",
"consolidation/annotated-command": "^2.10.2",
"consolidation/log": "^1.1.1",
"consolidation/output-formatters": "^3.1.13",
"consolidation/self-update": "^1",
"grasmash/yaml-expander": "^1.3",
"symfony/finder": "^2.5|^3|^4",
"symfony/process": "^2.5|^3|^4",
"league/container": "^2.2",
"symfony/event-dispatcher": "^2.5|^3|^4",
"symfony/filesystem": "^2.5|^3|^4",
"symfony/event-dispatcher": "^2.5|^3|^4"
"symfony/finder": "^2.5|^3|^4",
"symfony/process": "^2.5|^3|^4"
},
"require-dev": {
"g1a/composer-test-scenarios": "^3",
Expand Down
100 changes: 71 additions & 29 deletions .scenarios.lock/symfony4/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2018 Codegyre Developers Team, Consolidation Team
Copyright (c) 2014-2019 Codegyre Developers Team, Consolidation Team

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand All @@ -22,9 +22,9 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
DEPENDENCY LICENSES:

Name Version License
consolidation/annotated-command 2.10.2 MIT
consolidation/annotated-command 2.11.0 MIT
consolidation/config 1.1.1 MIT
consolidation/log 1.0.6 MIT
consolidation/log 1.1.1 MIT
consolidation/output-formatters 3.4.0 MIT
consolidation/self-update 1.1.5 MIT
container-interop/container-interop 1.2.0 MIT
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@
"bin":["robo"],
"require": {
"php": ">=5.5.0",
"league/container": "^2.2",
"consolidation/log": "~1",
"consolidation/annotated-command": "^2.11.0",
"consolidation/config": "^1.0.10",
"consolidation/annotated-command": "^2.10.2",
"consolidation/log": "^1.1.1",
"consolidation/output-formatters": "^3.1.13",
"consolidation/self-update": "^1",
"grasmash/yaml-expander": "^1.3",
"symfony/finder": "^2.5|^3|^4",
"league/container": "^2.2",
"symfony/console": "^2.8|^3|^4",
"symfony/process": "^2.5|^3|^4",
"symfony/event-dispatcher": "^2.5|^3|^4",
"symfony/filesystem": "^2.5|^3|^4",
"symfony/event-dispatcher": "^2.5|^3|^4"
"symfony/finder": "^2.5|^3|^4",
"symfony/process": "^2.5|^3|^4"
},
"require-dev": {
"g1a/composer-test-scenarios": "^3",
Expand Down
Loading