-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "28software/module-google-customer-reviews",
"description": "Google Customer Reviews extension for Magento 2",
"version": "1.1.0",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "Serhii Koval",
"email": "[email protected]"
},
{
"name": "Maksym Hryb",
"email": "[email protected]"
},
{
"name": "Vadym Drobko",
"email": "[email protected]"
}
],
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"require": {
"php": ">=8.0",
"magento/framework": "*",
"magento/module-backend": "~100|~101|~102",
"magento/module-catalog": "~103|~104",
"magento/module-checkout": "~100"
},
"require-dev": {
"phpunit/phpunit": "~6.5",
"magento/magento-coding-standard": "~2.0"
},
"scripts": {
"test-unit": "vendor/phpunit/phpunit/phpunit Test/Unit",
"test-phpcs": "vendor/bin/phpcs --standard=Magento2 ./Api/ ./Model/ ./ViewModel/ ./view/ ./etc/",
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 1 ] && vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 1 ] && vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/"
]
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"TESoftware\\GoogleCustomerReviews\\": ""
}
}
}