-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 815 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 815 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": "liamhackett/valueobjectcompiler",
"description": "Compile strict type, read only value objects from JSON",
"type": "library",
"autoload": {
"psr-4": {
"LiamH\\ValueObjectCompiler\\": "src/"
}
},
"authors": [
{
"name": "Liam Hackett"
}
],
"require": {
"php": "^8.2||^8.3",
"symfony/console": "*",
"symfony/process": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.10",
"doctrine/coding-standard": "^12.0",
"phpunit/phpunit": "^10.4",
"php-coveralls/php-coveralls": "^2.7.0"
},
"bin": ["valueobjectcompiler"],
"config": {
"allow-plugins": false
},
"license": "BSD-3-Clause"
}