-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "azuyalabs/php-cs-fixer-config",
"description": "PHP CS Fixer config for AzuyaLabs projects",
"license": "MIT",
"type": "library",
"keywords": [
"PHP",
"style",
"configuration",
"php-cs-fixer"
],
"readme": "README.md",
"authors": [
{
"name": "Sacha Telgenhof",
"email": "me@sachatelgenhof.com",
"homepage": "https://www.sachatelgenhof.com",
"role": "Maintainer"
}
],
"homepage": "https://github.com/azuyalabs/php-cs-fixer-config",
"support": {
"issues": "https://gitlab.com/azuyalabs/php-cs-fixer-config/-/issues",
"source": "https://gitlab.com/azuyalabs/php-cs-fixer-config",
"docs": "https://gitlab.com/azuyalabs/php-cs-fixer-config"
},
"funding": [
{
"type": "other",
"url": "https://www.buymeacoffee.com/sachatelgenhof"
}
],
"require": {
"php": "^7.4 || ^8",
"friendsofphp/php-cs-fixer": "^3"
},
"require-dev": {
"phan/phan": "^5.4",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"AzuyaLabs\\PhpCsFixerConfig\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AzuyaLabs\\PhpCsFixerConfig\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
},
"scripts": {
"analyse": [
"@phpstan",
"@psalm"
],
"cs": "vendor/bin/php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix -v",
"phpstan": "vendor/bin/phpstan analyse",
"psalm": "vendor/bin/psalm --threads=2",
"test": "vendor/bin/phpunit"
}
}