-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.12 KB
/
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
40
41
42
43
{
"name": "jerrylopez/module-template",
"description": "A template to help you start your next Magento 2 module.",
"keywords": ["php", "template", "magento2", "module"],
"license": "MIT",
"type": "magento2-module",
"authors": [
{
"name": "Jerry Lopez",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2.0"
},
"autoload": {
"psr-4": {
"JerryLopez\\ModuleTemplate\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"magento/magento-coding-standard": "^15.0",
"rector/rector": "*"
},
"scripts": {
"refactor": "rector",
"lint": "phpcs -s --standard=./.phpcs.xml",
"test:refactor": "rector --dry-run",
"test": [
"@test:refactor"
]
}
}