Skip to content

Commit

Permalink
Improved param injection (#822)
Browse files Browse the repository at this point in the history
* Allow use of SymfonyStyle as parameter to command functions

* At Application::run() time, set up the style object for classes that implement IOAwareInterface

* Fix documentation on $ioStorage field

* Use logger manager to manage log styles
  • Loading branch information
greg-1-anderson authored Jan 1, 2019
1 parent d3a073f commit 5737c84
Show file tree
Hide file tree
Showing 13 changed files with 419 additions and 98 deletions.
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

0 comments on commit 5737c84

Please sign in to comment.