-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.34 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.34 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
47
48
49
{
"name": "silverorange/mdb2_driver_pgsql",
"description": "This is the PostgreSQL MDB2 driver.",
"type": "library",
"keywords": [
"database",
"orm",
"postgresql",
"postgres"
],
"homepage": "https://github.com/silverorange/MDB2_Driver_pgsql",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Michael Gauthier",
"email": "mike@silverorange.com"
}
],
"require": {
"php": ">=5.4",
"ext-mbstring": "*",
"ext-pgsql": "*",
"pear/pear-core-minimal": "^1.9.0",
"silverorange/mdb2": "^3.1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64.0",
"phpstan/phpstan": "^1.12",
"rector/rector": "^1.2"
},
"scripts": {
"phpcs": "./vendor/bin/php-cs-fixer check -v",
"phpcs:ci": "./vendor/bin/php-cs-fixer check --config=.php-cs-fixer.php --no-interaction --show-progress=none --diff --using-cache=no -vvv",
"phpcs:write": "./vendor/bin/php-cs-fixer fix -v",
"phpstan": "./vendor/bin/phpstan analyze",
"phpstan:ci": "./vendor/bin/phpstan analyze -vvv --no-progress --memory-limit 2G",
"phpstan:baseline": "./vendor/bin/phpstan analyze --generate-baseline",
"rector": "./vendor/bin/rector --dry-run",
"rector:write": "./vendor/bin/rector"
},
"autoload": {
"classmap": [
"MDB2/"
]
},
"config": {
"sort-packages": true
}
}