-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
50 lines (49 loc) · 1 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
{
"name": "eftec/pdoone",
"description": "Minimaist procedural PDO wrapper library",
"type": "library",
"keywords": [
"php",
"pdo",
"mysql",
"oracle",
"sqlserver"
],
"homepage": "https://github.com/EFTEC/PdoOne",
"authors": [
{
"name": "Jorge Castro Castillo",
"homepage": "https://github.com/EFTEC/"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"eftec\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"eftec\\tests\\": "tests/",
"eftec\\examples\\": "examples/"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"eftec/clione": "^1.33",
"ext-pdo": "*",
"ext-readline": "*",
"eftec/messagecontainer": "^2.9"
},
"bin": [
"lib/pdoonecli"
],
"suggest": {
"eftec/pdooneorm": "The ORM extension for PdoOne",
"eftec/validationone": "For keeping and storing the messages"
},
"require-dev": {
"phpunit/phpunit": "^8.5.36"
}
}