-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 786 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 786 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
31
32
{
"name": "permafrost-dev/phpcsfixer-preset",
"description": "shared php-cs-fixer rules & finders preset",
"type": "library",
"license": "MIT",
"require": {
"ext-json": "*",
"php": "^7.3||^8.0",
"symfony/console": "^5.2|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Permafrost\\PhpCsFixerRules\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Permafrost\\Tests\\Unit\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"bin": "bin/pf-create-cs-config"
}