-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
40 lines (40 loc) · 1.16 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
{
"name": "christophwurst/nextcloud_sentry",
"license": "AGPL-3.0",
"authors": [
{
"name": "Christoph Wurst",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "8.0"
},
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"require": {
"php": "^8.0 <= 8.1",
"nyholm/psr7": "^1.8.1",
"php-http/curl-client": "^2.3.2",
"psr/log": "^1",
"sentry/sentry": "^3.22.1",
"guzzlehttp/promises": "^1.5.3"
},
"require-dev": {
"christophwurst/nextcloud_testing": "^1.0.0",
"roave/security-advisories": "dev-master",
"psalm/phar": "^5.23.1"
},
"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"
}
}