-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.77 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
{
"name": "integer-net/magento2-dump-server",
"description": "N/A",
"license": "Proprietary",
"type": "magento2-module",
"require": {
"php": ">=8.1",
"magento/framework": "*",
"webmozart/assert": "^1.11"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.30.1",
"ergebnis/composer-normalize": "^2.35",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^5.4 || ^6.0",
"vimeo/psalm": "^5.15",
"squizlabs/php_codesniffer": "^3.7",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpro/grumphp-shim": "^2.0",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-deprecation-rules": "^1.1",
"rector/rector": "^0.18.1"
},
"repositories": [
{
"type": "composer",
"url": "https://mirror.mage-os.org/",
"only": [
"magento/*"
]
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"IntegerNet\\DumpServer\\": "src/"
},
"files": [
"registration.php"
]
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
}
},
"scripts": {
"test-static": [
"vendor/bin/parallel-lint src",
"vendor/bin/phpcs --standard=PSR12 src",
"vendor/bin/phpstan",
"vendor/bin/psalm"
]
}
}