-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (41 loc) · 995 Bytes
/
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
{
"name": "atlas/pdo",
"type": "library",
"description": "Provides a PDO instance decorator with convenience methods, and a connection manager.",
"keywords": [
"pdo",
"sql",
"database",
"connection"
],
"homepage": "https://github.com/atlasphp/Atlas.Pdo",
"license": "MIT",
"authors": [
{
"name": "Atlas.Pdo Contributors",
"homepage": "https://github.com/atlasphp/Atlas.Pdo/contributors"
}
],
"require": {
"php": "^8.0"
},
"autoload": {
"psr-4": {
"Atlas\\Pdo\\": "src/"
}
},
"require-dev": {
"pds/skeleton": "^1.0",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^0.12.82"
},
"autoload-dev": {
"psr-4": {
"Atlas\\Pdo\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"stan": "./vendor/bin/phpstan analyze -c phpstan.neon src"
}
}