-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
78 lines (78 loc) · 2.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nextcloud/globalsiteselector",
"description": "globalsiteselector",
"minimum-stability": "stable",
"license": "agpl",
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"optimize-autoloader": true,
"classmap-authoritative": true,
"autoloader-suffix": "GlobalSiteSelector",
"platform": {
"php": "8.2"
},
"sort-packages": true
},
"authors": [
{
"name": "Maxence Lange",
"email": "maxence@artificial-owl.com"
}
],
"autoload": {
"psr-4": {
"OCA\\GlobalSiteSelector\\": "lib/"
}
},
"scripts": {
"cs:check": "./vendor-bin/csfixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "./vendor-bin/csfixer/vendor/bin/php-cs-fixer fix",
"psalm": "./vendor-bin/psalm/vendor/bin/psalm --threads=1",
"psalm:update-baseline": "./vendor-bin/psalm/vendor/bin/psalm --threads=1 --update-baseline",
"psalm:clear": "./vendor-bin/psalm/vendor/bin/psalm --clear-cache && psalm --clear-global-cache",
"psalm:fix": "./vendor-bin/psalm/vendor/bin/psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType",
"test": [
"@test:unit"
],
"test:unit": "./vendor-bin/phpunit/vendor/bin/phpunit -c tests/unit/phpunit.xml",
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './lib/Vendor/*' -print0 | xargs -0 -n1 php -l",
"post-install-cmd": [
"\"vendor-bin/mozart/vendor/bin/mozart\" compose",
"@composer dump-autoload"
],
"post-update-cmd": [
"\"vendor-bin/mozart/vendor/bin/mozart\" compose",
"composer dump-autoload"
]
},
"require": {
"bamarni/composer-bin-plugin": "^1.8",
"firebase/php-jwt": "^6.8"
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "vendor-bin",
"forward-command": true
},
"mozart": {
"dep_namespace": "OCA\\GlobalSiteSelector\\Vendor\\",
"dep_directory": "/lib/Vendor/",
"classmap_directory": "/lib/autoload/",
"classmap_prefix": "GLOBALSITESELECTOR_",
"packages": [
"firebase/php-jwt"
]
}
},
"require-dev": {
"nextcloud/ocp": "dev-master"
},
"autoload-dev": {
"psr-4": {
"OCP\\": "vendor/nextcloud/ocp/OCP"
}
}
}