-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 823 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"type": "project",
"name": "magento/composer-root-update-plugin",
"description": "Git source for the Magento Open Source/Adobe Commerce root update lookahead composer plugin. Actual plugin composer.json file located under src/Magento/ComposerRootUpdatePlugin directory.",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
"php": "~7.3.0||~7.4.0||~8.0.0||~8.1.0||~8.2.0||~8.3.0||~8.4.0||~8.5.0",
"composer/composer": "^2.0",
"composer-plugin-api": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "~9.5.0"
},
"autoload": {
"psr-4": {
"Magento\\ComposerRootUpdatePlugin\\": "src/Magento/ComposerRootUpdatePlugin/"
}
},
"autoload-dev": {
"psr-4": {
"Magento\\ComposerRootUpdatePlugin\\": "tests/Unit/Magento/ComposerRootUpdatePlugin/"
}
}
}