-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
51 lines (51 loc) · 1.29 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
{
"name": "forrest79/phpgsql",
"description": "PostgreSQL library for PHP with fluent interface for SQL query writing.",
"keywords": ["php", "database", "postgresql", "fluent"],
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jakub Trmota",
"email": "jakub@trmota.cz"
}
],
"require": {
"php": "^8.1",
"ext-pgsql": "^8.1"
},
"require-dev": {
"forrest79/phpcs": "^1.6",
"forrest79/phpcs-ignores": "^0.5",
"forrest79/phpgsql-phpstan": "^1.7",
"nette/tester": "^2.5",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-strict-rules": "^1.6"
},
"suggest": {
"ext-json": "Needed to support parse JSON types from PostgreSQL"
},
"autoload": {
"psr-4": {
"Forrest79\\PhPgSql\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Forrest79\\PhPgSql\\Tests\\": "tests/",
"Forrest79\\PhPgSql\\Benchmarks\\": "benchmarks/"
}
},
"scripts": {
"tests": "tests/run-tests tests",
"coverage": "tests/collect-coverage tests",
"benchmarks": "benchmarks/run-benchmarks.php",
"phpcs": "vendor/bin/phpcs --bootstrap=vendor/forrest79/phpcs-ignores/src/bootstrap-outdated.php -s src tests benchmarks",
"phpstan": "vendor/bin/phpstan analyse src tests benchmarks"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}