Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Here is the example of composer.json file.
"AFL-3.0"
],
"require": {
"php": "~7.1.3||~7.2.0||~7.3.0"
"php": "~7.2.0||~7.3.0"
},
"autoload": {
"files": [ "registration.php" ],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Refer to [Module version dependencies]({{ page.baseurl }}/extension-dev-guide/ve
"name": "your-name/module-Acme",
"description": "Test component for Magento 2",
"require": {
"php": "~7.1.3||~7.2.0",
"php": "~7.2.0||~7.3.0",
"magento/module-store": "102.1",
"magento/module-catalog": "102.1",
"magento/module-catalog-inventory": "102.1",
Expand Down
4 changes: 2 additions & 2 deletions src/guides/v2.3/extension-dev-guide/package/package_module.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The following example is a `composer.json` for a metapackage:
"version": "2.0.0",
"type": "metapackage",
"require": {
"php": "~7.1.3|~7.2.0",
"php": "~7.2.0||~7.3.0",
"zendframework/zend-stdlib": "~2.4.6",
"zendframework/zend-code": "~2.4.6",
"zendframework/zend-server": "~2.4.6",
Expand Down Expand Up @@ -99,7 +99,7 @@ The following example is a `composer.json` file for a module:
"AFL-3.0"
],
"require": {
"php": "~7.1.3|~7.2.0",
"php": "~7.2.0||~7.3.0",
"magento/framework": "~100.0.4"
},
"autoload": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ComponentRegistrar::register(
"name": "vendor/custom-shipping",
"description": "Custom shipping module",
"require": {
"php": "~7.1.3||~7.2.0",
"php": "~7.2.0||~7.3.0",
"magento/framework": "102.0.*",
"magento/module-backend": "101.0.*",
"magento/module-catalog": "103.0.*",
Expand Down