-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (47 loc) · 1.05 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
{
"name": "eftec/pdooneorm",
"description": "Procedural PDO Data access class in a single Class",
"type": "library",
"keywords": [
"dao",
"php",
"pdo",
"orm"
],
"homepage": "https://github.com/EFTEC/PdoOneORM",
"authors": [
{
"name": "Jorge Castro Castillo",
"homepage": "https://github.com/EFTEC/"
}
],
"license": "LGPL-3.0-only",
"autoload": {
"psr-4": {
"eftec\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"eftec\\tests\\": "tests/",
"root\\": "/",
"eftec\\examples\\": "examples/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"eftec/clione": "^1.35",
"eftec/pdoone": "^4.12.1",
"ext-pdo": "*",
"ext-json": "*"
},
"bin": [
"lib/pdooneorm"
],
"suggest": {
"eftec/validationone": "For keeping and storing the messages"
},
"require-dev": {
"phpunit/phpunit": "^8.5.13"
}
}