Skip to content

Commit f2ffa30

Browse files
authored
chore: normalize composer.json files (#673)
1 parent 5065dd5 commit f2ffa30

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

composer.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"name": "php-standard-library/dict",
33
"description": "Functions for creating and transforming associative arrays with preserved keys",
4-
"type": "library",
54
"license": "MIT",
6-
"homepage": "https://php-standard-library.dev",
5+
"type": "library",
76
"keywords": [
87
"dict",
98
"array",
@@ -20,10 +19,21 @@
2019
"homepage": "https://github.com/php-standard-library/php-standard-library/graphs/contributors"
2120
}
2221
],
22+
"homepage": "https://php-standard-library.dev",
2323
"require": {
2424
"php": "~8.4.0 || ~8.5.0",
2525
"php-standard-library/foundation": "^6.0"
2626
},
27+
"require-dev": {
28+
"php-standard-library/collection": "^6.0",
29+
"php-standard-library/iter": "^6.0",
30+
"php-standard-library/str": "^6.0",
31+
"php-standard-library/vec": "^6.0",
32+
"phpunit/phpunit": "^13.0"
33+
},
34+
"conflict": {
35+
"azjezz/psl": "*"
36+
},
2737
"minimum-stability": "dev",
2838
"autoload": {
2939
"psr-4": {
@@ -33,24 +43,14 @@
3343
"src/Psl/bootstrap.php"
3444
]
3545
},
36-
"extra": {
37-
"branch-alias": {
38-
"dev-next": "6.0.x-dev"
39-
}
40-
},
41-
"require-dev": {
42-
"phpunit/phpunit": "^13.0",
43-
"php-standard-library/str": "^6.0",
44-
"php-standard-library/vec": "^6.0",
45-
"php-standard-library/collection": "^6.0",
46-
"php-standard-library/iter": "^6.0"
47-
},
4846
"autoload-dev": {
4947
"psr-4": {
5048
"Psl\\Dict\\Tests\\Unit\\": "tests/unit/"
5149
}
5250
},
53-
"conflict": {
54-
"azjezz/psl": "*"
51+
"extra": {
52+
"branch-alias": {
53+
"dev-next": "6.0.x-dev"
54+
}
5555
}
5656
}

0 commit comments

Comments
 (0)