forked from nextcloud/recognize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 771 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 771 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
{
"require": {
"symfony/process": "^5.2",
"ext-json": "*",
"php": ">=7.4",
"rubix/ml": "^2.0"
},
"autoload": {
"psr-4": {
"OCA\\Recognize\\": "lib/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"nextcloud/coding-standard": "^1",
"phpunit/phpunit": "^9.5",
"psalm/phar": "^4.3",
"nextcloud/ocp": "dev-master"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm.phar"
},
"config": {
"platform": {
"php": "7.4"
}
}
}