-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* DRE-93 php sdk based on openapi * config gitignore * add ssl file * fix crt path * Add tests * Add tests * Add tests * Add tests * Add tests * Change matrix version tests * Config mockserver * Fix base path * Fix test command * Change version --------- Co-authored-by: Franklin <franklin.carrero@conekta.com>
- Loading branch information
Showing
580 changed files
with
178,934 additions
and
5,943 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
; https://editorconfig.org/ | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
charset = utf-8 | ||
|
||
[*.{json,yml}] | ||
indent_size = 2 | ||
|
||
[*.neon] | ||
indent_style = tab | ||
|
||
[Makefile] | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,35 @@ | ||
# OS | ||
.docker | ||
# Ignore build files | ||
build/* | ||
|
||
# Mac OS X dumps these all over the place. | ||
.DS_Store | ||
*~ | ||
# Composer | ||
|
||
# Ignore the SimpleTest library if it is installed to /test/. | ||
/test/simpletest/ | ||
|
||
# Ignore the /vendor/ directory for people using composer | ||
/vendor/ | ||
|
||
# If the vendor directory isn't being commited the composer.lock file should also be ignored | ||
composer.lock | ||
/vendor | ||
|
||
INSTALL.txt | ||
LICENSE.txt | ||
README.txt | ||
.phpunit.result.cache | ||
demos/ | ||
extras/documentation | ||
/.idea | ||
# Ignore PHPUnit coverage file | ||
clover.xml | ||
|
||
# Ignore IDE's configuration files | ||
.idea | ||
|
||
# Ignore PHP CS Fixer local config and cache | ||
.php_cs | ||
.php_cs.cache | ||
.php-cs-fixer.cache | ||
.php-cs-fixer.php | ||
.env.dist | ||
.env | ||
|
||
# Ignore PHPStan local config | ||
.phpstan.neon | ||
|
||
# Ignore phpDocumentor's local config and artifacts | ||
.phpdoc/* | ||
phpdoc.xml | ||
|
||
# Ignore cached PHPUnit results. | ||
.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# OpenAPI Generator Ignore | ||
# Generated by openapi-generator https://github.com/openapitools/openapi-generator | ||
|
||
# Use this file to prevent files from being overwritten by the generator. | ||
# The patterns follow closely to .gitignore or .dockerignore. | ||
|
||
# As an example, the C# client generator defines ApiClient.cs. | ||
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: | ||
#ApiClient.cs | ||
|
||
# You can match any string of characters against a directory, file or extension with a single asterisk (*): | ||
#foo/*/qux | ||
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux | ||
|
||
# You can recursively match patterns against a directory, file or extension with a double asterisk (**): | ||
#foo/**/qux | ||
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux | ||
|
||
# You can also negate patterns with an exclamation (!). | ||
# For example, you can ignore all files in a docs folder with the file extension .md: | ||
#docs/*.md | ||
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md | ||
.travis.yml | ||
git_push.sh | ||
|
Oops, something went wrong.