-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (40 loc) · 1.21 KB
/
composer.json
File metadata and controls
42 lines (40 loc) · 1.21 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": "nextcloud/nextcloud-theme",
"description": "Nextcloud wordpress theme",
"license": "AGPL",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "7.4"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"geoip2/geoip2": "~2.0",
"predis/predis": "^1.1"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"psalm": "psalm",
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"psalm:update-baseline": "psalm --threads=1 --update-baseline",
"post-install-cmd": "@update-data-files",
"post-update-cmd": "@update-data-files"
},
"require-dev": {
"nextcloud/coding-standard": "^1.0.0",
"vimeo/psalm": "^4.23",
"php-stubs/wordpress-stubs": "^6.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"EmailValidation\\": "emailValidator/src/",
"EmailValidation\\Tests\\": "emailValidator/tests"
}
}
}