forked from ChristophWurst/nextcloud_sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.11 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "christophwurst/nextcloud_sentry",
"license": "AGPL-3.0",
"authors": [
{
"name": "Christoph Wurst",
"email": "christoph@winzerhof-wurst.at"
}
],
"config": {
"platform": {
"php": "8.0"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"require": {
"php": "^8.0 <= 8.1",
"nyholm/psr7": "^1.5.1",
"php-http/curl-client": "^2.2.1",
"sentry/sentry": "^3.13.1"
},
"require-dev": {
"christophwurst/nextcloud_testing": "^0.12.4",
"roave/security-advisories": "dev-master",
"psalm/phar": "^5.7.6"
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
"psalm": "psalm.phar",
"test:integration": "phpunit -c tests/phpunit.integration.xml tests/Integration --fail-on-warning",
"test:integration:dev": "phpunit -c tests/phpunit.integration.xml tests/Integration --no-coverage --fail-on-warning",
"test:unit": "phpunit -c tests/phpunit.unit.xml tests/Unit --fail-on-warning",
"test:unit:dev": "phpunit -c tests/phpunit.unit.xml tests/Unit --no-coverage --fail-on-warning"
}
}