-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.01 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
{
"name": "clearfacts/cf-codestyle",
"type": "package",
"description": "Provides integration with php codesniffer for your symfony projects",
"require": {
"php": "^8.1",
"friendsofphp/php-cs-fixer": "^3.0|^2.0",
"symfony/console": "^6.0|^5.0|^4.0|^3.0",
"symfony/filesystem": "^6.0|^5.0|^4.0|^3.0",
"symfony/finder": "^6.0|^5.0|^4.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/test-pack": "^1.0",
"vimeo/psalm": "^4.23"
},
"autoload": {
"psr-4": {
"Clearfacts\\Bundle\\CodestyleBundle\\": "src/",
"Clearfacts\\Bundle\\CodestyleBundle\\Tests\\": "tests/"
}
},
"bin": ["bin/cf-codestyle"],
"scripts": {
"set-up": [
"@copy-cs-config",
"./bin/cf-codestyle clearfacts:codestyle:hooks-setup"
],
"copy-cs-config": "bin/cf-codestyle clearfacts:codestyle:copy-cs-config"
},
"config": {
"sort-packages": true
}
}