-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.16 KB
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 1.16 KB
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
{
"name": "software-by-design/nextcloud-budgetcheck",
"description": "Scoped household and project finance for Nextcloud",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Alexander Mäule",
"email": "info@software-by-design.de"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"nextcloud/ocp": "^32.0 || ^33.0",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"OCA\\BudgetCheck\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\BudgetCheck\\Tests\\": "tests/",
"OCP\\": "vendor/nextcloud/ocp/OCP/",
"NCU\\": "vendor/nextcloud/ocp/NCU/"
}
},
"scripts": {
"test": "php -d opcache.enable=0 -d opcache.enable_cli=0 vendor/bin/phpunit -c phpunit.xml",
"test:unit": "php -d opcache.enable=0 -d opcache.enable_cli=0 vendor/bin/phpunit --testsuite unit",
"test:integration": "php -d opcache.enable=0 -d opcache.enable_cli=0 vendor/bin/phpunit --testsuite integration",
"mutate:closeout": "php tests/Mutation/run-closeout-mutations.php",
"mutate:rate-limit-key": "php tests/Mutation/run-rate-limit-key-length-mutations.php"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}