forked from paragonie/easydb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.92 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "paragonie/easydb",
"description": "Easy-to-use database abstraction",
"keywords": [
"database",
"PDO",
"sql",
"security"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Scott Arciszewski",
"email": "scott@paragonie.com",
"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": "info@paragonie.com",
"source": "https://github.com/paragonie/easydb"
},
"autoload": {
"psr-4": {
"ParagonIE\\EasyDB\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\EasyDB\\Tests\\": "tests"
}
},
"require": {
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^5",
"spatie/7to5": "^1.0",
"squizlabs/php_codesniffer": "^2.7",
"vimeo/psalm": "^1.0"
},
"scripts": {
"php5ize": [
"php7to5 convert --overwrite --copy-all -- src/ src-php5/",
"php7to5 convert --overwrite --copy-all -- tests/ tests-php5/",
"rm -rf src && mv src-php5 src",
"rm -rf tests && mv tests-php5 tests"
],
"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"
}
}