-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.05 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
{
"name": "gravatalonga/driver-manager",
"description": "Driver manager is a class responsible to hold information to configure another objects, for example, database connections, logs configurations, etc",
"type": "library",
"keywords": ["config manager", "manager", "configuration", "driver configuration", "drivers", "settings"],
"require-dev": {
"phpstan/phpstan": "^0.12.83",
"friendsofphp/php-cs-fixer": "^2.18",
"phpunit/phpunit": "^9",
"infection/infection": "^0.21.5",
"phly/keep-a-changelog": "^2.11"
},
"autoload": {
"psr-4": {
"Gravatalonga\\DriverManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Jonathan Fontes",
"email": "[email protected]"
}
],
"scripts": {
"phpstan": "phpstan analyze -l max src",
"csfixer": "php-cs-fixer fix src",
"test": "phpunit"
}
}