27 строки
587 B
JSON
27 строки
587 B
JSON
{
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OCA\\SharePoint\\": "lib/"
|
|
}
|
|
},
|
|
"config": {
|
|
"autoloader-suffix": "SharePoint",
|
|
"platform": {
|
|
"php": "8.0"
|
|
}
|
|
},
|
|
"require": {
|
|
"vgrem/php-spo": "3.*"
|
|
},
|
|
"scripts": {
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
|
"cs:fix": "php-cs-fixer fix",
|
|
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l",
|
|
"test:unit": "phpunit -c phpunit.xml --fail-on-warning --fail-on-risky --color"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5",
|
|
"nextcloud/coding-standard": "^1.0"
|
|
}
|
|
}
|