-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.15 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
44
45
{
"name": "aydin-hassan/magento-core-composer-installer",
"description": "A composer plugin for managing Magento Core",
"type": "composer-plugin",
"license": "MIT",
"require": {
"php": "^8.0",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"composer/composer": "^2.0",
"phpunit/phpunit": "^9.0",
"mikey179/vfsstream": "~1.4"
},
"authors": [
{
"name": "Aydin Hassan",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AydinHassan\\MagentoCoreComposerInstaller\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AydinHassan\\MagentoCoreComposerInstallerTest\\": "test/"
}
},
"extra": {
"class": "\\AydinHassan\\MagentoCoreComposerInstaller\\CoreManager"
},
"scripts": {
"cs": [
"phpcs --standard=PSR12 ./src/",
"phpcs --standard=PSR12 ./test/"
],
"cs-fix": [
"phpcbf --standard=PSR12 ./src/",
"phpcbf --standard=PSR12 ./test/"
]
}
}