-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.22 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
{
"name": "mathsgod/r-db",
"description": "A lightweight orm library for mysql",
"autoload": {
"psr-4": {
"R\\DB\\": "src"
},
"files": [
"function.php"
]
},
"require": {
"php": ">=8.0",
"ext-pdo": "*",
"laminas/laminas-db": "^2.18",
"laminas/laminas-hydrator": "^4.2",
"psr/event-dispatcher": "^1.0",
"symfony/validator": "^5.3",
"doctrine/annotations": "^1.13",
"league/event": "^3.0",
"symfony/cache": "^5 | ^6.0",
"laminas/laminas-paginator": "^2.11",
"vlucas/phpdotenv": "^5.4",
"psr/container": "*",
"illuminate/collections": "^9.52|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"thecodingmachine/graphqlite": "^5.0 | ^6.0",
"league/container": "^4.2",
"phpstan/phpstan": "^2.0"
},
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Raymond Chong"
}
],
"scripts": {
"test": "phpunit --bootstrap tests\\Testing.php tests",
"test81": "php81 ./vendor/bin/phpunit --bootstrap tests\\Testing.php tests"
}
}