-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 652 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "lisachenko/immutable-object",
"description": "Immutable object library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexander Lisachenko",
"email": "lisachenko.it@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"lisachenko/z-engine": "^0.7|^0.9"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5"
},
"autoload": {
"psr-4": {
"Immutable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Immutable\\": "tests/"
}
}
}