-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·57 lines (57 loc) · 1.73 KB
/
composer.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.73 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "firegento/module-devdashboard",
"type": "magento2-module",
"description": "",
"license": "OSL-3.0",
"authors": [
{
"name": "Hackathon Berlin 2018 Team"
}
],
"minimum-stability": "dev",
"require": {
"hyva-themes/module-magento2-admin": "^1.1",
"magento/framework": ">=103.0.0",
"magento/module-config": ">=101.0.0",
"magento/module-backend": ">=100.2.0",
"symfony/process": ">=5.4.46",
"composer/composer": "^2.9.3"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
},
"hyva-admin": {
"type": "github",
"url": "https://github.com/hyva-themes/magento2-hyva-admin.git"
}
},
"autoload": {
"psr-4": {
"Firegento\\DevDashboard\\": "src/"
},
"files": [
"src/registration.php"
]
},
"scripts": {
"check-style": "vendor/bin/phpcs -p --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "vendor/bin/phpcbf -p --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
}
},
"require-dev": {
"phpro/grumphp": "*",
"magento/magento-coding-standard": "*",
"php-parallel-lint/php-parallel-lint": "*",
"phan/phan": "*",
"phpmd/phpmd": "*"
}
}