forked from rafaelstz/magento2-quicklink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·66 lines (66 loc) · 2.11 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
57
58
59
60
61
62
63
64
65
66
{
"name": "rafaelcg/magento2-quicklink",
"description": "Faster subsequent page-loads by prefetching in-viewport links during idle time",
"homepage": "https://github.com/rafaelstz/magento2-quicklink",
"version": "2.0.5",
"require": {
"php": "~7.1|~7.2|~7.3",
"magento/framework": "^101.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.2.0",
"phpro/grumphp": "^0.14.0",
"phpmd/phpmd": "^2.6",
"magento-ecg/coding-standard": ">=3.0",
"squizlabs/php_codesniffer": "^3.2",
"phpcompatibility/php-compatibility": "^9.3",
"magento/magento-coding-standard": "^5.0",
"nlubisch/grumphp-easycodingstandard": "^1.1",
"wearejust/grumphp-extra-tasks": "^2.2",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"authors": [
{
"name": "Rafael Correa Gomes",
"email": "[email protected]",
"homepage": "https://rafaelcg.com"
}
],
"keywords": [
"magento",
"magento2",
"performance",
"module",
"extension"
],
"repositories": {
"0": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"type": "magento2-module",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Rafaelcg\\Quicklink\\": "src"
}
},
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
],
"php": "vendor/bin/phpcs --standard=./vendor/phpcompatibility/php-compatibility/PHPCompatibility --extensions=php,phtml -d memory_limit=-1 src",
"lint": "vendor/bin/phpcs --standard=Magento2 src",
"fix": "vendor/bin/phpcbf --standard=Magento2 src"
}
}