-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 2.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
51
52
{
"name": "rotexsoft/leanorm",
"type": "library",
"description": "A Generic Data Objects ( https://github.com/rotexsoft/gdao ) implementation based on a stripped down version of idiorm (\\LeanOrm\\DBConnector). A light-weight, highly performant PHP data access library.",
"keywords": [ "orm", "lean", "lean orm", "lean database", "lean db", "db", "pdo", "mysql", "postgresql", "sqlite", "database", "sql", "table","data", "gateway", "table data gateway"],
"homepage": "https://github.com/rotexsoft/leanorm",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Rotimi Adegbamigbe",
"email": "rotexdegba007-leanorm@yahoo.ca",
"homepage": "https://github.com/rotexdegba",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"rotexsoft/gdao": "^3.0.1",
"aura/sqlquery": "^3.0.0",
"rotexsoft/sqlschema": "^3.1.1",
"psr/log": "^2.0.0 || ^3.0.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"php-coveralls/php-coveralls": "^2.7",
"vimeo/psalm": "^5.25.0",
"rector/rector": "^1.2.1",
"symfony/polyfill-php82": "^1.30",
"atlas/pdo": "^2.0.0",
"rotexsoft/versatile-collections": "^6.0"
},
"autoload": {
"classmap": ["src/"]
},
"autoload-dev": {
"classmap": ["src/", "demo/", "tests/"]
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit --coverage-text"
],
"rector-clear": "vendor/bin/rector --clear-cache",
"rector": "vendor/bin/rector process src --dry-run -vvv",
"psalm-clear-cache": "vendor/bin/psalm --clear-global-cache && vendor/bin/psalm --clear-cache",
"psalm": "composer psalm-clear-cache && vendor/bin/psalm --threads=1",
"qa": "composer test && composer rector && composer psalm"
},
"suggest": {
"rotexsoft/leanorm-cli": "A Command-line tool for rotexsoft/leanorm for generating Model, Record & Collection Classes for tables & views in a specified database."
}
}