-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
36 lines (36 loc) · 1.02 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
{
"name": "sserbin/twig-linter",
"description": "Standalone cli twig linter (based on symfony-bridge-twig)",
"keywords": ["twig", "lint", "linter"],
"license": "MIT",
"authors": [
{
"name": "sserbin",
"email": "sserbin@users.noreply.github.com"
}
],
"autoload": {
"psr-4": { "Sserbin\\TwigLinter\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Sserbin\\TwigLinter\\Tests\\": "tests/"}
},
"require": {
"php": "^7.4|^8.0",
"symfony/console": "^5.4 || ^6.1",
"symfony/finder": "^5.4 || ^6.1",
"twig/twig": "^2.5 || ^3",
"composer/package-versions-deprecated": "1.11.99.5"
},
"require-dev": {
"phpunit/phpunit": "^7.3||^8.2|^9.5",
"squizlabs/php_codesniffer": "^3.3",
"vimeo/psalm": "^4.7 || ^5.8"
},
"bin": ["bin/twig-linter"],
"scripts": {
"cs-check": "phpcs",
"static-analysis" : "psalm",
"test": "vendor/bin/phpunit --colors=always"
}
}