-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.35 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
{
"name": "particlebits/pdo",
"description": "Smallest possible PDO database while being super useful",
"type": "library",
"keywords": [
"micro pdo",
"tiny pdo",
"pdo",
"database"
],
"homepage": "https://github.com/particlebits/pdo",
"license": "MIT",
"authors": [
{
"name": "Mike Gioia",
"homepage": "https://particlebits.com",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Fabian de Laender",
"email": "[email protected]",
"homepage": "http://faapz.nl",
"role": "Original Developer"
}
],
"support": {
"issues": "https://github.com/particlebits/pdo/issues",
"docs": "https://github.com/particlebits/pdo/blob/master/docs/README.md"
},
"require": {
"php": ">= 5.6",
"ext-pdo": "*"
},
"scripts": {
"fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix",
"lint": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"phpstan": "tools/phpstan/vendor/bin/phpstan --memory-limit=1G analyse",
"phpstan-strict": "tools/phpstan/vendor/bin/phpstan --memory-limit=1G --level=6 analyse"
},
"autoload": {
"psr-4": {
"Pb\\PDO\\": "src/"
}
}
}