Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd2cae2

Browse files
author
clousale
authored
Merge pull request clousale#17 from abbadon1334/Fix-SignatureSellingPartner
Fix SignatureSellingPartner + composer changes
2 parents 33534a1 + d34e9ae commit dd2cae2

File tree

600 files changed

+35411
-37300
lines changed

Some content is hidden

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

600 files changed

+35411
-37300
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/vendor
2+
/composer.lock
3+
.idea
4+
nbproject
5+
.DS_Store

.php_cs

+21-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
<?php
22

3-
return Symfony\CS\Config::create()
4-
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
5-
->setUsingCache(true)
6-
->fixers(
7-
[
8-
'ordered_use',
9-
'phpdoc_order',
10-
'short_array_syntax',
11-
'strict',
12-
'strict_param'
3+
$finder = PhpCsFixer\Finder::create()
4+
->in(__DIR__.'/lib')
5+
->in(__DIR__.'/test')
6+
;
7+
8+
return PhpCsFixer\Config::create()
9+
->setRules([
10+
'@PSR1' => true,
11+
'@PSR2' => true,
12+
'@Symfony' => true,
13+
'array_syntax' => [
14+
'syntax' => 'short'
15+
],
16+
'phpdoc_order' => true,
17+
'ordered_imports' => true,
18+
'method_argument_space' => [
19+
'on_multiline' => 'ensure_fully_multiline',
1320
]
14-
)
15-
->finder(
16-
Symfony\CS\Finder\DefaultFinder::create()
17-
->in(__DIR__)
18-
);
21+
])
22+
->setUsingCache(false)
23+
->setFinder($finder)
24+
;

.travis.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
language: php
22
sudo: false
33
php:
4-
- 5.4
5-
- 5.5
6-
- 5.6
7-
- 7.0
8-
- hhvm
4+
- 7.3
5+
- 7.4
96
before_install: "composer install"
107
script: "vendor/bin/phpunit"

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@
1717
}
1818
],
1919
"require": {
20-
"php": ">=5.5",
20+
"php": ">=7.3",
2121
"ext-curl": "*",
2222
"ext-json": "*",
2323
"ext-mbstring": "*",
2424
"guzzlehttp/guzzle": "^6.2"
2525
},
2626
"require-dev": {
27+
"roave/security-advisories": "dev-master",
2728
"phpunit/phpunit": "^4.8",
2829
"squizlabs/php_codesniffer": "~2.6",
29-
"friendsofphp/php-cs-fixer": "~1.12"
30+
"friendsofphp/php-cs-fixer": "v2.17.3"
3031
},
3132
"autoload": {
3233
"psr-4": { "Swagger\\Client\\" : "lib/" }

lib/Api/AuthorizationApi.php

+62-86
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)