-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
39 lines (39 loc) · 894 Bytes
/
composer.json
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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "yireo/magento2-extensionchecker",
"license": "OSL-3.0",
"type": "magento2-module",
"version": "2.4.4",
"homepage": "https://github.com/yireo/Yireo_ExtensionChecker",
"description": "Scan the code of a Magento module",
"keywords": [
"composer-installer",
"magento"
],
"authors": [
{
"name": "Jisse Reitsma (Yireo)",
"email": "[email protected]"
}
],
"require": {
"magento/framework": "^102.0|^103.0",
"symfony/finder": "^3.0|^4.0|^5.0|^6.0|^7.0",
"composer/semver": "^1.0|^2.0|^3.0",
"nikic/php-parser": "^3.0|^4.0|^5.0",
"php": "^7.4|^8.1",
"ext-json": "*",
"ext-pcre": "*",
"ext-xml": "*"
},
"require-dev": {
"yireo/magento2-integration-test-helper": "~0.0.13"
},
"autoload": {
"psr-4": {
"Yireo\\ExtensionChecker\\": ""
},
"files": [
"registration.php"
]
}
}