-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.21 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
{
"name": "porthorian/pdo-wrapper",
"description": "A PDO Database wrapper for ease of use.",
"type": "library",
"license": "MIT",
"keywords": [
"php", "database", "database-pdo", "pdo-wrapper", "database-iterator"
],
"authors": [
{
"name": "Vinnie Marone",
"email": "vinnie.marone35@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"slevomat/coding-standard": "^7.2"
},
"autoload": {
"psr-4": {
"Porthorian\\PDOWrapper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Porthorian\\PDOWrapper\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"cover": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs --extensions=php -s",
"beautify": "vendor/bin/phpcbf --extensions=php -v"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}