-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.8 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
{
"name": "rotexsoft/gdao",
"type": "library",
"description": "A package containing class and interface definitions that can be used as a basis for a Table Data Gateway (http://bit.ly/1F8Zjfc) and Data Mapper (http://bit.ly/1hD2qCc) implementation of a database access library that performs data manipulation (DM) tasks.",
"keywords": [ "orm", "db", "pdo", "mysql", "postgresql", "sqlite", "database", "sql", "table","data", "gateway", "table-data-gateway", "table data gateway", "data", "mapper", "data-mapper", "data mapper"],
"homepage": "https://github.com/rotexsoft/gdao",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Rotimi Adegbamigbe",
"email": "rotexdegba007-gdao@yahoo.ca",
"homepage": "https://github.com/rotexdegba",
"role": "Developer"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"php-coveralls/php-coveralls": "^2.0",
"vimeo/psalm": "^5.4.0",
"rector/rector": "^1.0.0"
},
"autoload": {
"classmap": ["src/"]
},
"autoload-dev": {
"classmap": ["src/", "tests/"]
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-text",
"rector": "vendor/bin/rector process src --dry-run -vvv",
"rector-clear": "vendor/bin/rector --clear-cache",
"psalm": "vendor/bin/psalm --threads=1",
"psalm-clear-cache": "vendor/bin/psalm --clear-global-cache && vendor/bin/psalm --clear-cache",
"qa": "composer test && composer rector && composer psalm-clear-cache && composer psalm"
},
"suggest": {
"rotexsoft/leanorm": "A Concrete Implementation of the Abstract Classes and Interfaces in rotexsoft/gdao. A light weight data-access / ORM library."
}
}