forked from martin-georgiev/postgresql-for-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (80 loc) · 2.48 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
{
"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": "martin.georgiev@gmail.com",
"role": "author"
}
],
"autoload": {
"psr-4": {
"MartinGeorgiev\\": "src/MartinGeorgiev/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\MartinGeorgiev\\": "tests/MartinGeorgiev/"
}
},
"require": {
"php": "^7.2||^8.0",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
"doctrine/dbal": "~2.5"
},
"require-dev": {
"doctrine/orm": "~2.5",
"friendsofphp/php-cs-fixer": "^2.16",
"php-coveralls/php-coveralls": "^2.2",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^8.5||^9.5",
"qossmic/deptrac-shim": "^0.11"
},
"suggest": {
"doctrine/orm": "~2.5"
},
"scripts": {
"check-code-style": [
"php-cs-fixer fix --config='./ci/php-cs-fixer/config.php' --show-progress=none --dry-run --no-interaction --diff -v"
],
"check-security": [
"local-php-security-checker"
],
"fix-code-style": [
"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' --level=8 src/ tests/",
"deptrac analyze './ci/deptrac/config.yml' --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
}