-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) 路 2.35 KB
/
Copy pathcomposer.json
File metadata and controls
91 lines (91 loc) 路 2.35 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "eliashaeussler/gitattributes",
"description": "Parser for .gitattributes files in an object-oriented way",
"license": "GPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Elias H盲u脽ler",
"email": "elias@haeussler.dev",
"homepage": "https://haeussler.dev",
"role": "Maintainer"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"symfony/filesystem": "^6.4 || ^7.0 || ^8.0",
"symfony/finder": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"armin/editorconfig-cli": "^2.0",
"eliashaeussler/php-cs-fixer-config": "^3.0",
"eliashaeussler/phpstan-config": "^4.0",
"eliashaeussler/rector-config": "^4.0",
"ergebnis/composer-normalize": "^2.30",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.4 || ^12.0 || ^13.0",
"shipmonk/composer-dependency-analyser": "^1.8"
},
"autoload": {
"psr-4": {
"EliasHaeussler\\Gitattributes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EliasHaeussler\\Gitattributes\\Tests\\": "tests/src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@check:deps",
"@check:refactor",
"@check:static",
"@check:style"
],
"check:deps": "composer-dependency-analyser",
"check:refactor": [
"@check:refactor:php"
],
"check:refactor:php": "@refactor:php --dry-run",
"check:static": "phpstan analyse -c build/checks/phpstan.php",
"check:style": [
"@check:style:composer",
"@check:style:editorconfig",
"@check:style:php"
],
"check:style:composer": "@fix:composer --dry-run",
"check:style:editorconfig": "ec",
"check:style:php": "@fix:php --dry-run",
"ci": [
"@composer validate --strict",
"@composer audit",
"@check:deps",
"@check:refactor",
"@check:static --error-format github",
"@check:style"
],
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": "@composer normalize",
"fix:editorconfig": "@check:style:editorconfig --fix",
"fix:php": "php-cs-fixer fix --config build/checks/.php-cs-fixer.php",
"refactor": [
"@refactor:php"
],
"refactor:php": "rector process -c build/checks/rector.php",
"test": "@test:coverage --no-coverage",
"test:coverage": "phpunit -c build/tests/phpunit.xml"
}
}