-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.81 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
{
"name": "rotexsoft/leanorm-cli",
"type": "library",
"description": "Command-line tool for rotexsoft/leanorm for generating Model, Record & Collection Classes for tables in a specified database.",
"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-cli",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Rotimi Adegbamigbe",
"email": "rotexdegba007-leanorm@yahoo.ca",
"homepage": "https://github.com/rotexdegba",
"role": "Developer"
}
],
"require": {
"php": ">=8.1.0",
"atlas/info": "^1.2.0",
"rotexsoft/sqlschema": "^3.1.1",
"icanboogie/inflector": "^v2.2.0",
"symfony/polyfill-php82": "^1.26",
"symfony/polyfill-php83": "^1.29"
},
"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": [
"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": "vendor/bin/psalm --threads=1",
"qa": "composer test && composer rector && composer psalm",
"gen-test-pdo-config": "@php -r \"file_exists('./tests/pdo.php') || copy('./pdo-dist.php', './tests/pdo.php');\""
},
"bin": [
"bin/generate-leanorm-classes.php"
]
}