-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.84 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.84 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
70
{
"name": "nextcloud/ncionosprocesses",
"description": "NC IONOS Processes",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Thomas Lehmann",
"email": "t.lehmann@strato.de",
"homepage": "https://github.com/IONOS-Productivity/nc_ionos_processes/"
}
],
"autoload": {
"psr-4": {
"OCA\\IonosProcesses\\": "lib/"
}
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all update --ansi"
],
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "vendor-bin/cs-fixer/vendor/php-cs-fixer/shim/php-cs-fixer fix --dry-run --diff",
"cs:fix": "vendor-bin/cs-fixer/vendor/php-cs-fixer/shim/php-cs-fixer fix",
"psalm": "psalm --threads=1 --no-cache",
"test:unit": "phpunit tests -c tests/phpunit.xml --colors=always --fail-on-warning --fail-on-risky"
},
"require": {
"php": "^8.1",
"bamarni/composer-bin-plugin": "^1.8",
"ionos-productivity/ionos-mail-notification-api-client": "1.0.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"nextcloud/coding-standard": "^1.3",
"nextcloud/ocp": "^v33.0.0",
"roave/security-advisories": "dev-latest"
},
"repositories": [
{
"type": "package",
"package": {
"name": "ionos-productivity/ionos-mail-notification-api-client",
"version": "1.0.0",
"source": {
"type": "git",
"url": "https://github.com/ionos-productivity/ionos-mail-notification-api-client.git",
"reference": "1.0.0-20241219115512"
},
"autoload": {
"psr-4": {
"IONOS\\MailNotificationAPI\\Client\\" : "lib/"
}
}
}
}
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.1"
}
}
}