-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 761 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 761 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
{
"author": "Artur Kyryliuk",
"name": "elcreator/open-bkpr",
"license": "BSD-2-Clause",
"version": "0.0.1",
"require": {
"genkgo/camt": "^2.8",
"vanilla/garden-cli": "~4.0",
"guzzlehttp/guzzle": "^7.9",
"ext-dom": "*",
"vlucas/phpdotenv": "^5.6",
"vanilla/garden-container": "^4.1",
"phpdocumentor/reflection-docblock": "^5.6"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"analyze": "phpstan analyze",
"analyze-clear": "phpstan clear-result-cache && phpstan analyse",
"test": "vendor/bin/phpunit tests"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5"
}
}