forked from n-connect/notify_push
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 764 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 764 Bytes
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
{
"name": "nextcloud/text",
"type": "project",
"require-dev": {
"roave/security-advisories": "dev-master",
"php-parallel-lint/php-parallel-lint": "^1.0.0",
"phpunit/phpunit": "^8",
"nextcloud/coding-standard": "^0.4.0",
"nextcloud/ocp": "dev-master",
"psalm/phar": "^4.3",
"psr/cache": "^1.0.1"
},
"license": "AGPLv3",
"authors": [
{
"name": "Julius Härtl",
"email": "jus@bitgrid.net"
}
],
"require": {},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -not -path './tests/integration/vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"test:unit": "phpunit -c tests/phpunit.xml",
"psalm": "psalm.phar"
}
}