Skip to content

Commit 03083ff

Browse files
committed
Init composer package definition
1 parent 3f30b98 commit 03083ff

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

composer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "lisachenko/immutable-object",
3+
"description": "Immutable object library",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Alexander Lisachenko",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"minimum-stability": "stable",
13+
"require": {
14+
"php": ">=7.2.0"
15+
},
16+
"require-dev": {
17+
"phpunit/phpunit": "^7.5"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"Immutable\\": "src/"
22+
}
23+
},
24+
"autoload-dev": {
25+
"psr-4": {
26+
"Immutable\\": "tests/"
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)