-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (31 loc) · 775 Bytes
/
composer.json
File metadata and controls
32 lines (31 loc) · 775 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
31
32
{
"name": "prewk/record",
"description": "Immutable validatable record",
"homepage": "http://github.com/prewk/record",
"type": "library",
"keywords": ["immutable", "record"],
"support": {
"issues": "http://github.com/prewk/record/issues",
"source": "http://github.com/prewk/record"
},
"license": "MIT",
"authors": [
{
"name": "Oskar Thornblad",
"email": "oskar.thornblad@gmail.com",
"homepage": "https://www.oskarthornblad.se"
}
],
"require": {
"php": ">=7.0"
},
"autoload": {
"psr-4": {
"Prewk\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^6",
"satooshi/php-coveralls": "^1.0"
}
}