-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.27 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": "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": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-pdo": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.19",
"ramsey/uuid": "^4.2.3",
"vimeo/psalm": "^5.26"
},
"autoload": {
"psr-4": {
"DevTheorem\\PeachySQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevTheorem\\PeachySQL\\Test\\": "test/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"analyze": "psalm",
"cs-fix": "php-cs-fixer fix -v",
"test": "phpunit",
"test-mssql": "phpunit --exclude-group mysql,pgsql",
"test-mysql": "phpunit --exclude-group mssql,pgsql",
"test-pgsql": "phpunit --exclude-group mssql,mysql",
"test-without-mssql": "phpunit --exclude-group mssql"
}
}