Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #17 from abbadon1334/Fix-SignatureSellingPartner
Browse files Browse the repository at this point in the history
Fix SignatureSellingPartner + composer changes
  • Loading branch information
clousale authored Jan 11, 2021
2 parents 33534a1 + d34e9ae commit dd2cae2
Show file tree
Hide file tree
Showing 600 changed files with 35,411 additions and 37,300 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/vendor
/composer.lock
.idea
nbproject
.DS_Store
36 changes: 21 additions & 15 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
<?php

return Symfony\CS\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->setUsingCache(true)
->fixers(
[
'ordered_use',
'phpdoc_order',
'short_array_syntax',
'strict',
'strict_param'
$finder = PhpCsFixer\Finder::create()
->in(__DIR__.'/lib')
->in(__DIR__.'/test')
;

return PhpCsFixer\Config::create()
->setRules([
'@PSR1' => true,
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => [
'syntax' => 'short'
],
'phpdoc_order' => true,
'ordered_imports' => true,
'method_argument_space' => [
'on_multiline' => 'ensure_fully_multiline',
]
)
->finder(
Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__)
);
])
->setUsingCache(false)
->setFinder($finder)
;
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- 7.3
- 7.4
before_install: "composer install"
script: "vendor/bin/phpunit"
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@
}
],
"require": {
"php": ">=5.5",
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "~2.6",
"friendsofphp/php-cs-fixer": "~1.12"
"friendsofphp/php-cs-fixer": "v2.17.3"
},
"autoload": {
"psr-4": { "Swagger\\Client\\" : "lib/" }
Expand Down
148 changes: 62 additions & 86 deletions lib/Api/AuthorizationApi.php

Large diffs are not rendered by default.

Loading

0 comments on commit dd2cae2

Please sign in to comment.