Skip to content

Commit de7af15

Browse files
committed
chore: Normalize composer.json.
1 parent c6efc4c commit de7af15

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

composer.json

+21-20
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,39 @@
11
{
22
"name": "loophp/phptree",
3-
"type": "library",
43
"description": "An implementation of tree data structure",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"tree",
78
"php",
89
"data structure",
910
"binary tree"
1011
],
11-
"license": "MIT",
1212
"authors": [
1313
{
1414
"name": "Pol Dellaiera",
1515
"email": "[email protected]"
1616
}
1717
],
18+
"support": {
19+
"issues": "https://github.com/loophp/phptree/issues",
20+
"source": "https://github.com/loophp/phptree"
21+
},
22+
"funding": [
23+
{
24+
"type": "github",
25+
"url": "https://github.com/drupol"
26+
},
27+
{
28+
"type": "paypal",
29+
"url": "https://www.paypal.me/drupol"
30+
}
31+
],
1832
"require": {
1933
"php": ">= 7.1"
2034
},
2135
"require-dev": {
36+
"drupol/launcher": "^2.2",
2237
"drupol/php-conventions": "^5",
2338
"drupol/phpmerkle": "^2.2",
2439
"friends-of-phpspec/phpspec-code-coverage": "^5",
@@ -30,9 +45,6 @@
3045
"nikic/php-parser": "^4",
3146
"phpspec/phpspec": "^7"
3247
},
33-
"config": {
34-
"sort-packages": true
35-
},
3648
"autoload": {
3749
"psr-4": {
3850
"loophp\\phptree\\": "src/"
@@ -45,24 +57,13 @@
4557
"spec\\loophp\\phptree\\": "spec/loophp/phptree/"
4658
}
4759
},
60+
"config": {
61+
"sort-packages": true
62+
},
4863
"scripts": {
4964
"changelog-unreleased": "docker-compose run auto_changelog -c .auto-changelog -u",
5065
"changelog-version": "docker-compose run auto_changelog -c .auto-changelog -v",
5166
"grumphp": "./vendor/bin/grumphp run",
5267
"infection": "./vendor/bin/infection run -j 1"
53-
},
54-
"support": {
55-
"issues": "https://github.com/loophp/phptree/issues",
56-
"source": "https://github.com/loophp/phptree"
57-
},
58-
"funding": [
59-
{
60-
"type": "github",
61-
"url": "https://github.com/drupol"
62-
},
63-
{
64-
"type": "paypal",
65-
"url": "https://www.paypal.me/drupol"
66-
}
67-
]
68+
}
6869
}

0 commit comments

Comments
 (0)