-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcomposer.json
58 lines (58 loc) · 1.73 KB
/
composer.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nextcloud/user_oidc",
"description": "OIDC backend for Nextcloud",
"license": "AGPL3",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"platform": {
"php": "8.0"
}
},
"scripts": {
"cs:fix": "php-cs-fixer fix",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"lint": "find . -name \\*.php ! -path './vendor/*' ! -path './vendor-bin/*' ! -path './lib/Vendor/*' -exec php -l \"{}\" \\;",
"test:unit": "phpunit -c tests/phpunit.xml",
"psalm": "psalm.phar --no-cache",
"psalm:update-baseline": "psalm.phar --threads=1 --update-baseline",
"psalm:update-baseline:force": "psalm.phar --threads=1 --update-baseline --set-baseline=tests/psalm-baseline.xml",
"post-install-cmd": [
"@composer bin all install --ansi",
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"@composer bin all install --ansi",
"\"vendor/bin/mozart\" compose",
"composer dump-autoload"
]
},
"require": {
"id4me/id4me-rp": "^1.2",
"firebase/php-jwt": "^6.8.1",
"bamarni/composer-bin-plugin": "^1.4"
},
"require-dev": {
"nextcloud/coding-standard": "^1.0.0",
"symfony/event-dispatcher": "^4",
"phpunit/phpunit": "^9.5",
"nextcloud/ocp": "dev-stable25",
"psalm/phar": "^5.20"
},
"extra": {
"mozart": {
"dep_namespace": "OCA\\UserOIDC\\Vendor\\",
"dep_directory": "/lib/Vendor/",
"classmap_directory": "/lib/autoload/",
"classmap_prefix": "NEXTCLOUD_USER_OIDC_",
"packages": [
"firebase/php-jwt"
],
"delete_vendor_directories": true
}
}
}