forked from mlocati/php-cs-fixer-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 753 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 753 Bytes
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
{
"keywords" : [
"php-cs-fixer"
],
"autoload" : {
"psr-4" : {
"MLocati\\PhpCsFixerConfigurator\\" : "php"
}
},
"name" : "mlocati/php-cs-fixer-configurator",
"type" : "project",
"description" : "Inspect PHP-CS-Fixer fixers and easily configure it",
"license" : "MIT",
"require" : {
"php" : ">=7.4",
"friendsofphp/php-cs-fixer" : "^2 || ^3"
},
"homepage" : "https://github.com/mlocati/php-cs-fixer-configurator",
"authors" : [{
"name" : "Michele Locati",
"email" : "mlocati@gmail.com",
"homepage" : "https://mlocati.github.io",
"role" : "Author"
}
],
"support" : {
"issues" : "https://github.com/mlocati/php-cs-fixer-configurator/issues",
"source" : "https://github.com/mlocati/php-cs-fixer-configurator"
}
}