forked from nextcloud/user_oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.96 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nextcloud/user_oidc",
"description": "OIDC backend for Nextcloud",
"license": "AGPL3",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": false,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"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 --no-cache",
"psalm:update-baseline": "psalm --threads=1 --update-baseline",
"psalm:update-baseline:force": "psalm --threads=1 --update-baseline --set-baseline=tests/psalm-baseline.xml",
"openapi": "generate-spec --verbose",
"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": "^7",
"bamarni/composer-bin-plugin": "^1.4"
},
"require-dev": {
"nextcloud/coding-standard": "^1.0.0",
"symfony/event-dispatcher": "^7",
"nextcloud/ocp": "dev-stable29",
"phpunit/phpunit": "^11",
"nextcloud/openapi-extractor": "^1.8"
},
"extra": {
"mozart": {
"dep_namespace": "OCA\\UserOIDC\\Vendor\\",
"dep_directory": "/lib/Vendor/",
"classmap_directory": "/lib/autoload/",
"classmap_prefix": "NEXTCLOUD_USER_OIDC_",
"packages": [
"firebase/php-jwt",
"id4me/id4me-rp"
],
"delete_vendor_directories": true,
"override_autoload": {
"id4me/id4me-rp": {
"psr-4": {
"Id4me\\RP\\": "src/"
}
}
}
},
"bamarni-bin": {
"bin-links": true,
"target-directory": "vendor-bin",
"forward-command": true
}
}
}