-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.18 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "vitexsoftware/ease-fluentpdo",
"description": "SQL/PDO support for Ease Framework based on FluentPDO",
"authors": [
{
"name": "Vitex",
"email": "info@vitexsoftware.cz"
}
],
"license": "MIT",
"type": "library",
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"vitexsoftware/ease-core": ">=1.50.0",
"vitexsoftware/fluentpdo": "^3.0.3"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.93",
"ergebnis/composer-normalize": "^2.49",
"ergebnis/php-cs-fixer-config": "^6.59",
"cakephp/migrations": "4.9.4"
},
"autoload": {
"psr-4": {
"Ease\\SQL\\": "src/Ease/SQL",
"Ease\\Logger\\": "src/Ease/Logger"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ease\\Local\\": "tests",
"Test\\Ease\\SQL\\": "tests/src/Ease/SQL"
}
},
"conflict": {
"vitexsoftware/ease-framework": "*"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}