-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 925 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 925 Bytes
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
{
"name": "aportela/db-browser-wrapper",
"description": "Custom php (pdo) database element browsing wrapper ",
"type": "library",
"license": "AGPL-3.0-only",
"authors": [
{
"name": "alex",
"email": "[email protected]"
}
],
"homepage": "https://github.com/aportela/db-browser-wrapper",
"autoload": {
"psr-4": {
"aportela\\DatabaseBrowserWrapper\\": "src"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=8.4",
"aportela/db-wrapper": "^3.0",
"psr/log": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.91",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5",
"rector/rector": "^2.2"
},
"scripts": {
"test": "vendor/bin/phpunit --testdox",
"fix": "vendor/bin/php-cs-fixer fix",
"stan": "vendor/bin/phpstan analyse -c phpstan.neon",
"rector": "vendor/bin/rector process"
}
}