Skip to content

Commit 0c73a53

Browse files
committed
Fix default formatting of composer.json.
1 parent 5d41745 commit 0c73a53

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

composer.json

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
{
2-
"name": "crell/*",
3-
"homepage": "https://github.com/Crell/*",
4-
"license": "LGPL-3.0-or-later",
5-
"authors": [
6-
{
7-
"name": "Larry Garfield",
8-
"email": "[email protected]",
9-
"homepage": "http://www.garfieldtech.com/",
10-
"role": "Developer"
2+
"name": "crell/*",
3+
"homepage": "https://github.com/Crell/*",
4+
"license": "LGPL-3.0-or-later",
5+
"authors": [
6+
{
7+
"name": "Larry Garfield",
8+
"email": "[email protected]",
9+
"homepage": "http://www.garfieldtech.com/",
10+
"role": "Developer"
11+
}
12+
],
13+
"require": {
14+
"php": "~8.4"
15+
},
16+
"require-dev": {
17+
"phpunit/phpunit": "^12.5.2",
18+
"phpbench/phpbench": "^1.4.3",
19+
"phpmetrics/phpmetrics": "^2.9.1",
20+
"phpstan/phpstan": "^2.1.33"
21+
},
22+
"autoload": {
23+
"psr-4": {
24+
"Crell\\Foo\\": "src"
25+
}
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Crell\\Foo\\": "tests",
30+
"Crell\\Foo\\Benchmarks\\": "benchmarks"
31+
}
32+
},
33+
"scripts": {
34+
"benchmarks": "vendor/bin/phpbench run benchmarks --report=aggregate",
35+
"test": "phpunit",
36+
"phpstan": "phpstan",
37+
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-html=\"build/coverage\"",
38+
"metrics": "phpmetrics --report-html=build/metrics src",
39+
"all-checks": [
40+
"phpunit",
41+
"phpstan"
42+
]
43+
},
44+
"config": {
45+
"sort-packages": true
1146
}
12-
],
13-
"require": {
14-
"php": "~8.4"
15-
},
16-
"require-dev": {
17-
"phpunit/phpunit": "^12.5.2",
18-
"phpbench/phpbench": "^1.4.3",
19-
"phpmetrics/phpmetrics": "^2.9.1",
20-
"phpstan/phpstan": "^2.1.33"
21-
},
22-
"autoload": {
23-
"psr-4": {
24-
"Crell\\Foo\\": "src"
25-
}
26-
},
27-
"autoload-dev": {
28-
"psr-4": {
29-
"Crell\\Foo\\": "tests",
30-
"Crell\\Foo\\Benchmarks\\": "benchmarks"
31-
}
32-
},
33-
"scripts": {
34-
"benchmarks": "vendor/bin/phpbench run benchmarks --report=aggregate",
35-
"test": "phpunit",
36-
"phpstan": "phpstan",
37-
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --coverage-html=\"build/coverage\"",
38-
"metrics": "phpmetrics --report-html=build/metrics src",
39-
"all-checks": [
40-
"phpunit",
41-
"phpstan"
42-
]
43-
},
44-
"config": {
45-
"sort-packages": true
46-
}
4747
}

0 commit comments

Comments
 (0)