-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.47 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
{
"name": "nextcloud/integration_swp",
"description": "Sovereign Workplace integration app",
"authors": [
{
"name": "Julien Veyssier",
"email": "julien-nc@posteo.net"
}
],
"license": "AGPL3",
"config": {
"platform": {
"php": "8.0"
},
"optimize-autoloader": true,
"classmap-authoritative": true,
"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 -not -path './vendor/*' -exec php -l \"{}\" \\;",
"test:unit": "phpunit -c tests/phpunit.xml",
"psalm": "psalm.phar --no-cache",
"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": {
"php": "^8.0",
"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-master",
"psalm/phar": "^5.16"
},
"extra": {
"mozart": {
"dep_namespace": "OCA\\Swp\\Vendor\\",
"dep_directory": "/lib/Vendor/",
"classmap_directory": "/lib/autoload/",
"classmap_prefix": "NEXTCLOUD_INTEGRATION_SWP_",
"packages": [
"firebase/php-jwt"
],
"delete_vendor_directories": true
}
}
}