forked from paragonie/easydb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.78 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "paragonie/easydb",
"description": "Easy-to-use database abstraction",
"keywords": [
"database",
"PDO",
"sql",
"security"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Scott Arciszewski",
"email": "[email protected]",
"homepage": "https://paragonie.com",
"role": "Developer"
},
{
"name": "Woody Gilk",
"homepage": "https://github.com/shadowhand",
"role": "Contributor"
},
{
"name": "SignpostMarv",
"homepage": "https://github.com/SignpostMarv",
"role": "Contributor"
}
],
"support": {
"issues": "https://github.com/paragonie/easydb/issues",
"email": "[email protected]",
"source": "https://github.com/paragonie/easydb"
},
"autoload": {
"psr-4": {
"ParagonIE\\EasyDB\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\EasyDB\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": "^7|^8",
"ext-pdo": "*",
"paragonie/corner": "^1|^2"
},
"require-dev": {
"phpunit/phpunit": "^6|^7|^8|^9",
"psalm/plugin-phpunit": "<1",
"squizlabs/php_codesniffer": "^3",
"vimeo/psalm": "^3|^4"
},
"scripts": {
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}