Skip to content

Commit 613e77a

Browse files
committed
composer-normalize
1 parent cd76901 commit 613e77a

File tree

1 file changed

+19
-16
lines changed

1 file changed

+19
-16
lines changed

composer.json

+19-16
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
11
{
22
"name": "myclabs/deep-copy",
3-
"type": "library",
43
"description": "Create deep copies (clones) of your objects",
5-
"keywords": ["clone", "copy", "duplicate", "object", "object graph"],
64
"license": "MIT",
7-
5+
"type": "library",
6+
"keywords": [
7+
"clone",
8+
"copy",
9+
"duplicate",
10+
"object",
11+
"object graph"
12+
],
13+
"require": {
14+
"php": "^7.1 || ^8.0"
15+
},
16+
"require-dev": {
17+
"doctrine/collections": "^1.0",
18+
"doctrine/common": "^2.6",
19+
"phpunit/phpunit": "^7.1"
20+
},
21+
"replace": {
22+
"myclabs/deep-copy": "self.version"
23+
},
824
"autoload": {
925
"psr-4": {
1026
"DeepCopy\\": "src/DeepCopy/"
@@ -19,19 +35,6 @@
1935
"DeepCopyTest\\": "tests/DeepCopyTest/"
2036
}
2137
},
22-
23-
"require": {
24-
"php": "^7.1 || ^8.0"
25-
},
26-
"require-dev": {
27-
"doctrine/collections": "^1.0",
28-
"doctrine/common": "^2.6",
29-
"phpunit/phpunit": "^7.1"
30-
},
31-
"replace": {
32-
"myclabs/deep-copy": "self.version"
33-
},
34-
3538
"config": {
3639
"sort-packages": true
3740
}

0 commit comments

Comments
 (0)