Skip to content

Commit e535c96

Browse files
committed
Switch to openapi
1 parent 7a03bdb commit e535c96

File tree

2,033 files changed

+70607
-44650
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,033 files changed

+70607
-44650
lines changed

.openapi-generator-ignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

.openapi-generator/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.3.1

README.md

+185-145
Large diffs are not rendered by default.

composer.json

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,39 @@
11
{
22
"name": "dansleboby/zoomphp-sdk",
3-
"description": "",
3+
"description": "The Zoom API allows developers to safely and securely access information from Zoom. You can use this API to build private services or public applicatixons on the [Zoom App Marketplace](http://marketplace.zoom.us). To learn how to get your credentials and create private/public applications, read our [Authorization Guide](https://marketplace.zoom.us/docs/guides/authorization/credentials). All endpoints are available via `https` and are located at `api.zoom.us/v2/`. For instance you can list all users on an account via `https://api.zoom.us/v2/users/`.",
44
"keywords": [
5-
"swagger",
5+
"openapitools",
6+
"openapi-generator",
7+
"openapi",
68
"php",
79
"sdk",
10+
"rest",
811
"api"
912
],
10-
"homepage": "http://swagger.io",
11-
"license": "proprietary",
13+
"homepage": "https://openapi-generator.tech",
14+
"license": "unlicense",
1215
"authors": [
1316
{
14-
"name": "Swagger and contributors",
15-
"homepage": "https://github.com/swagger-api/swagger-codegen"
17+
"name": "OpenAPI-Generator contributors",
18+
"homepage": "https://openapi-generator.tech"
1619
}
1720
],
1821
"require": {
19-
"php": ">=5.5",
22+
"php": ">=7.1",
2023
"ext-curl": "*",
2124
"ext-json": "*",
2225
"ext-mbstring": "*",
2326
"guzzlehttp/guzzle": "^6.2"
2427
},
2528
"require-dev": {
26-
"phpunit/phpunit": "^4.8",
29+
"phpunit/phpunit": "^7.4",
2730
"squizlabs/php_codesniffer": "~2.6",
2831
"friendsofphp/php-cs-fixer": "~2.12"
2932
},
3033
"autoload": {
31-
"psr-4": { "Swagger\\Client\\" : "lib/" }
34+
"psr-4": { "Zoom\\Api\\" : "lib/" }
3235
},
3336
"autoload-dev": {
34-
"psr-4": { "Swagger\\Client\\" : "test/" }
37+
"psr-4": { "Zoom\\Api\\" : "test/" }
3538
}
3639
}

0 commit comments

Comments
 (0)