Skip to content

Commit

Permalink
Updated sources
Browse files Browse the repository at this point in the history
  • Loading branch information
product-team committed Mar 16, 2023
1 parent 7adca36 commit e34a5a5
Show file tree
Hide file tree
Showing 81 changed files with 1,692 additions and 2,280 deletions.
6 changes: 6 additions & 0 deletions .phpcsignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# 3rd party libraries
vendor
composer.phar

# Protocol Buffers
app/protobuff
14 changes: 6 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"description": "This repository contains GroupDocs.Viewer Cloud SDK for PHP source code.",
"name": "groupdocscloud/groupdocs-viewer-cloud",
"version": "21.12",
"version": "23.3",
"license": "MIT",
"type": "library",
"keywords": [
Expand All @@ -21,27 +21,25 @@
],
"config": {
"platform": {
"php": "5.6.32"
"php": "8.2"
}
},
"require": {
"php": ">=5.5",
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.3"
"guzzlehttp/guzzle": "^6.5.8|^7.4.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.10.*",
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^5.7"
"phpunit/phpunit": "^10.0.0"
},
"autoload": {
"classmap": [ "src/" ],
"psr-4": { "GroupDocs\\Viewer\\" : "src/" }
},
"autoload-dev": {
"classmap": [ "src/", "tests/" ],
"classmap": [ "src/", "tests/" ],
"psr-4": { "GroupDocs\\Viewer\\" : "tests/" }
}
}
Loading

0 comments on commit e34a5a5

Please sign in to comment.