-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.17 KB
/
composer.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "falseclock/dbd-php-entity",
"type": "library",
"version": "3.1.6",
"description": "DTO like library to fetch any data in an Object-Oriented manner (ORM)",
"keywords": [
"dbd",
"entity",
"primitive",
"database",
"ORM",
"annotation",
"view",
"table",
"constraint",
"mapping",
"DTO"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Nurlan Mukhanov",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"myclabs/php-enum": "^1.8.4"
},
"require-dev": {
"phpunit/phpunit": "^11.2.8",
"php-coveralls/php-coveralls": "^v2.7.0"
},
"autoload": {
"psr-4": {
"DBD\\": "src/DBD/"
}
},
"autoload-dev": {
"psr-4": {
"DBD\\": "tests/DBD/"
},
"files": [
"tests/DBD/Entity/Tests/Entities/PersonBase.php",
"tests/DBD/Entity/Tests/Entities/Address.php",
"tests/DBD/Entity/Tests/Entities/Embedded/Street.php",
"tests/DBD/Entity/Tests/Entities/Embedded/StreetWithZipCode.php",
"tests/DBD/Entity/Tests/Entities/Embedded/ZipCode.php",
"tests/DBD/Entity/Tests/Entities/Embedded/Region.php"
]
}
}