forked from spryker/architecture-sniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.88 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
{
"name": "spryker/architecture-sniffer",
"type": "library",
"description": "Spryker Architecture Sniffer",
"homepage": "https://spryker.com",
"license": "MIT",
"require": {
"php": ">=8.0",
"laminas/laminas-config": "^2.5.1 || ^3.1.0",
"laminas/laminas-filter": "^2.5.1",
"phpdocumentor/reflection-docblock": "^5.3.0",
"phpmd/phpmd": "^2.10.0",
"symfony/finder": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.3",
"phpstan/phpstan": "^1.0.0",
"spryker/code-sniffer": "*",
"symfony/var-dumper": "^4.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"keywords": [
"framework",
"sniffer",
"architecture",
"standards"
],
"authors": [
{
"name": "Spryker",
"homepage": "https://spryker.com"
}
],
"support": {
"source": "https://github.com/spryker/architecture-sniffer"
},
"autoload": {
"psr-4": {
"ArchitectureSniffer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArchitectureSnifferTest\\": "tests/"
}
},
"scripts": {
"cs-check": "phpcs --colors -p -s --extensions=php --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml --ignore=/tests/_data/,/_support/ src/ tests/",
"cs-fix": "phpcbf --colors -p --extensions=php --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml --ignore=/tests/_data/,/_support/ src/ tests/",
"stan": "phpstan analyze",
"test": "codecept build && codecept run"
},
"include-path": [
"src/"
]
}