-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
50 lines (50 loc) · 1.16 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
47
48
49
50
{
"name": "pedrotroller/php-cs-custom-fixer",
"description": "PHP-CS-FIXER : my custom fixers",
"license": "MIT",
"require": {
"php": "^8.1",
"friendsofphp/php-cs-fixer": ">=3.59.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.60",
"phpspec/phpspec": "^7.0",
"sebastian/diff": "^4.0",
"twig/twig": "^3.3",
"webmozart/assert": "^1.10"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PedroTroller\\CS\\Fixer\\": "src/PedroTroller/CS/Fixer"
}
},
"autoload-dev": {
"psr-4": {
"spec\\": "spec",
"tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"lint": [
"@php-cs-fixer"
],
"php-cs-fixer": [
"php-cs-fixer fix --dry-run -vvv --diff"
],
"tests": [
"tests\\Runner::run",
"tests\\Orchestra::run",
"phpspec run -fpretty"
]
}
}