-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
88 lines (84 loc) · 2.82 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
{
"name": "martin-georgiev/postgresql-for-doctrine",
"type": "library",
"description": "Adds PostgreSQL enhancements to Doctrine. Provides support for JSON, JSONB and some array data types. Provides functions, operators and common expressions used when working with JSON data, arrays and features related to text search.",
"keywords": [
"martin georgiev",
"doctrine",
"postgresql",
"postgres",
"dbal",
"json",
"jsonb",
"text search",
"tsvector",
"array data types"
],
"license": "MIT",
"authors": [
{
"name": "Martin Georgiev",
"email": "[email protected]",
"role": "author"
}
],
"autoload": {
"psr-4": {
"MartinGeorgiev\\": "src/MartinGeorgiev/"
}
},
"autoload-dev": {
"psr-4": {
"Fixtures\\MartinGeorgiev\\": "fixtures/MartinGeorgiev/",
"Tests\\MartinGeorgiev\\": "tests/MartinGeorgiev/"
}
},
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
"doctrine/dbal": "~2.10||~3.0||~4.0"
},
"require-dev": {
"doctrine/orm": "~2.14||~3.0",
"ekino/phpstan-banned-code": "^1.0",
"friendsofphp/php-cs-fixer": "^3.65.0",
"php-coveralls/php-coveralls": "^2.7.0",
"phpstan/phpstan": "^1.12.11",
"phpstan/phpstan-phpunit": "^1.4.1",
"phpunit/phpunit": "^10.5.38",
"qossmic/deptrac": "^2.0.4",
"rector/rector": "^1.2.10",
"symfony/cache": "^6.4||^7.0"
},
"suggest": {
"php": "^8.3",
"doctrine/orm": "~2.14||~3.0"
},
"scripts": {
"check-code-style": [
"php-cs-fixer fix --config='./ci/php-cs-fixer/config.php' --show-progress=none --dry-run --no-interaction --diff -v",
"rector --config='./ci/rector/config.php' --ansi --no-progress-bar --dry-run"
],
"fix-code-style": [
"rector --config='./ci/rector/config.php' --ansi --no-progress-bar",
"php-cs-fixer fix --config='./ci/php-cs-fixer/config.php' --show-progress=none --no-interaction --diff -v"
],
"run-static-analysis": [
"phpstan analyse --configuration='./ci/phpstan/config.neon'",
"deptrac analyze --config-file='./ci/deptrac/config.yml' --cache-file='./ci/deptrac/.cache' --no-interaction --no-progress"
],
"run-tests": [
"phpunit --configuration='./ci/phpunit/config.xml'"
],
"run-tests-with-clover": [
"phpunit --configuration='./ci/phpunit/config.xml' --coverage-clover './build/logs/clover.xml'"
]
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"prefer-stable": true
}