-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
69 lines (69 loc) · 1.79 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": "spryker-sdk/phpstan-spryker",
"description": "Spryker PHPStan Extensions",
"license": "MIT",
"keywords": [
"phpstan",
"analyzing"
],
"homepage": "https://spryker.com",
"authors": [
{
"name": "Spryker",
"homepage": "https://spryker.com"
}
],
"require": {
"php": ">=8.2",
"phpunit/phpunit": "^11.4.0",
"phpstan/phpstan": "^1.0.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.1.1",
"jakub-onderka/php-parallel-lint": "^1.0",
"phing/phing": "^2.16.0",
"phpstan/phpstan-strict-rules": "^1.0.0",
"spryker/code-sniffer": "*",
"squizlabs/php_codesniffer": "^3.6.0"
},
"autoload": {
"psr-4": {
"SprykerSdk\\PHPStanSpryker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SprykerSdk\\PHPStanSpryker\\Test\\": "tests/"
}
},
"scripts": {
"travis": "vendor/bin/phing",
"test": "phpunit",
"stan": "vendor/bin/phpstan analyze -c tests/phpstan.neon -l 8 src/",
"cs-check": "phpcs -p -s src/ tests/",
"cs-fix": "phpcbf -p src/ tests/"
},
"support": {
"source": "https://github.com/spryker-sdk/phpstan-spryker"
},
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"phpstan": {
"includes": [
"extension.neon"
]
}
},
"config": {
"use-include-path": true,
"process-timeout": 600,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
}
}