Skip to content

Commit

Permalink
v3.0.0 (#85)
Browse files Browse the repository at this point in the history
* generated 3.0.0
* update
* version
* regenerated php sdks
* remove old
* all passed tests
* regenerated models and tests adjusted
* correct tests
* fix refs
* tests > __tests__, tests dir to gitignore
* remove generated tests
  • Loading branch information
marcinrog authored Sep 12, 2024
1 parent 2751901 commit 747224b
Show file tree
Hide file tree
Showing 2,052 changed files with 649,853 additions and 7,188 deletions.
41 changes: 29 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
# Dependencies:
/.idea/
# ref: https://github.com/github/gitignore/blob/master/Composer.gitignore

composer.phar
/vendor/
.DS_Store
/.test/
# Log and temporary files:
*.log
*.iml
/dist/
# Editor configuraton files:
/typings/
/.vscode/
composer.phar

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# makes sense since it's a library(client SDK) and not a project
composer.lock

# php-cs-fixer cache
.php_cs.cache
.php-cs-fixer.cache

# PHPUnit cache
.phpunit.result.cache

# PHPLint cache
build/phplint.cache


/.openapi-generator/
/tests/
/.gitlab-ci.yml
/.openapi-generator-ignore
/.travis.yml
/git_push.sh
/test-requirements.txt
/.env
/.idea/
29 changes: 29 additions & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

/**
* @generated
* @link https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/HEAD/doc/config.rst
*/
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('vendor')
->exclude('test')
->exclude('tests')
;

$config = new PhpCsFixer\Config();
return $config->setRules([
'@PSR12' => true,
'phpdoc_order' => true,
'array_syntax' => [ 'syntax' => 'short' ],
'strict_comparison' => true,
'strict_param' => true,
'no_trailing_whitespace' => false,
'no_trailing_whitespace_in_comment' => false,
'braces' => false,
'single_blank_line_at_eof' => false,
'blank_line_after_namespace' => false,
'no_leading_import_slash' => false,
])
->setFinder($finder)
;
11 changes: 11 additions & 0 deletions .phplint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
path:
- ./src
- ./tests
jobs: 10
extensions:
- php
exclude:
- vendor
warning: true
memory-limit: -1
no-cache: true
352 changes: 352 additions & 0 deletions ENDPOINTS-COVERAGE.md

Large diffs are not rendered by default.

Loading

0 comments on commit 747224b

Please sign in to comment.