This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
50 lines (50 loc) · 1.49 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
{
"name": "phpro/mage2-module-cookie-consent",
"description": "Manage and set the categories and list of cookies",
"type": "magento2-module",
"license": "MIT",
"authors": [
{
"name": "PHPro NV",
"email": "[email protected]",
"homepage": "https://www.phpro.be/"
}
],
"require": {
"php": "^7.4|^8.1",
"magento/framework": "^103.0"
},
"require-dev": {
"magento/magento-coding-standard": "*",
"phpro/grumphp-shim": "^1.5"
},
"autoload": {
"psr-4": {
"Phpro\\CookieConsent\\": ""
},
"files": [
"registration.php"
]
},
"repositories": [
{
"type": "composer",
"url": "https://repo-magento-mirror.fooman.co.nz"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true,
"magento/composer-dependency-version-audit-plugin": true
}
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard,../../phpcompatibility/php-compatibility/PHPCompatibility)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard,../../phpcompatibility/php-compatibility/PHPCompatibility)"
]
}
}