-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.32 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.32 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
50
{
"name": "devtheorem/peachy-sql",
"description": "A high-performance query builder and runner for PHP",
"license": "MIT",
"keywords": [
"database",
"MySQL",
"PostgreSQL",
"SQL Server",
"sqlsrv"
],
"authors": [
{
"name": "Theodore Brown",
"email": "theodorejb@outlook.com"
}
],
"require": {
"php": ">=8.2",
"ext-pdo": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.91",
"phpstan/phpstan": "^2.1.32",
"phpunit/phpunit": "^11.5",
"ramsey/uuid": "^4.9"
},
"autoload": {
"psr-4": {
"DevTheorem\\PeachySQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevTheorem\\PeachySQL\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"analyze": "phpstan analyze",
"cs-fix": "php-cs-fixer fix -v",
"test": "phpunit tests --bootstrap tests/bootstrap.php",
"test-mssql": "@test --exclude-group mysql --exclude-group pgsql",
"test-mysql": "@test --exclude-group mssql --exclude-group pgsql",
"test-pgsql": "@test --exclude-group mssql --exclude-group mysql",
"test-without-mssql": "@test --exclude-group mssql"
}
}