-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathcomposer.json
105 lines (100 loc) · 3.01 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
94
95
96
97
98
99
100
101
102
103
104
105
{
"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": {
"deptrac/deptrac": "^3.0",
"doctrine/orm": "~2.14||~3.0",
"ekino/phpstan-banned-code": "^3.0",
"friendsofphp/php-cs-fixer": "^3.73.1",
"phpstan/phpstan": "^2.1.8",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-doctrine": "^2.0.2",
"phpstan/phpstan-phpunit": "^2.0.4",
"phpunit/phpunit": "^10.5.45",
"rector/rector": "^2.0.10",
"symfony/cache": "^6.4||^7.0"
},
"suggest": {
"php": "^8.3",
"doctrine/orm": "~2.14||~3.0"
},
"scripts": {
"deptrac": [
"deptrac analyze --config-file=./ci/deptrac/config.yml --cache-file=./ci/deptrac/.cache --no-interaction --no-progress"
],
"php-cs-fixer": [
"PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config=./ci/php-cs-fixer/config.php --show-progress=none --no-interaction --diff -v"
],
"phpstan": [
"phpstan analyse --configuration=./ci/phpstan/config.neon"
],
"phpunit": [
"XDEBUG_MODE=coverage phpunit --configuration=./ci/phpunit/config.xml"
],
"rector": [
"rector --config=./ci/rector/config.php --ansi --no-progress-bar"
],
"check-code-style": [
"@php-cs-fixer --dry-run",
"@rector --dry-run"
],
"fix-code-style": [
"@rector",
"@php-cs-fixer"
],
"run-static-analysis": [
"@phpstan",
"@deptrac"
],
"run-tests": [
"@phpunit"
],
"run-tests-with-clover": [
"@phpunit --coverage-clover=./var/logs/test-coverage/clover.xml"
]
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"prefer-stable": true
}