-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 831 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 831 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
{
"name": "arawa/workspace",
"description": "It's an interface to manage groupfolders with a group manage.",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Baptiste Fotia"
},
{
"name": "Cyrille Bollu"
}
],
"require": {
"php": ">=7.4 <=8.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"nextcloud/coding-standard": "^1.1",
"nextcloud/ocp": "^30.0",
"symfony/console": "^6.3",
"mockery/mockery": "^1.6",
"nextcloud/openapi-extractor": "^1.0"
},
"scripts": {
"test": "phpunit -c tests/phpunit.unit.xml --fail-on-warning",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"openapi": "generate-spec"
}
}