mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-02-10 18:05:10 +08:00
30 lines
764 B
JSON
30 lines
764 B
JSON
{
|
|
"require": {
|
|
"ext-mbstring": "*"
|
|
},
|
|
"require-dev": {
|
|
"squizlabs/php_codesniffer": "^3.7.2",
|
|
"phpunit/phpunit": "^10.2.6"
|
|
},
|
|
"scripts": {
|
|
"code-sniffer": [
|
|
"./vendor/bin/phpcs --config-set default_standard ruleset.xml",
|
|
"./vendor/bin/phpcs --config-set colors 1"
|
|
],
|
|
"post-install-cmd": [
|
|
"@code-sniffer"
|
|
],
|
|
"post-update-cmd": [
|
|
"@code-sniffer"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"OnlineEditorsExamplePhp\\" : "",
|
|
"OnlineEditorsExamplePhp\\Helpers\\" : "helpers/",
|
|
"OnlineEditorsExamplePhp\\Views\\" : "views/",
|
|
"Firebase\\JWT\\" : "lib/jwt/"
|
|
}
|
|
}
|
|
}
|