forked from VincentLanglet/symfony-custom-coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 971 Bytes
/
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": "vincentlanglet/symfony-custom-coding-standard",
"type": "coding-standard",
"description": "Customized CodeSniffer rule set for the Symfony projects",
"keywords": [
"Symfony",
"coding standard",
"phpcs",
"twigcs"
],
"homepage": "https://github.com/VincentLanglet/Symfony-custom-coding-standard",
"license": "MIT",
"authors": [
{
"name": "Vincent Langlet"
}
],
"bin": ["bin/twigcs"],
"require": {
"php": ">=7.1",
"squizlabs/php_codesniffer": "3.5.*",
"symfony/console": "^3.0 || ^4.0",
"symfony/finder": "^3.0 || ^4.0",
"symfony/twig-bridge": "^3.0 || ^4.0",
"twig/twig": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": { "TwigCS\\": "TwigCS/" }
},
"autoload-dev": {
"psr-4": { "TwigCS\\Tests\\": "TwigCS/Tests/" }
}
}