-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.21 KB
/
composer.json
File metadata and controls
44 lines (44 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
43
44
{
"name": "nextcloud/user_saml",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.1.32"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all install --ansi"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all update --ansi"
],
"cs:fix": "@php php-cs-fixer fix",
"cs:check": "@php php-cs-fixer fix --dry-run --diff",
"psalm": "@php psalm",
"psalm:fix": "@php psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType,MissingOverrideAttribute",
"psalm:update-baseline": "@php psalm --threads=1 --update-baseline",
"lint": "find . -name \\*.php -not -path '*/vendor/*' -print0 | xargs -0 -n1 php -l",
"rector:check": "rector --dry-run",
"rector:fix": "rector",
"test:unit": "phpunit -c tests/unit/phpunit.xml"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"bamarni/composer-bin-plugin": "^1.8"
},
"require": {
"onelogin/php-saml": "^4.2",
"firebase/php-jwt": "^7.0"
}
}