-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.1 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
{
"name": "mreduar/laravel-phpcs",
"description": "PHP Codesniffer ruleset to follow Laravel's coding style",
"keywords": [
"mreduar",
"laravel-phpcs",
"phpcs",
"php",
"coding-style",
"coding sniffer",
"coding-standard"
],
"homepage": "https://github.com/mreduar/laravel-phpcs",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Eduar Bastidas",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Mreduar\\LaravelPhpcs\\": "src"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Mreduar\\LaravelPhpcs\\LaravelPhpcsServiceProvider"
]
}
}
}