-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 856 Bytes
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 856 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
33
34
35
36
37
{
"name": "acelot/struct",
"description": "Declarative structure builder with validator and automapper for PHP 7",
"keywords": ["struct", "structure", "model", "validated", "strongly-typed", "class", "dto", "value-object"],
"type": "library",
"homepage": "https://github.com/acelot/struct",
"license": "MIT",
"authors": [
{
"name": "Valeriy Protopopov",
"email": "provaleriy@gmail.com"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"acelot/automapper": "^1.1",
"acelot/helpers": "^1.0",
"respect/validation": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Acelot\\Struct\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Acelot\\Struct\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml"
}
}