-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 803 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 803 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
{
"name": "byjg/micro-orm",
"description": "A micro framework for create a very simple decoupled ORM. This library intended to be very small and very simple to use",
"autoload": {
"psr-4": {
"ByJG\\MicroOrm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.3 <8.6",
"ext-json": "*",
"ext-pdo": "*",
"byjg/anydataset-db": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5|^11.5",
"byjg/cache-engine": "^6.0",
"vimeo/psalm": "^5.9|^6.13"
},
"suggest": {
"ext-curl": "*",
"ext-pdo_mysql": "*"
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --threads=1"
},
"license": "MIT"
}