forked from Swivl/php-coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 800 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
{
"name": "swivl/php-coding-standard",
"type": "phpcodesniffer-standard",
"description": "Swivl Coding Standard for PHP_CodeSniffer",
"keywords": ["phpcs", "symfony", "Swivl", "coding standard"],
"homepage": "https://github.com/Swivl/php-coding-standard",
"license": "MIT",
"authors": [
{
"name": "Vadim Borodavko",
"email": "vadim@swivl.com",
"homepage": "https://github.com/javer",
"role": "Lead Developer"
}
],
"require": {
"php": ">=7.1",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Swivl\\Sniffs\\": "Swivl/Sniffs/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}