-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathcomposer.json
89 lines (89 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "atk4/data",
"type": "library",
"description": "Agile Data - Database access abstraction framework",
"keywords": [
"framework",
"orm",
"query",
"active record",
"sql",
"builder",
"nosql",
"mongodb",
"mysql",
"oracle",
"postgresql"
],
"homepage": "https://github.com/atk4/data",
"version": "dev-develop",
"license": "MIT",
"authors": [
{
"name": "Romans Malinovskis",
"email": "romans@agiletoolkit.org",
"homepage": "https://nearly.guru/"
},
{
"name": "Imants Horsts",
"homepage": "https://darkside.lv/"
},
{
"name": "Michael Voříšek",
"homepage": "https://mvorisek.cz/"
}
],
"require": {
"php": ">=7.4.0",
"ext-intl": "*",
"ext-pdo": "*",
"atk4/core": "dev-develop",
"doctrine/dbal": "^2.10 || ^3.0",
"mahalux/atk4-hintable": "~1.3.1"
},
"require-release": {
"php": ">=7.4.0",
"ext-intl": "*",
"ext-pdo": "*",
"atk4/core": "~3.0.0",
"doctrine/dbal": "^2.10 || ^3.0",
"mahalux/atk4-hintable": "~1.3.1"
},
"conflict": {
"atk4/dsql": "*",
"atk4/schema": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.13",
"friendsofphp/php-cs-fixer": "^3.0",
"johnkary/phpunit-speedtrap": "^3.2",
"phpstan/phpstan": "^0.12.82",
"phpunit/phpcov": "*",
"phpunit/phpunit": ">=9.3"
},
"suggest": {
"jdorn/sql-formatter": "*"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Atk4\\Data\\": "src/",
"Atk4\\Dsql\\": "src-dsql/",
"Atk4\\Schema\\": "src-schema/"
},
"files": [
"bootstrap-atk-types.php"
]
},
"autoload-dev": {
"psr-4": {
"Atk4\\Data\\Tests\\": "tests/",
"Atk4\\Dsql\\Tests\\": "tests-dsql/",
"Atk4\\Schema\\Tests\\": "tests-schema/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}