-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
executable file
·69 lines (69 loc) · 2.32 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
67
68
69
{
"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.2.1",
"require": {
"php": "~7.4.0||~8.1.0",
"magento/framework": "~103.0.0||~104.0.0"
},
"require-dev": {
"magento/magento-coding-standard": "^27",
"friendsofphp/php-cs-fixer": "^2.2.0",
"phpmd/phpmd": "^2.6",
"phpcompatibility/php-compatibility": "*",
"squizlabs/php_codesniffer": "^3.2"
},
"prefer-stable" : true,
"authors": [
{
"name": "Rafael Correa Gomes",
"email": "rafaelcgstz@gmail.com",
"homepage": "https://rafaelcg.com"
}
],
"keywords": [
"magento",
"magento2",
"performance",
"module",
"extension"
],
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"type": "magento2-module",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Rafaelcg\\Quicklink\\": ""
}
},
"scripts": {
"post-install-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/,../../phpcompatibility/php-compatibility)"
],
"post-update-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/,../../phpcompatibility/php-compatibility)"
],
"php": "vendor/bin/phpcs -p . --standard=PHPCompatibility --extensions=php,phtml --ignore=vendor -d memory_limit=-1",
"lint": "vendor/bin/phpcs --standard=Magento2 --ignore=vendor .",
"fix": "vendor/bin/phpcbf --standard=Magento2 --ignore=vendor ."
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}