-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.71 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
{
"name": "tr33m4n/magento2-system-path-hints",
"type": "magento2-module",
"description": "A convenient way to view and copy a system configuration path from the admin panel",
"license": "MIT",
"authors": [
{
"name": "Daniel Doyle",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"tr33m4n\\SystemPathHints\\": "src"
}
},
"require": {
"php": "^8.1",
"magento/framework": "*"
},
"scripts": {
"fix": "vendor/bin/rector process && vendor/bin/php-cs-fixer fix --diff",
"test:static": "vendor/bin/phpstan analyse --no-interaction --no-progress && vendor/bin/phpcs src -s",
"test:lint": "vendor/bin/rector process --dry-run && vendor/bin/php-cs-fixer fix --dry-run --diff",
"test-static-analysis": [
"@test:static",
"@test:lint"
],
"test": [
"@test-static-analysis"
]
},
"require-dev": {
"adamwojs/php-cs-fixer-phpdoc-force-fqcn": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"friendsofphp/php-cs-fixer": "^3.62",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.2"
},
"extra": {
"magento-deploystrategy": "none"
}
}