forked from project-nos/spryker-twig-code-sniffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.42 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
{
"name": "project-nos/spryker-twig-code-sniffer",
"type": "library",
"description": "This package aims to be for twig templates in spryker what phpcs is to php. It checks your codebase for violations on coding standards.",
"license": "MIT",
"keywords": [
"spryker",
"twig",
"standards",
"static analysis"
],
"authors": [
{
"name": "Andreas Penz",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"spryker/kernel": "^3.52.0",
"vincentlanglet/twig-cs-fixer": "2.0.*"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"spryker/code-sniffer": "*",
"spryker/testify": "*"
},
"autoload": {
"psr-4": {
"Nos\\": "src/Nos/"
}
},
"autoload-dev": {
"psr-4": {
"NosTest\\": "tests/NosTest/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"phpcs:check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/",
"phpcs:fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/ tests/",
"codecept:build": "vendor/bin/codecept build",
"codecept:run": "vendor/bin/codecept run"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}