-
Notifications
You must be signed in to change notification settings - Fork 103
/
composer.json
53 lines (53 loc) · 1.36 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
{
"name": "faapz/pdo",
"description": "Just another PDO database library",
"type": "library",
"keywords": ["pdo", "sql", "database"],
"homepage": "https://github.com/FaaPz/PDO",
"license": "MIT",
"authors": [
{
"name": "Fabian de Laender",
"email": "fabian@faapz.productions",
"homepage": "https://faapz.productions",
"role": "Owner"
},
{
"name": "Alexander Barker",
"email": "alex@1stleg.com",
"homepage": "https://github.com/kwhat/",
"role": "Collaborator"
}
],
"support": {
"issues": "https://github.com/FaaPz/PDO/issues",
"docs": "https://github.com/FaaPz/PDO/blob/master/docs/README.md"
},
"require": {
"php": ">=7.2.0",
"ext-pdo": "*"
},
"require-dev": {
"phan/phan": "^5",
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"FaaPz\\PDO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FaaPz\\PDO\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"lint": [
"phpcs -s --standard=phpcs.xml",
"phan"
],
"test": "phpunit -v --coverage-html build/coverage tests/"
}
}