-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
81 lines (81 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "integer-net/magento2-sansec-watch",
"description": "Sansec Watch integration for Magento 2",
"license": "MIT",
"type": "magento2-module",
"authors": [
{
"name": "Julian Nuß",
"email": "jn@integer-net.de"
}
],
"require": {
"php": ">=8.1.0",
"beberlei/assert": "^3.3",
"cuyz/valinor": "^1.10",
"magento/framework": ">=100.0.0",
"magento/module-csp": "*",
"symfony/clock": "^6.4",
"symfony/http-client": "^5.0 || ^6.0 || ^7.0",
"symfony/uid": "^6.2"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.31.0",
"ergebnis/composer-normalize": "^2.43",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.2",
"roave/security-advisories": "dev-latest",
"symplify/easy-coding-standard": "^12.3"
},
"repositories": [
{
"type": "composer",
"url": "https://mirror.mage-os.org/",
"only": [
"magento/*"
]
}
],
"autoload": {
"psr-4": {
"IntegerNet\\SansecWatch\\": "src/"
},
"files": [
"registration.php"
]
},
"autoload-dev": {
"psr-4": {
"IntegerNet\\SansecWatch\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"magento/composer-dependency-version-audit-plugin": false,
"phpstan/extension-installer": true
}
},
"scripts": {
"ecs": "ecs check src",
"ecs-fix": "ecs check src --fix",
"lint": "parallel-lint src",
"phpstan": "phpstan",
"phpunit": "phpunit",
"rector": "rector process --dry-run",
"test": [
"@lint",
"@ecs",
"@phpstan",
"@phpunit",
"@rector"
]
}
}