forked from FirebirdSQL/php-firebird
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·40 lines (40 loc) · 972 Bytes
/
composer.json
File metadata and controls
executable file
·40 lines (40 loc) · 972 Bytes
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
{
"name": "satwareag/php-firebird",
"description": "PHP Firebird database extension — native fbird_* API for PHP 8.2+",
"type": "php-ext",
"license": "PHP-3.01",
"authors": [
{
"name": "satware AG",
"email": "info@satware.com",
"homepage": "https://satware.com"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload": {
"psr-4": {
"Firebird\\": "src/Firebird/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.2.0"
}
},
"scripts": {
"phpstan": "phpstan analyse --configuration=phpstan.neon",
"phpcs": "phpcs --standard=PSR12 src/",
"qa:php": [
"@phpstan",
"@phpcs"
]
}
}