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

[Extra] Using latest components under extra in composer.json #39

Merged
merged 4 commits into from
Jun 1, 2021
Merged
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
31 changes: 15 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,78 +30,77 @@
"laminas-skeleton-installer": [
{
"name": "laminas/laminas-developer-tools",
"constraint": "^2.0.1",
"constraint": "^2.1.1",
"prompt": "Would you like to install the developer toolbar?",
"module": true,
"dev": true
},
{
"name": "laminas/laminas-cache",
"constraint": "^2.9.0",
"constraint": "^2.11.1",
"prompt": "Would you like to install caching support?",
"module": true
},
{
"name": "laminas/laminas-db",
"constraint": "^2.10.0",
"constraint": "^2.12.0",
"prompt": "Would you like to install database support (installs laminas-db)?",
"module": true
},
{
"name": "laminas/laminas-mvc-form",
"constraint": "^1.0",
"constraint": "^1.1.0",
"prompt": "Would you like to install forms support?",
"module": true
},
{
"name": "laminas/laminas-json",
"constraint": "^3.1.2",
"constraint": "^3.2",
"prompt": "Would you like to install JSON de/serialization support?"
},
{
"name": "laminas/laminas-log",
"constraint": "^2.11",
"constraint": "^2.13.1",
"prompt": "Would you like to install logging support?",
"module": true
},
{
"name": "laminas/laminas-mvc-console",
"constraint": "^1.2.0",
"prompt": "Would you like to install MVC-based console support? (We recommend migrating to zf-console, symfony/console, or Aura.CLI)",
"module": true
"name": "laminas/laminas-cli",
"constraint": "^1.1.1",
"prompt": "Would you like to install command-line interface support?"
},
{
"name": "laminas/laminas-mvc-i18n",
"constraint": "^1.1.1",
"constraint": "^1.2.0",
"prompt": "Would you like to install i18n support?",
"module": true
},
{
"name": "laminas/laminas-mvc-plugins",
"constraint": "^1.0.1",
"constraint": "^1.1.0",
"prompt": "Would you like to install the official MVC plugins, including PRG support, identity, and flash messages?",
"module": true
},
{
"name": "laminas/laminas-psr7bridge",
"constraint": "^1.2.0",
"constraint": "^1.3.1",
"prompt": "Would you like to use the PSR-7 middleware dispatcher?"
},
Comment on lines 84 to 88
Copy link
Member

Choose a reason for hiding this comment

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

Oh, totally forgot. This should be replaced with laminas/laminas-mvc-middleware at ^2.0

Should I do that in another PR?

Copy link
Member Author

Choose a reason for hiding this comment

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

@Xerkus yes, that's ok 👍

{
"name": "laminas/laminas-session",
"constraint": "^2.9.1",
"constraint": "^2.10.0",
"prompt": "Would you like to install sessions support?",
"module": true
},
{
"name": "laminas/laminas-test",
"constraint": "^3.3.0",
"constraint": "^3.4.2",
"prompt": "Would you like to install MVC testing tools for testing support?",
"dev": true
},
{
"name": "laminas/laminas-di",
"constraint": "^3.1.1",
"constraint": "^3.2.2",
"prompt": "Would you like to install the laminas-di for laminas-servicemanager?",
"module": true
}
Expand Down