-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.04 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.04 KB
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
{
"name": "bytic/database",
"type": "library",
"description": "Php Framework",
"homepage": "https://github.com/ByTIC/view",
"license": "MIT",
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"autoload": {
"psr-4": {
"Nip\\Database\\": "src"
},
"classmap": [
"legacy",
"src"
],
"files": [
]
},
"autoload-dev": {
"psr-4": {
"Nip\\Database\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-pdo": "*",
"ext-mysqli": "*",
"bytic/inflector": "^1.0|^2.0",
"bytic/cache": "^1.0|^2.0",
"bytic/collections": "^1.0|^2.0",
"bytic/profiler": "^1.0|^2.0"
},
"require-dev": {
"bytic/application": "^1.0|^2.0",
"bytic/container": "^0.9|^1.0|^2.0",
"bytic/config": "^0.9|^1.0|^2.0",
"bytic/phpqatools": "^1.0",
"bytic/phpqaconfig": "^1.0",
"mockery/mockery": "^1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}