-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.35 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
{
"name": "petk/normalizator",
"description": "Normalize files in Git repository",
"type": "project",
"keywords": [
"normalizator",
"standards",
"style"
],
"homepage": "https://github.com/petk/normalizator",
"license": "MIT",
"authors": [
{
"name": "Peter Kokot",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-phar": "*",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/simple-cache": "^3.0",
"symfony/console": "^7.0"
},
"require-dev": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"mikey179/vfsstream": "^1.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.1",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"Normalizator\\": "src/",
"Normalizator\\CLI\\": "bin/"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Normalizator\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"bin": "bin/normalizator"
}