-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.87 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
71
72
{
"name": "lkrms/pretty-php",
"description": "The opinionated PHP code formatter",
"license": "MIT",
"authors": [
{
"name": "Luke Arms",
"email": "luke@linacreative.com"
}
],
"support": {
"issues": "https://github.com/lkrms/pretty-php/issues",
"source": "https://github.com/lkrms/pretty-php"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-tokenizer": "*",
"composer-runtime-api": "^2.2",
"salient/cli": "^0.99",
"salient/collections": "^0.99",
"salient/console": "^0.99",
"salient/contracts": "^0.99",
"salient/core": "^0.99",
"salient/phpdoc": "^0.99",
"salient/polyfills": "^0.99",
"salient/utils": "^0.99",
"sebastian/diff": "^4 || ^5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"nikic/php-parser": "^5",
"phpstan/extension-installer": "^1",
"phpstan/phpstan": "^2",
"phpstan/phpstan-deprecation-rules": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpunit/phpunit": "^9",
"salient/phpstan": "^0.99",
"salient/sli": "^0.99",
"salient/testing": "^0.99"
},
"autoload": {
"psr-4": {
"Lkrms\\PrettyPHP\\": "src/"
},
"files": [
"bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Lkrms\\PrettyPHP\\Tests\\": [
"tests/unit/",
"tests/integration/"
]
}
},
"bin": [
"bin/pretty-php"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4.33"
},
"sort-packages": true
}
}