-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
93 lines (93 loc) · 2.41 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
90
91
92
93
{
"name": "atk4/data",
"description": "Agile Data - Database access abstraction framework",
"license": "MIT",
"type": "library",
"keywords": [
"framework",
"orm",
"query",
"active record",
"sql",
"builder",
"nosql",
"mongodb",
"mysql",
"oracle",
"postgresql"
],
"version": "dev-develop",
"authors": [
{
"name": "Romans Malinovskis",
"homepage": "https://nearly.guru/"
},
{
"name": "Imants Horsts",
"homepage": "https://darkside.lv/"
},
{
"name": "Michael Voříšek",
"homepage": "https://mvorisek.cz/"
}
],
"homepage": "https://github.com/atk4/data",
"require": {
"php": ">=7.4 <8.4",
"atk4/core": "dev-develop",
"doctrine/dbal": "~3.5.1 || ~3.6.0",
"mvorisek/atk4-hintable": "~1.9.0"
},
"require-release": {
"php": ">=7.4 <8.4",
"atk4/core": "~5.3.0",
"doctrine/dbal": "~3.5.1 || ~3.6.0",
"mvorisek/atk4-hintable": "~1.9.0"
},
"require-dev": {
"doctrine/sql-formatter": "dev-1-5-php74 as 1.5.99",
"ergebnis/composer-normalize": "^2.13",
"ergebnis/phpunit-slow-test-detector": "^2.9",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.5.25 || ^10.0 || ^11.0"
},
"conflict": {
"doctrine/sql-formatter": "<1.5 || >=2.0"
},
"suggest": {
"doctrine/sql-formatter": "*"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/atk4/doctrine-sql-formatter.git",
"name": "doctrine/sql-formatter"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Atk4\\Data\\": "src/"
},
"files": [
"bootstrap-types.php"
]
},
"autoload-dev": {
"psr-4": {
"Atk4\\Data\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}